/* Document Level Styles */

/*
  The imports below are needed to include our light dom css for global styles such as fonts and colors.
  You can comment out any of these imports if you do not need that css. For example, if you have your own
  global font family css then you can comment out the typography.css import.
*/

/** Core CSS required for ionic components to work property */
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-font-family: var(--ion-default-font);
}

body {
  background: var(--ion-background-color);
}

body.backdrop-no-scroll {
  overflow: hidden;
}

/**
 * Card style modal needs additional padding on the
 * top of the header. We accomplish this by targeting
 * the first toolbar in the header.
 * Footer also needs this. We do not adjust the bottom
 * padding though because of the safe area.
 */
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;
}

/**
* Card style modal needs additional padding on the
* bottom of the header. We accomplish this by targeting
* the last toolbar in the header.
*/
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;
}

/**
* Add padding on the left and right
* of toolbars while accounting for
* safe area values when in landscape.
*/
html.ios ion-modal ion-toolbar {
  padding-right: calc(var(--ion-safe-area-right) + 8px);
  padding-left: calc(var(--ion-safe-area-left) + 8px);
}

/**
 * Card style modal on iPadOS
 * should only have backdrop on first instance.
 */
@media screen and (min-width: 768px) {
  html.ios ion-modal.modal-card:first-of-type {
    --backdrop-opacity: 0.18;
  }
}
/**
 * Subsequent modals should not have a backdrop/box shadow
 * as it will cause the screen to appear to get progressively
 * darker. With Ionic 6, declarative modals made it
 * possible to have multiple non-presented modals in the DOM,
 * so we could no longer rely on ion-modal:first-of-type.
 * Here we disable the opacity/box-shadow for every modal
 * that comes after the first presented modal.
 *
 * Note: ion-modal:not(.overlay-hidden):first-of-type
 * does not match the first modal to not have
 * the .overlay-hidden class, it will match the
 * first modal in general only if it does not
 * have the .overlay-hidden class.
 * The :nth-child() pseudo-class has support
 * for selectors which would help us here. At the
 * time of writing it does not have great cross browser
 * support.
 *
 * Note 2: This should only apply to non-card and
 * non-sheet modals. Card and sheet modals have their
 * own criteria for displaying backdrops/box shadows.
 *
 * Do not use :not(.overlay-hidden) in place of
 * .show-modal because that triggers a memory
 * leak in Blink: https://bugs.chromium.org/p/chromium/issues/detail?id=1418768
 */
ion-modal.modal-default.show-modal ~ ion-modal.modal-default {
  --backdrop-opacity: 0;
  --box-shadow: none;
}

/**
 * This works around a bug in WebKit where the
 * content will overflow outside of the bottom border
 * radius when re-painting. As long as a single
 * border radius value is set on .ion-page, this
 * issue does not happen. We set the top left radius
 * here because the top left corner will always have a
 * radius no matter the platform.
 * This behavior only applies to card modals.
 */
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, #3880ff) !important;
  --ion-color-base-rgb: var(--ion-color-primary-rgb, 56, 128, 255) !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, #3171e0) !important;
  --ion-color-tint: var(--ion-color-primary-tint, #4c8dff) !important;
}

.ion-color-secondary {
  --ion-color-base: var(--ion-color-secondary, #3dc2ff) !important;
  --ion-color-base-rgb: var(--ion-color-secondary-rgb, 61, 194, 255) !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, #36abe0) !important;
  --ion-color-tint: var(--ion-color-secondary-tint, #50c8ff) !important;
}

.ion-color-tertiary {
  --ion-color-base: var(--ion-color-tertiary, #5260ff) !important;
  --ion-color-base-rgb: var(--ion-color-tertiary-rgb, 82, 96, 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, #4854e0) !important;
  --ion-color-tint: var(--ion-color-tertiary-tint, #6370ff) !important;
}

.ion-color-success {
  --ion-color-base: var(--ion-color-success, #2dd36f) !important;
  --ion-color-base-rgb: var(--ion-color-success-rgb, 45, 211, 111) !important;
  --ion-color-contrast: var(--ion-color-success-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-success-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-success-shade, #28ba62) !important;
  --ion-color-tint: var(--ion-color-success-tint, #42d77d) !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, #eb445a) !important;
  --ion-color-base-rgb: var(--ion-color-danger-rgb, 235, 68, 90) !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, #cf3c4f) !important;
  --ion-color-tint: var(--ion-color-danger-tint, #ed576b) !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, #92949c) !important;
  --ion-color-base-rgb: var(--ion-color-medium-rgb, 146, 148, 156) !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, #808289) !important;
  --ion-color-tint: var(--ion-color-medium-tint, #9d9fa6) !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;
  overflow: hidden;
  z-index: 0;
}

/**
 * When making custom dialogs, using
 * ion-content is not required. As a result,
 * some developers may wish to have dialogs
 * that are automatically sized by the browser.
 * These changes allow certain dimension values
 * such as fit-content to work correctly.
 */
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,
[hidden] {
  /* stylelint-disable-next-line declaration-no-important */
  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: constant(safe-area-inset-top)) {
  html {
    --ion-safe-area-top: constant(safe-area-inset-top);
    --ion-safe-area-bottom: constant(safe-area-inset-bottom);
    --ion-safe-area-left: constant(safe-area-inset-left);
    --ion-safe-area-right: constant(safe-area-inset-right);
  }
}
@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;
}

.ios .menu-content-reveal {
  box-shadow: -8px 0 42px rgba(0, 0, 0, 0.08);
}

[dir=rtl].ios .menu-content-reveal {
  box-shadow: 8px 0 42px rgba(0, 0, 0, 0.08);
}

.md .menu-content-reveal {
  box-shadow: 4px 0px 16px rgba(0, 0, 0, 0.18);
}

.md .menu-content-push {
  box-shadow: 4px 0px 16px rgba(0, 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 {
    /* stylelint-disable declaration-no-important */
    transition: none !important;
  }
}
/**
 * The > [slot="header"] selector ensures that we do
 * not modify toggle icons for any nested accordions. The state
 * of one accordion should not affect any accordions inside
 * of a nested accordion group.
 */
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;
}

/**
 * The .ion-datetime-button-overlay class contains
 * styles that allow any modal/popover to be
 * sized according to the dimensions of the datetime
 * when used with ion-datetime-button.
 */
.ion-datetime-button-overlay {
  --width: fit-content;
  --height: fit-content;
}

/**
 * The grid variant can scale down when inline.
 * When used in a `fit-content` overlay, this causes
 * the overlay to shrink when the month/year picker is open.
 * Explicitly setting the dimensions lets us have a consistently
 * sized grid interface.
 */
.ion-datetime-button-overlay ion-datetime.datetime-grid {
  width: 320px;
  min-height: 320px;
}

/*# sourceMappingURL=core.css.map */


/** Basic CSS for apps built with Ionic */
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;
}

/*# sourceMappingURL=normalize.css.map */

* {
  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%;
  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%;
  /**
   * Because body has position: fixed,
   * it should be promoted to its own
   * layer.
   *
   * WebKit does not always promote
   * the body to its own layer on page
   * load in Ionic apps. Once scrolling on
   * ion-content starts, WebKit will promote
   * body. Unfortunately, this causes a re-paint
   * which results in scrolling being halted
   * until the next user gesture.
   *
   * This impacts the Custom Elements build.
   * The lazy loaded build causes the browser to
   * re-paint during hydration which causes WebKit
   * to promote body to its own layer.
   * In the CE Build, this hydration does not
   * happen, so the additional re-paint does not occur.
   */
  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;
  text-size-adjust: none;
}

/*# sourceMappingURL=structure.css.map */

html {
  font-family: var(--ion-font-family);
}

a {
  background-color: transparent;
  color: var(--ion-color-primary, #3880ff);
}

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: 26px;
}
h2 {
  margin-top: 18px;
  font-size: 24px;
}
h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

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;
}

/*# sourceMappingURL=typography.css.map */


/** Optional CSS utils that can be commented out */
.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);
  padding-left: var(--ion-padding, 16px);
  padding-right: var(--ion-padding, 16px);
  padding-top: var(--ion-padding, 16px);
  padding-bottom: var(--ion-padding, 16px);
}
@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {
  .ion-padding {
    padding-left: unset;
    padding-right: unset;
    -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-padding-top {
  --padding-top: var(--ion-padding, 16px);
  padding-top: var(--ion-padding, 16px);
}
.ion-padding-start {
  --padding-start: var(--ion-padding, 16px);
  padding-left: var(--ion-padding, 16px);
}
@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {
  .ion-padding-start {
    padding-left: unset;
    -webkit-padding-start: var(--ion-padding, 16px);
    padding-inline-start: var(--ion-padding, 16px);
  }
}

.ion-padding-end {
  --padding-end: var(--ion-padding, 16px);
  padding-right: var(--ion-padding, 16px);
}
@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {
  .ion-padding-end {
    padding-right: unset;
    -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);
  padding-left: var(--ion-padding, 16px);
  padding-right: var(--ion-padding, 16px);
}
@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {
  .ion-padding-horizontal {
    padding-left: unset;
    padding-right: unset;
    -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);
  margin-left: var(--ion-margin, 16px);
  margin-right: var(--ion-margin, 16px);
  margin-top: var(--ion-margin, 16px);
  margin-bottom: var(--ion-margin, 16px);
}
@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {
  .ion-margin {
    margin-left: unset;
    margin-right: unset;
    -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);
  }
}

.ion-margin-top {
  --margin-top: var(--ion-margin, 16px);
  margin-top: var(--ion-margin, 16px);
}
.ion-margin-start {
  --margin-start: var(--ion-margin, 16px);
  margin-left: var(--ion-margin, 16px);
}
@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {
  .ion-margin-start {
    margin-left: unset;
    -webkit-margin-start: var(--ion-margin, 16px);
    margin-inline-start: var(--ion-margin, 16px);
  }
}

.ion-margin-end {
  --margin-end: var(--ion-margin, 16px);
  margin-right: var(--ion-margin, 16px);
}
@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {
  .ion-margin-end {
    margin-right: unset;
    -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);
  margin-left: var(--ion-margin, 16px);
  margin-right: var(--ion-margin, 16px);
}
@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {
  .ion-margin-horizontal {
    margin-left: unset;
    margin-right: unset;
    -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);
  }
}

/*# sourceMappingURL=padding.css.map */

.ion-float-left {
  float: left !important;
}

.ion-float-right {
  float: right !important;
}

.ion-float-start {
  float: left !important;
}
[dir=rtl] .ion-float-start, :host-context([dir=rtl]) .ion-float-start {
  float: right !important;
}

.ion-float-end {
  float: right !important;
}
[dir=rtl] .ion-float-end, :host-context([dir=rtl]) .ion-float-end {
  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;
  }
  [dir=rtl] .ion-float-sm-start, :host-context([dir=rtl]) .ion-float-sm-start {
    float: right !important;
  }

  .ion-float-sm-end {
    float: right !important;
  }
  [dir=rtl] .ion-float-sm-end, :host-context([dir=rtl]) .ion-float-sm-end {
    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;
  }
  [dir=rtl] .ion-float-md-start, :host-context([dir=rtl]) .ion-float-md-start {
    float: right !important;
  }

  .ion-float-md-end {
    float: right !important;
  }
  [dir=rtl] .ion-float-md-end, :host-context([dir=rtl]) .ion-float-md-end {
    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;
  }
  [dir=rtl] .ion-float-lg-start, :host-context([dir=rtl]) .ion-float-lg-start {
    float: right !important;
  }

  .ion-float-lg-end {
    float: right !important;
  }
  [dir=rtl] .ion-float-lg-end, :host-context([dir=rtl]) .ion-float-lg-end {
    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;
  }
  [dir=rtl] .ion-float-xl-start, :host-context([dir=rtl]) .ion-float-xl-start {
    float: right !important;
  }

  .ion-float-xl-end {
    float: right !important;
  }
  [dir=rtl] .ion-float-xl-end, :host-context([dir=rtl]) .ion-float-xl-end {
    float: left !important;
  }
}

/*# sourceMappingURL=float-elements.css.map */

.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;
  }
}

/*# sourceMappingURL=text-alignment.css.map */

.ion-text-uppercase {
  /* stylelint-disable-next-line declaration-no-important */
  text-transform: uppercase !important;
}

.ion-text-lowercase {
  /* stylelint-disable-next-line declaration-no-important */
  text-transform: lowercase !important;
}

.ion-text-capitalize {
  /* stylelint-disable-next-line declaration-no-important */
  text-transform: capitalize !important;
}

@media (min-width: 576px) {
  .ion-text-sm-uppercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: uppercase !important;
  }

  .ion-text-sm-lowercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: lowercase !important;
  }

  .ion-text-sm-capitalize {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: capitalize !important;
  }
}
@media (min-width: 768px) {
  .ion-text-md-uppercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: uppercase !important;
  }

  .ion-text-md-lowercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: lowercase !important;
  }

  .ion-text-md-capitalize {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: capitalize !important;
  }
}
@media (min-width: 992px) {
  .ion-text-lg-uppercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: uppercase !important;
  }

  .ion-text-lg-lowercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: lowercase !important;
  }

  .ion-text-lg-capitalize {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: capitalize !important;
  }
}
@media (min-width: 1200px) {
  .ion-text-xl-uppercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: uppercase !important;
  }

  .ion-text-xl-lowercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: lowercase !important;
  }

  .ion-text-xl-capitalize {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: capitalize !important;
  }
}

/*# sourceMappingURL=text-transformation.css.map */

.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;
}

/*# sourceMappingURL=flex-utils.css.map */

.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;
  }
}

/*# sourceMappingURL=display.css.map */

.swiper {
  --bullet-background: var(--ion-color-step-200, #cccccc);
  --bullet-background-active: var(--ion-color-primary, #3880ff);
  --progress-bar-background: rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.25);
  --progress-bar-background-active: var(--ion-color-primary-shade, #3171e0);
  --scroll-bar-background: rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.1);
  --scroll-bar-background-active: rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.5);
  /**
   * @prop --bullet-background: Background of the pagination bullets
   * @prop --bullet-background-active: Background of the active pagination bullet
   *
   * @prop --progress-bar-background: Background of the pagination progress-bar
   * @prop --progress-bar-background-active: Background of the active pagination progress-bar
   *
   * @prop --scroll-bar-background: Background of the pagination scroll-bar
   * @prop --scroll-bar-background-active: Background of the active pagination scroll-bar
   */
  display: block;
  user-select: none;
}

.swiper .swiper-pagination-bullet {
  background: var(--bullet-background);
}

.swiper .swiper-pagination-bullet-active {
  background: var(--bullet-background-active);
}

.swiper .swiper-pagination-progressbar {
  background: var(--progress-bar-background);
}

.swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--progress-bar-background-active);
}

.swiper .swiper-scrollbar {
  background: var(--scroll-bar-background);
}

.swiper .swiper-scrollbar-drag {
  background: var(--scroll-bar-background-active);
}

.swiper .slide-zoom {
  display: block;
  width: 100%;
  text-align: center;
}

.swiper .swiper-slide {
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
}

.swiper .swiper-slide img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

/*# sourceMappingURL=ionic-swiper.css.map */


:root {
  --ion-color-primary: #6234a8;
  --ion-color-primary-rgb: 98, 52, 168;
  --ion-color-primary-contrast: #ffffff;
  --ion-color-primary-contrast-rgb: 255, 255, 255;
  --ion-color-primary-shade: #542d90;
  --ion-color-primary-tint: #8e4bf4;

  --ion-color-secondary: #8580a8;
  --ion-color-secondary-rgb: 133, 128, 168;
  --ion-color-secondary-contrast: #ffffff;
  --ion-color-secondary-contrast-rgb: 255, 255, 255;
  --ion-color-secondary-shade: #726e90;
  --ion-color-secondary-tint: #d5cdff;

  --ion-color-tertiary: #b98cca;
  --ion-color-tertiary-rgb: 185, 140, 202;
  --ion-color-tertiary-contrast: #ffffff;
  --ion-color-tertiary-contrast-rgb: 0, 0, 0;
  --ion-color-tertiary-shade: #9f78ae;
  --ion-color-tertiary-tint: #e7affd;

  /* --ion-color-primary: #2473bb;
  --ion-color-primary-rgb: 36, 115, 187;
  --ion-color-primary-contrast: #ffffff;
  --ion-color-primary-contrast-rgb: 255, 255, 255;
  --ion-color-primary-shade: #2065a5;
  --ion-color-primary-tint: #3a81c2;

  --ion-color-secondary: #1e3955;
  --ion-color-secondary-rgb: 30, 57, 85;
  --ion-color-secondary-contrast: #ffffff;
  --ion-color-secondary-contrast-rgb: 255, 255, 255;
  --ion-color-secondary-shade: #1a324b;
  --ion-color-secondary-tint: #354d66;

  --ion-color-tertiary: #54b6e7;
  --ion-color-tertiary-rgb: 84, 182, 231;
  --ion-color-tertiary-contrast: #ffffff;
  --ion-color-tertiary-contrast-rgb: 0, 0, 0;
  --ion-color-tertiary-shade: #4aa0cb;
  --ion-color-tertiary-tint: #65bde9; */

  --ion-color-success: #79c79d;
  --ion-color-success-rgb: 121, 199, 157;
  --ion-color-success-contrast: #000000;
  --ion-color-success-contrast-rgb: 0, 0, 0;
  --ion-color-success-shade: #6aaf8a;
  --ion-color-success-tint: #86cda7;

  --ion-color-warning: #ffc723;
  --ion-color-warning-rgb: 255, 199, 35;
  --ion-color-warning-contrast: #000000;
  --ion-color-warning-contrast-rgb: 0, 0, 0;
  --ion-color-warning-shade: #e0af1f;
  --ion-color-warning-tint: #ffcd39;

  --ion-color-danger: #db3a5e;
  --ion-color-danger-rgb: 219, 58, 94;
  --ion-color-danger-contrast: #ffffff;
  --ion-color-danger-contrast-rgb: 255, 255, 255;
  --ion-color-danger-shade: #c13353;
  --ion-color-danger-tint: #df4e6e;

  --ion-color-dark: #08141c;
  --ion-color-dark-rgb: 8, 20, 28;
  --ion-color-dark-contrast: #ffffff;
  --ion-color-dark-contrast-rgb: 255, 255, 255;
  --ion-color-dark-shade: #071219;
  --ion-color-dark-tint: #212c33;

  --ion-color-medium: #d8d8d8;
  --ion-color-medium-rgb: 190, 190, 190;
  --ion-color-medium-contrast: #000000;
  --ion-color-medium-contrast-rgb: 0, 0, 0;
  --ion-color-medium-shade: #bebebe;
  --ion-color-medium-tint: #dcdcdc;

  --ion-color-light: #f6f6f6;
  --ion-color-light-rgb: 248, 248, 248;
  --ion-color-light-contrast: #000000;
  --ion-color-light-contrast-rgb: 0, 0, 0;
  --ion-color-light-shade: #d8d8d8;
  --ion-color-light-tint: #f7f7f7;

  --ion-font-family: Lato, Verdana, sans-serif;
  --ion-font-family-secondary: myriad-pro, helvetica, sans-serif;

  --ion-icon-checkmark: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjNjVjYzk2IiBkPSJNMjU2IDQ4QzE0MS42IDQ4IDQ4IDE0MS42IDQ4IDI1NnM5My42IDIwOCAyMDggMjA4IDIwOC05My42IDIwOC0yMDhTMzcwLjQgNDggMjU2IDQ4em0tNDIuNyAzMTguOUwxMDYuNyAyNjAuM2wyOS45LTI5LjkgNzYuOCA3Ni44IDE2Mi4xLTE2Mi4xIDI5LjkgMjkuOS0xOTIuMSAxOTEuOXoiLz48L3N2Zz4=);
  --ion-border-color: var(--ion-color-base-dark);
  --ion-color-step-50: #f2f2f2;
  --ion-color-step-100: #e6e6e6;
  --ion-color-step-150: #d9d9d9;
  --ion-color-step-200: #cccccc;
  --ion-color-step-250: #bfbfbf;
  --ion-color-step-300: #b3b3b3;
  --ion-color-step-350: #a6a6a6;
  --ion-color-step-400: #999999;
  --ion-color-step-450: #8c8c8c;
  --ion-color-step-500: #808080;
  --ion-color-step-550: #737373;
  --ion-color-step-600: #666666;
  --ion-color-step-650: #595959;
  --ion-color-step-700: #4d4d4d;
  --ion-color-step-750: #404040;
  --ion-color-step-800: #333333;
  --ion-color-step-850: #262626;
  --ion-color-step-900: #191919;
  --ion-color-step-950: #0d0d0d;
}

@font-face {
  font-family: "myriad-pro";
  src: url("https://app.thefloodteam.com/assets/fonts/MYRIADPRO-REGULAR.OTF");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "myriad-pro";
  src: url("https://app.thefloodteam.com/assets/fonts/MYRIADPRO-BOLD.OTF");
  font-weight: bold;
  font-style: normal;
}

body {
  background-color: var(--background-color, #d7d8da);
  position: relative;
  color: #000000;
}

noscript {
  padding: 15px 15px 15px 40px;
  display: block;
  width: 80%;
  max-width: 600px;
  margin: 30px auto;
  background-color: #d7d8da;
  border-radius: 4px;
  color: #333333;
  position: relative;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.2),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

noscript span {
  font-weight: bold;
  display: block;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background-color: #d7d8da;
  color: #333333;
  line-height: 20px;
  text-align: center;
  position: absolute;
  top: 13px;
  left: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ion-font-family-secondary);
  font-weight: bold;
}

.wide-popover {
  --width: 300px;
}

.ce-popover__items {
  color: var(--ion-color-dark) !important;
}

.position-holder {
  border: 3px dashed var(--ion-color-primary);
  border-radius: 100%;
  height: 30px;
  width: 30px;
}

ion-icon.ft-icon-style {
  fill: var(--ft-icon-primary, var(--ion-color-primary));
  color: var(--ft-icon-primary, var(--ion-color-primary));
  padding: 7px;
  position: relative;
}

ion-icon.ft-icon-style:after {
  border: 1.5px solid var(--ion-color-light-shade);
  border-bottom-color: var(--ft-icon-primary, var(--ion-color-primary));
  border-right-color: var(--ft-icon-primary, var(--ion-color-primary));
  transform: rotate(45deg);
  border-radius: 100%;
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.is-loading {
  position: relative;
  pointer-events: none;
}

.is-loading:before {
  transition: all 400ms ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 99;
}

.is-loading:after {
  display: block;
  position: absolute;
  height: 200px;
  width: 200px;
  content: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiByZ2JhKDI1NSwgMjU1LCAyNTUsIDApOyBkaXNwbGF5OiBibG9jazsiIHdpZHRoPSIyMDBweCIgaGVpZ2h0PSIyMDBweCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIj4KPGNpcmNsZSBjeD0iNTAiIGN5PSI1MCIgcj0iMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjM2VhN2RlIiBzdHJva2Utd2lkdGg9IjIiPgogIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9InIiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiBkdXI9IjIuMTI3NjU5NTc0NDY4MDg1cyIgdmFsdWVzPSIwOzQwIiBrZXlUaW1lcz0iMDsxIiBrZXlTcGxpbmVzPSIwIDAuMiAwLjggMSIgY2FsY01vZGU9InNwbGluZSIgYmVnaW49IjBzIj48L2FuaW1hdGU+CiAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0ib3BhY2l0eSIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIGR1cj0iMi4xMjc2NTk1NzQ0NjgwODVzIiB2YWx1ZXM9IjE7MCIga2V5VGltZXM9IjA7MSIga2V5U3BsaW5lcz0iMC4yIDAgMC44IDEiIGNhbGNNb2RlPSJzcGxpbmUiIGJlZ2luPSIwcyI+PC9hbmltYXRlPgo8L2NpcmNsZT48Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiByPSIwIiBmaWxsPSJub25lIiBzdHJva2U9IiMzMzg4YmIiIHN0cm9rZS13aWR0aD0iMiI+CiAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iciIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIGR1cj0iMi4xMjc2NTk1NzQ0NjgwODVzIiB2YWx1ZXM9IjA7NDAiIGtleVRpbWVzPSIwOzEiIGtleVNwbGluZXM9IjAgMC4yIDAuOCAxIiBjYWxjTW9kZT0ic3BsaW5lIiBiZWdpbj0iLTEuMDYzODI5Nzg3MjM0MDQyNXMiPjwvYW5pbWF0ZT4KICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIyLjEyNzY1OTU3NDQ2ODA4NXMiIHZhbHVlcz0iMTswIiBrZXlUaW1lcz0iMDsxIiBrZXlTcGxpbmVzPSIwLjIgMCAwLjggMSIgY2FsY01vZGU9InNwbGluZSIgYmVnaW49Ii0xLjA2MzgyOTc4NzIzNDA0MjVzIj48L2FuaW1hdGU+CjwvY2lyY2xlPgo8L3N2Zz4=);
  top: 50%;
  left: 50%;
  margin-left: -100px;
  margin-top: -100px;
  z-index: 100;
  pointer-events: none;
}

.padded-button {
  padding: 0 60px;
}

.sc-ion-buttons-md-s .button-has-icon-only.button-clear {
  padding: 0;
}

fireenjin-search-bar {
  background: var(--ion-background-color);
}

fireenjin-search-bar .searchbar-input {
  font-weight: bold !important;
  font-size: 1.3rem !important;
}

fireenjin-search-bar ion-chip {
  flex-shrink: 0 !important;
  min-width: 80px;
}

fireenjin-search-bar ion-chip ion-icon {
  min-width: 1rem !important;
  min-height: 1rem !important;
}

fireenjin-search-bar ion-chip ion-label {
  max-width: 6.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 10px;
}

fireenjin-search-bar .chip-bowl {
  padding: 3px 5px;
  gap: 0.4rem;
  margin: auto 0;
}

fireenjin-search-bar .chip-bowl ion-chip {
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --app-height: 100vh;
    --ion-color-base: var(--ion-color-secondary);
    --ion-color-base-rgb: var(--ion-color-secondary-rgb);
    --ion-color-base-shade: var(--ion-color-secondary-shade);
    --ion-color-base-tint: var(--ion-color-secondary-tint);
    --ion-color-base-dark: #050d13;
    --ion-color-base-dark-rgb: 5, 13, 19;
    --ion-background-color: var(--ion-color-secondary);
    --ion-background-color-rgb: var(--ion-color-secondary-rgb);
    --background-color: var(--ion-color-dark);
    --background-color-rgb: var(--ion-color-dark-rgb);
    --ion-text-color: var(--ion-color-secondary-contrast);
    --ion-text-color-rgb: var(--ion-color-secondary-contrast-rgb);
    --color: var(--ion-color-secondary-contrast);
    --ion-nav-color: var(--ion-color-secondary);
    --ion-nav-color-rgb: var(--ion-color-secondary-rgb);
    --ion-chip-background: rgba(var(--ion-color-dark-rgb), 0.3);
    --ion-border-color: var(--ion-color-base-dark);
  }

  ion-header {
    background: var(--ion-color-secondary);
  }

  ion-content {
    --background: var(--ion-color-dark);
  }

  ion-menu ion-content {
    --background: var(--ion-color-dark-shade);
  }

  ion-label p {
    color: var(--ion-text-color) !important;
  }

  button {
    --button-color-selected: var(--ion-color-primary);
    --button-color-hover: var(--ion-color-secondary-contrast);
    --button-color: rgba(var(--ion-color-secondary-contrast-rgb), 0.6);
  }

  .underline-title,
  .underline-title ion-router-link,
  .underline-title a {
    text-shadow: 1px 1px 6px rgba(var(--ion-color-dark-rgb), 0.8);
  }
}

@media (prefers-color-scheme: light) {
  :root {
    --app-height: 100vh;
    --ion-color-base: var(--ion-color-light);
    --ion-color-base-rgb: var(--ion-color-light-rgb);
    --ion-color-base-shade: var(--ion-color-light-shade);
    --ion-color-base-tint: var(--ion-color-light-tint);
    --ion-color-base-dark: #cacbce;
    --ion-color-base-dark-rgb: 202, 203, 206;
    --ion-background-color: var(--ion-color-light);
    --ion-background-color-rgb: var(--ion-color-light-rgb);
    --background-color: linear-gradient(to bottom,
        rgba(246, 246, 246, 1) 0%,
        rgba(225, 226, 228, 1) 100%);
    --background-color-rgb: var(--ion-color-light-rgb);
    --color: var(--ion-color-light-contrast);
    --ion-text-color: var(--ion-color-light-contrast);
    --ion-text-color-rgb: var(--ion-color-light-contrast-rgb);
    --ion-nav-color: var(--ion-color-light);
    --ion-nav-color-rgb: var(--ion-color-light-rgb);
    --ion-chip-background: rgba(var(--ion-color-light-rgb), 0.6);
  }

  ion-header {
    background: var(--ion-color-light);
  }

  ion-content {
    --background: var(--background-color);
  }

  ion-menu ion-content {
    --background: var(--ion-color-light);
  }

  ion-menu ion-header {
    background: var(--background-color);
  }
}

body,
html {
  height: 100%;
  font-size: 18px;
}

fireenjin-select {
  --padding-start: 0;
  --padding-end: 0;
}

fireenjin-select ion-item {
  --background: transparent;
}

fireenjin-select div[slot="start"],
fireenjin-select div[slot="end"] {
  margin-inline-end: 0 !important;
  margin-inline-start: 0 !important;
  margin: 0 !important;
  display: flex;
  height: 60px;
  justify-content: center;
  align-items: center;
}

.theme-button {
  float: right;
  transition: all ease 0.5s;
  opacity: 0.6;
  height: 45px;
  width: 35px;
  --padding-start: 0;
  --padding-end: 0;
}

.theme-button:hover {
  opacity: 1;
}

.theme-button:hover ion-icon:first-of-type {
  opacity: 0;
  transform: rotate(-90deg);
}

.theme-button:hover ion-icon:last-of-type {
  opacity: 1;
  transform: rotate(0deg);
}

.theme-button ion-icon {
  position: absolute;
  right: 5px;
  top: 5px;
  transition: all ease 0.5s;
}

.theme-buttonion-icon:first-of-type {
  opacity: 1;
  transform: rotate(0deg);
}

.theme-button ion-icon:last-of-type {
  opacity: 0;
  transform: rotate(-90deg);
}

fireenjin-flow h1 {
  padding-bottom: 15px;
}

fireenjin-flow ion-slide {
  text-align: left;
  color: var(--ion-text-color);
}

fireenjin-flow small {
  opacity: 0.6;
}

fireenjin-flow .flow-controls {
  width: 80%;
  margin: 30px auto;
}

fireenjin-flow fireenjin-select ion-item {
  --background: transparent;
}

.confirm-card {
  border-radius: 15px;
  background-color: rgba(var(--ion-color-base-dark-rgb), 0.5);
  padding: 1rem 1.5rem;
  margin: 1.5rem auto;
}

fireenjin-input-photo .upload-wrapper .photo {
  color: #ffffff;
  border: 2px solid var(--ion-background-color);
  border-radius: 6px;
  font-family: var(--ion-font-family-secondary) !important;
  letter-spacing: 4px !important;
}

ion-datetime-button::part(native) {
  background: transparent !important;
  box-shadow: none !important;
}

ion-nav {
  background: var(--ion-nav-color);
}

ion-modal ion-tab-bar {
  --background: transparent;
}

ion-modal fireenjin-select ion-item {
  --background: transparent;
}

ion-tab-button {
  --color-selected: var(--ion-color-secondary);
  --color: var(--ion-text-color);
}

.invoice-preview .modal-margin {
  margin-left: 25px !important;
}

.enjin-align-right {
  display: table;
  margin-left: auto;
}

.enjin-align-center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

ion-chip,
ion-chip ion-icon {
  color: var(--ion-text-color);
}

ion-chip {
  --background: var(--ion-chip-background);
}

.sc-ion-buttons-md-s ion-button:not(.button-round) {
  text-transform: capitalize;
  font-weight: bolder;
  font-size: 18px;
  --padding-start: 10px;
  --padding-end: 10px;
  --border-radius: 6px;
}

.section-title {
  line-height: 31px;
  margin: 0;
  position: relative;
  width: 100%;
  display: block;
  padding: 5px 15px 0;
  font-size: 1.2em;
  text-indent: 5px;
}

.section-title>ion-icon {
  float: left;
  margin-top: 5px;
}

.section-title>ion-button {
  position: absolute;
  right: 15px;
  top: 0;
}

ion-list>ion-item-divider {
  --background: var(--ion-color-base-shade);
  color: var(--ion-text-color);
}

.has-filter-bar {
  --offset-top: 100px !important;
}

ion-menu {
  --side-min-width: 280px;
  --width: 280px;
}

ion-menu .split-pane-visible {
  --side-min-width: 300px;
  --width: 300px;
  --side-width: 300px;
}

ion-item.json-editor-field,
ion-item.json-editor-field ion-label {
  overflow: visible !important;
}

fireenjin-radios ion-list {
  --ion-item-background: transparent;
}

@media only screen and (max-width: 1200px) {
  body {
    font-size: 16px;
  }
}

@media only screen and (max-width: 800px) {
  body {
    font-size: 14px;
  }
}

@media only screen and (max-width: 500px) {
  body {
    font-size: 12px;
  }
}

@media only screen and (max-width: 400px) {
  body {
    font-size: 10px;
  }
}

@media (min-width: 991px) {
  .hide-menu-btn {
    display: none;
  }
}

.check-scanner-preview {
  border: 1px solid var(--ion-color-base-tint);
  border-radius: 15px;
  aspect-ratio: 16/9;
  margin: 15px auto;
  max-width: 300px;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center !important;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  position: relative;
  overflow: hidden;
}

.check-scanner-preview:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

body.light .check-scanner-preview:before {
  background: rgba(0, 0, 0, 0.3);
}

.check-scanner-preview ion-button {
  pointer-events: none;
}

.check-scanner-preview ion-icon {
  pointer-events: none;
  color: var(--ion-color-success);
  height: 35px;
  width: 35px;
  align-self: center;
  position: relative;
  border-radius: 100%;
}

.check-scanner-preview ion-icon:before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 100%;
  background: #ffffff;
  z-index: -1;
}

ion-content.has-tabs {
  --padding-bottom: 100px;
}

ion-toolbar .ft-logo {
  color: var(--ion-text-color);
  width: 81px;
  height: 31px;
  margin: 0 10px;
}

.page-wrapper {
  width: calc(100% - 60px);
}

fireenjin-search-bar {
  border: 1px solid var(--ion-border-color);
}

fireenjin-search-bar ion-icon {
  color: rgba(var(--ion-text-color-rgb), 0.3);
}

ion-card ion-card-header ion-card-title {
  color: var(--ion-text-color);
}

.alert-radio-label,
.alert-checkbox-label {
  color: var(--ion-text-color) !important;
}

[aria-checked="true"].sc-ion-alert-md .alert-radio-label.sc-ion-alert-md,
[aria-checked="true"].sc-ion-alert-md .alert-checkbox-label.sc-ion-alert-md {
  color: var(--ion-color-primary) !important;
}

.floodteam-dot {
  position: relative;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background: rgba(var(--ion-color-medium-rgb), 0.4);
  margin: auto;
  text-align: center;
  line-height: 50px;
}

fireenjin-input-amount ion-item ion-icon[slot="start"] {
  top: 0.9rem;
  left: 0.4rem;
}

.underline-title,
.underline-title ion-router-link,
.underline-title a {
  text-decoration: none;
  margin: auto 0;
  padding: 0;
  color: var(--ion-text-color);
}

.page-break-avoid {
  page-break-inside: avoid;
}

.page-break-before {
  page-break-before: always;
}

.page-break-after {
  page-break-after: always;
}

pre {
  font-family: var(--ion-font-family) !important;
}

.action-sheet-wrapper button {
  color: var(--ion-text-color) !important;
}

/* DARK MODE */
body.dark,
.dark-mode {
  --app-height: 100vh;
  --ion-color-base: var(--ion-color-secondary);
  --ion-color-base-rgb: var(--ion-color-secondary-rgb);
  --ion-color-base-shade: var(--ion-color-secondary-shade);
  --ion-color-base-tint: var(--ion-color-secondary-tint);
  --ion-color-base-dark: #050d13;
  --ion-color-base-dark-rgb: 5, 13, 19;
  --ion-background-color: var(--ion-color-secondary);
  --ion-background-color-rgb: var(--ion-color-secondary-rgb);
  --background-color: var(--ion-color-dark);
  --background-color-rgb: var(--ion-color-dark-rgb);
  --ion-text-color: var(--ion-color-secondary-contrast);
  --ion-text-color-rgb: var(--ion-color-secondary-contrast-rgb);
  --color: var(--ion-color-secondary-contrast);
  --ion-nav-color: var(--ion-color-secondary);
  --ion-nav-color-rgb: var(--ion-color-secondary-rgb);
  --ion-chip-background: rgba(var(--ion-color-dark-rgb), 0.3);
  --ion-border-color: var(--ion-color-base-dark);
}

body.dark ion-header {
  background: var(--ion-color-secondary);
}

body.dark ion-content {
  --background: var(--ion-color-dark);
}

body.dark ion-menu ion-content {
  --background: var(--ion-color-dark-shade);
}

body.dark button {
  --button-color-selected: var(--ion-color-primary);
  --button-color-hover: var(--ion-color-secondary-contrast);
  --button-color: rgba(var(--ion-color-secondary-contrast-rgb), 0.6);
}

body.dark .underline-title,
body.dark .underline-title ion-router-link,
body.dark .underline-title a {
  text-shadow: 1px 1px 6px rgba(var(--ion-color-dark-rgb), 0.8);
}

/* LIGHT MODE */

body.light,
.light-mode {
  --app-height: 100vh;
  --ion-color-base: var(--ion-color-light);
  --ion-color-base-rgb: var(--ion-color-light-rgb);
  --ion-color-base-shade: var(--ion-color-light-shade);
  --ion-color-base-tint: var(--ion-color-light-tint);
  --ion-color-base-dark: #cacbce;
  --ion-color-base-dark-rgb: 202, 203, 206;
  --ion-background-color: var(--ion-color-light);
  --ion-background-color-rgb: var(--ion-color-light-rgb);
  --background-color: linear-gradient(to bottom,
      rgba(246, 246, 246, 1) 0%,
      rgba(225, 226, 228, 1) 100%);
  --background-color-rgb: var(--ion-color-light-rgb);
  --color: var(--ion-color-light-contrast);
  --ion-text-color: var(--ion-color-light-contrast);
  --ion-text-color-rgb: var(--ion-color-light-contrast-rgb);
  --ion-nav-color: var(--ion-color-light);
  --ion-nav-color-rgb: var(--ion-color-light-rgb);
  --ion-chip-background: rgba(var(--ion-color-light-rgb), 0.6);
  --ion-border-color: var(--ion-color-base-dark);
}

body.light ion-header {
  background: var(--ion-color-light);
}

body.light ion-content {
  --background: var(--background-color);
}

body.light ion-menu ion-content {
  --background: var(--ion-color-light);
}

body.light ion-menu ion-header {
  background: var(--background-color);
}

body.light .underline-title,
body.light .underline-title ion-router-link,
body.light .underline-title a {
  text-shadow: none;
}

@keyframes waving {
  0% {
    background-position-x: 0px;
    background-position-y: 0px;
  }

  50% {
    background-position-y: var(--wave-dip, 50px);
    background-position-x: -821px;
  }

  100% {
    background-position-y: 0px;
    background-position-x: -1643px;
  }
}

floodteam-template.fullscreen fireenjin-render-template {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

floodteam-template.fullscreen.has-padding fireenjin-render-template .render-wrapper {
  padding: 1rem;
}

floodteam-template#email-preview fireenjin-render-template {
  height: 300px;
  width: 300px;
}

fireenjin-modal-partial-select fireenjin-render-template {
  height: 200px !important;
}

fireenjin-input input[type="color"] {
  padding: 0 !important;
}

@media (min-width: 800px) {
  .timeline-modal {
    --width: clamp(600px, 80vw, 1000px);
    --height: clamp(300px, 80vh, 1000px);
    --border-radius: 6px;
  }
}

@media only screen and (max-width: 500px) {
  ion-chip.service-totals ion-label {
    display: block !important;
  }
}

.title-teaser {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: normal;
  line-height: 110%;
  text-transform: uppercase;
  padding-bottom: 1rem;
  display: block;
}

.outline-card {
  border: 2px solid rgba(var(--ion-text-color-rgb), 0.6);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  min-width: 75px;
  width: 100%;

  ion-text,
  small,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 auto;
    text-align: center;
    display: block;
  }
}

.dynamic-size {
  font-size: clamp(1rem, -1.5rem + 3.5vw, 2rem);
}

.clear-card {
  --background: transparent;
  background: linear-gradient(180deg, rgba(246, 246, 246, 0.8) 0%, rgba(246, 246, 246, 0.24) 100%);
  backdrop-filter: blur(6px);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  box-shadow: none;
  color: #111 !important;
}

.clear-card ion-list {
  background: transparent;
}

.clear-card ion-item {
  color: #111;
  --ion-color-medium: #333;
  --background: transparent;
}

.clear-card .button-clear {
  --ion-color-base: #333 !important;
}

.clear-card h2 {
  font-size: 2rem;
  font-weight: normal;
  line-height: 58px;
  letter-spacing: 0em;
  text-align: center;
}

body.light .dark-card {
  max-width: 25rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(var(--ion-color-medium), 0.6);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%),
    rgba(56, 63, 71, 0.4);
}

body.dark .dark-card {
  max-width: 25rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(36, 115, 187, 0.3);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%),
    rgba(15, 34, 54, 0.8);
}

@font-face {
  font-family: Mobiscroll;
  src:
    url("/assets/fonts/icons_mobiscroll.woff?nehgnd") format("woff"),
    url("/assets/fonts/icons_mobiscroll.woff") format("woff"),
    url("/assets/fonts/icons_mobiscroll.ttf?nehgnd") format("truetype");
  font-weight: 400;
  font-style: normal;
}

.mbsc-font-icon:before {
  font-family: Mobiscroll;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mbsc-icon-arrow-down5:before {
  content: "\ea03";
}

.mbsc-icon-arrow-left5:before {
  content: "\ea01";
}

.mbsc-icon-arrow-left6:before {
  content: "\ea04";
}

.mbsc-icon-arrow-right5:before {
  content: "\ea02";
}

.mbsc-icon-arrow-right6:before {
  content: "\ea08";
}

.mbsc-icon-arrow-up5:before {
  content: "\ea05";
}

.mbsc-icon-ion-alert-circled:before {
  content: "\ea07";
}

.mbsc-icon-ion-alert:before {
  content: "\ea06";
}

.mbsc-icon-ion-android-add-contact:before {
  content: "\ea0a";
}

.mbsc-icon-ion-android-add:before {
  content: "\ea09";
}

.mbsc-icon-ion-android-alarm:before {
  content: "\ea0c";
}

.mbsc-icon-ion-android-archive:before {
  content: "\ea0b";
}

.mbsc-icon-ion-android-arrow-back:before {
  content: "\ea0e";
}

.mbsc-icon-ion-android-arrow-down-left:before {
  content: "\ea0f";
}

.mbsc-icon-ion-android-arrow-down-right:before {
  content: "\ea0d";
}

.mbsc-icon-ion-android-arrow-up-left:before {
  content: "\ea10";
}

.mbsc-icon-ion-android-arrow-up-right:before {
  content: "\ea11";
}

.mbsc-icon-ion-android-battery:before {
  content: "\ea13";
}

.mbsc-icon-ion-android-book:before {
  content: "\ea14";
}

.mbsc-icon-ion-android-calendar:before {
  content: "\ea15";
}

.mbsc-icon-ion-android-call:before {
  content: "\ea12";
}

.mbsc-icon-ion-android-camera:before {
  content: "\ea17";
}

.mbsc-icon-ion-android-chat:before {
  content: "\ea16";
}

.mbsc-icon-ion-android-checkmark:before {
  content: "\ea18";
}

.mbsc-icon-ion-android-clock:before {
  content: "\ea19";
}

.mbsc-icon-ion-android-close:before {
  content: "\ea1a";
}

.mbsc-icon-ion-android-contact:before {
  content: "\ea1b";
}

.mbsc-icon-ion-android-contacts:before {
  content: "\ea1c";
}

.mbsc-icon-ion-android-data:before {
  content: "\ea1d";
}

.mbsc-icon-ion-android-developer:before {
  content: "\ea1e";
}

.mbsc-icon-ion-android-display:before {
  content: "\ea20";
}

.mbsc-icon-ion-android-download:before {
  content: "\ea22";
}

.mbsc-icon-ion-android-dropdown:before {
  content: "\ea21";
}

.mbsc-icon-ion-android-earth:before {
  content: "\ea1f";
}

.mbsc-icon-ion-android-folder:before {
  content: "\ea23";
}

.mbsc-icon-ion-android-forums:before {
  content: "\ea24";
}

.mbsc-icon-ion-android-friends:before {
  content: "\ea26";
}

.mbsc-icon-ion-android-hand:before {
  content: "\ea29";
}

.mbsc-icon-ion-android-image:before {
  content: "\ea25";
}

.mbsc-icon-ion-android-inbox:before {
  content: "\ea27";
}

.mbsc-icon-ion-android-information:before {
  content: "\ea28";
}

.mbsc-icon-ion-android-keypad:before {
  content: "\ea2a";
}

.mbsc-icon-ion-android-lightbulb:before {
  content: "\ea2b";
}

.mbsc-icon-ion-android-locate:before {
  content: "\ea2c";
}

.mbsc-icon-ion-android-location:before {
  content: "\ea2d";
}

.mbsc-icon-ion-android-mail:before {
  content: "\ea2e";
}

.mbsc-icon-ion-android-microphone:before {
  content: "\ea2f";
}

.mbsc-icon-ion-android-mixer:before {
  content: "\ea30";
}

.mbsc-icon-ion-android-more:before {
  content: "\ea31";
}

.mbsc-icon-ion-android-note:before {
  content: "\ea32";
}

.mbsc-icon-ion-android-playstore:before {
  content: "\ea35";
}

.mbsc-icon-ion-android-printer:before {
  content: "\ea33";
}

.mbsc-icon-ion-android-promotion:before {
  content: "\ea36";
}

.mbsc-icon-ion-android-reminder:before {
  content: "\ea37";
}

.mbsc-icon-ion-android-remove:before {
  content: "\ea34";
}

.mbsc-icon-ion-android-search:before {
  content: "\ea39";
}

.mbsc-icon-ion-android-send:before {
  content: "\ea38";
}

.mbsc-icon-ion-android-settings:before {
  content: "\ea3a";
}

.mbsc-icon-ion-android-share:before {
  content: "\ea3b";
}

.mbsc-icon-ion-android-social-user:before {
  content: "\ea3f";
}

.mbsc-icon-ion-android-social:before {
  content: "\ea41";
}

.mbsc-icon-ion-android-sort:before {
  content: "\ea40";
}

.mbsc-icon-ion-android-star:before {
  content: "\ea3c";
}

.mbsc-icon-ion-android-stopwatch:before {
  content: "\ea3d";
}

.mbsc-icon-ion-android-storage:before {
  content: "\ea3e";
}

.mbsc-icon-ion-android-system-back:before {
  content: "\ea42";
}

.mbsc-icon-ion-android-system-home:before {
  content: "\ea43";
}

.mbsc-icon-ion-android-system-windows:before {
  content: "\ea44";
}

.mbsc-icon-ion-android-timer:before {
  content: "\ea45";
}

.mbsc-icon-ion-android-trash:before {
  content: "\ea47";
}

.mbsc-icon-ion-android-volume:before {
  content: "\ea48";
}

.mbsc-icon-ion-android-wifi:before {
  content: "\ea4a";
}

.mbsc-icon-ion-archive:before {
  content: "\ea46";
}

.mbsc-icon-ion-arrow-down-a:before {
  content: "\ea49";
}

.mbsc-icon-ion-arrow-down-b:before {
  content: "\ea4b";
}

.mbsc-icon-ion-arrow-down-c:before {
  content: "\ea4c";
}

.mbsc-icon-ion-arrow-expand:before {
  content: "\ea4d";
}

.mbsc-icon-ion-arrow-graph-down-left:before {
  content: "\ea4e";
}

.mbsc-icon-ion-arrow-graph-down-right:before {
  content: "\ea4f";
}

.mbsc-icon-ion-arrow-graph-up-left:before {
  content: "\ea52";
}

.mbsc-icon-ion-arrow-graph-up-right:before {
  content: "\ea50";
}

.mbsc-icon-ion-arrow-left-a:before {
  content: "\ea51";
}

.mbsc-icon-ion-arrow-left-b:before {
  content: "\ea53";
}

.mbsc-icon-ion-arrow-left-c:before {
  content: "\ea54";
}

.mbsc-icon-ion-arrow-move:before {
  content: "\ea55";
}

.mbsc-icon-ion-arrow-resize:before {
  content: "\ea56";
}

.mbsc-icon-ion-arrow-return-left:before {
  content: "\ea59";
}

.mbsc-icon-ion-arrow-return-right:before {
  content: "\ea57";
}

.mbsc-icon-ion-arrow-right-a:before {
  content: "\ea58";
}

.mbsc-icon-ion-arrow-right-b:before {
  content: "\ea5a";
}

.mbsc-icon-ion-arrow-right-c:before {
  content: "\ea5b";
}

.mbsc-icon-ion-arrow-shrink:before {
  content: "\ea5c";
}

.mbsc-icon-ion-arrow-swap:before {
  content: "\ea5d";
}

.mbsc-icon-ion-arrow-up-a:before {
  content: "\ea5e";
}

.mbsc-icon-ion-arrow-up-b:before {
  content: "\ea5f";
}

.mbsc-icon-ion-arrow-up-c:before {
  content: "\ea60";
}

.mbsc-icon-ion-at:before {
  content: "\ea61";
}

.mbsc-icon-ion-bag:before {
  content: "\ea64";
}

.mbsc-icon-ion-battery-charging:before {
  content: "\ea62";
}

.mbsc-icon-ion-battery-empty:before {
  content: "\ea63";
}

.mbsc-icon-ion-battery-full:before {
  content: "\ea67";
}

.mbsc-icon-ion-battery-half:before {
  content: "\ea66";
}

.mbsc-icon-ion-battery-low:before {
  content: "\ea68";
}

.mbsc-icon-ion-beaker:before {
  content: "\ea65";
}

.mbsc-icon-ion-beer:before {
  content: "\ea69";
}

.mbsc-icon-ion-bluetooth:before {
  content: "\ea6b";
}

.mbsc-icon-ion-bookmark:before {
  content: "\ea6c";
}

.mbsc-icon-ion-briefcase:before {
  content: "\ea6d";
}

.mbsc-icon-ion-bug:before {
  content: "\ea6a";
}

.mbsc-icon-ion-calculator:before {
  content: "\ea70";
}

.mbsc-icon-ion-calendar:before {
  content: "\ea6f";
}

.mbsc-icon-ion-camera:before {
  content: "\ea72";
}

.mbsc-icon-ion-card:before {
  content: "\ea6e";
}

.mbsc-icon-ion-chatbox-working:before {
  content: "\ea71";
}

.mbsc-icon-ion-chatbox:before {
  content: "\ea74";
}

.mbsc-icon-ion-chatboxes:before {
  content: "\ea76";
}

.mbsc-icon-ion-chatbubble-working:before {
  content: "\ea78";
}

.mbsc-icon-ion-chatbubble:before {
  content: "\ea73";
}

.mbsc-icon-ion-chatbubbles:before {
  content: "\ea79";
}

.mbsc-icon-ion-checkmark-circled:before {
  content: "\ea75";
}

.mbsc-icon-ion-checkmark-round:before {
  content: "\ea7a";
}

.mbsc-icon-ion-checkmark:before {
  content: "\ea77";
}

.mbsc-icon-ion-chevron-down:before {
  content: "\ea7b";
}

.mbsc-icon-ion-chevron-left:before {
  content: "\ea7c";
}

.mbsc-icon-ion-chevron-right:before {
  content: "\ea7d";
}

.mbsc-icon-ion-chevron-up:before {
  content: "\ea7e";
}

.mbsc-icon-ion-clipboard:before {
  content: "\ea80";
}

.mbsc-icon-ion-clock:before {
  content: "\ea7f";
}

.mbsc-icon-ion-close-circled:before {
  content: "\ea83";
}

.mbsc-icon-ion-close-round:before {
  content: "\ea81";
}

.mbsc-icon-ion-close:before {
  content: "\ea84";
}

.mbsc-icon-ion-cloud:before {
  content: "\ea85";
}

.mbsc-icon-ion-code-download:before {
  content: "\ea82";
}

.mbsc-icon-ion-code-working:before {
  content: "\ea87";
}

.mbsc-icon-ion-code:before {
  content: "\ea86";
}

.mbsc-icon-ion-coffee:before {
  content: "\ea88";
}

.mbsc-icon-ion-compass:before {
  content: "\ea89";
}

.mbsc-icon-ion-compose:before {
  content: "\ea8b";
}

.mbsc-icon-ion-connection-bars:before {
  content: "\ea8a";
}

.mbsc-icon-ion-contrast:before {
  content: "\ea8d";
}

.mbsc-icon-ion-disc:before {
  content: "\ea8c";
}

.mbsc-icon-ion-document-text:before {
  content: "\ea8e";
}

.mbsc-icon-ion-document:before {
  content: "\ea8f";
}

.mbsc-icon-ion-drag:before {
  content: "\ea90";
}

.mbsc-icon-ion-earth:before {
  content: "\ea91";
}

.mbsc-icon-ion-edit:before {
  content: "\ea92";
}

.mbsc-icon-ion-egg:before {
  content: "\ea93";
}

.mbsc-icon-ion-eject:before {
  content: "\ea94";
}

.mbsc-icon-ion-email:before {
  content: "\ea96";
}

.mbsc-icon-ion-eye-disabled:before {
  content: "\ea95";
}

.mbsc-icon-ion-eye:before {
  content: "\ea97";
}

.mbsc-icon-ion-female:before {
  content: "\ea98";
}

.mbsc-icon-ion-filing:before {
  content: "\ea99";
}

.mbsc-icon-ion-film-marker:before {
  content: "\ea9a";
}

.mbsc-icon-ion-flag:before {
  content: "\ea9c";
}

.mbsc-icon-ion-flash-off:before {
  content: "\ea9d";
}

.mbsc-icon-ion-flash:before {
  content: "\ea9b";
}

.mbsc-icon-ion-flask:before {
  content: "\ea9f";
}

.mbsc-icon-ion-folder:before {
  content: "\ea9e";
}

.mbsc-icon-ion-fork-repo:before {
  content: "\eaa0";
}

.mbsc-icon-ion-fork:before {
  content: "\eaa1";
}

.mbsc-icon-ion-forward:before {
  content: "\eaa2";
}

.mbsc-icon-ion-game-controller-a:before {
  content: "\eaa3";
}

.mbsc-icon-ion-game-controller-b:before {
  content: "\eaa5";
}

.mbsc-icon-ion-gear-a:before {
  content: "\eaa6";
}

.mbsc-icon-ion-gear-b:before {
  content: "\eaa8";
}

.mbsc-icon-ion-grid:before {
  content: "\eaa4";
}

.mbsc-icon-ion-hammer:before {
  content: "\eaa9";
}

.mbsc-icon-ion-headphone:before {
  content: "\eaa7";
}

.mbsc-icon-ion-heart:before {
  content: "\eaaa";
}

.mbsc-icon-ion-help-buoy:before {
  content: "\eaab";
}

.mbsc-icon-ion-help-circled:before {
  content: "\eaac";
}

.mbsc-icon-ion-help:before {
  content: "\eaae";
}

.mbsc-icon-ion-home:before {
  content: "\eaad";
}

.mbsc-icon-ion-icecream:before {
  content: "\eaaf";
}

.mbsc-icon-ion-icon-social-google-plus-outline:before {
  content: "\eab2";
}

.mbsc-icon-ion-icon-social-google-plus:before {
  content: "\eab0";
}

.mbsc-icon-ion-image:before {
  content: "\eab1";
}

.mbsc-icon-ion-images:before {
  content: "\eab3";
}

.mbsc-icon-ion-information-circled:before {
  content: "\eab4";
}

.mbsc-icon-ion-information:before {
  content: "\eab6";
}

.mbsc-icon-ion-ionic:before {
  content: "\eab5";
}

.mbsc-icon-ion-ios7-alarm-outline:before {
  content: "\eab7";
}

.mbsc-icon-ion-ios7-alarm:before {
  content: "\eab8";
}

.mbsc-icon-ion-ios7-albums-outline:before {
  content: "\eab9";
}

.mbsc-icon-ion-ios7-albums:before {
  content: "\eaba";
}

.mbsc-icon-ion-ios7-arrow-back:before {
  content: "\eabc";
}

.mbsc-icon-ion-ios7-arrow-down:before {
  content: "\eabb";
}

.mbsc-icon-ion-ios7-arrow-forward:before {
  content: "\eabd";
}

.mbsc-icon-ion-ios7-arrow-left:before {
  content: "\eac0";
}

.mbsc-icon-ion-ios7-arrow-right:before {
  content: "\eabf";
}

.mbsc-icon-ion-ios7-arrow-thin-down:before {
  content: "\eac3";
}

.mbsc-icon-ion-ios7-arrow-thin-left:before {
  content: "\eabe";
}

.mbsc-icon-ion-ios7-arrow-thin-right:before {
  content: "\eac4";
}

.mbsc-icon-ion-ios7-arrow-thin-up:before {
  content: "\eac2";
}

.mbsc-icon-ion-ios7-arrow-up:before {
  content: "\eac1";
}

.mbsc-icon-ion-ios7-at-outline:before {
  content: "\eac5";
}

.mbsc-icon-ion-ios7-at:before {
  content: "\eac6";
}

.mbsc-icon-ion-ios7-bell-outline:before {
  content: "\eac7";
}

.mbsc-icon-ion-ios7-bell:before {
  content: "\eac8";
}

.mbsc-icon-ion-ios7-bolt-outline:before {
  content: "\eac9";
}

.mbsc-icon-ion-ios7-bolt:before {
  content: "\eaca";
}

.mbsc-icon-ion-ios7-bookmarks-outline:before {
  content: "\eacc";
}

.mbsc-icon-ion-ios7-bookmarks:before {
  content: "\eacb";
}

.mbsc-icon-ion-ios7-box-outline:before {
  content: "\eacd";
}

.mbsc-icon-ion-ios7-box:before {
  content: "\eace";
}

.mbsc-icon-ion-ios7-briefcase-outline:before {
  content: "\ead0";
}

.mbsc-icon-ion-ios7-briefcase:before {
  content: "\ead2";
}

.mbsc-icon-ion-ios7-browsers-outline:before {
  content: "\ead1";
}

.mbsc-icon-ion-ios7-browsers:before {
  content: "\eacf";
}

.mbsc-icon-ion-ios7-calculator-outline:before {
  content: "\ead3";
}

.mbsc-icon-ion-ios7-calculator:before {
  content: "\ead5";
}

.mbsc-icon-ion-ios7-calendar-outline:before {
  content: "\ead4";
}

.mbsc-icon-ion-ios7-calendar:before {
  content: "\ead6";
}

.mbsc-icon-ion-ios7-camera-outline:before {
  content: "\ead7";
}

.mbsc-icon-ion-ios7-camera:before {
  content: "\ead8";
}

.mbsc-icon-ion-ios7-cart-outline:before {
  content: "\ead9";
}

.mbsc-icon-ion-ios7-cart:before {
  content: "\eada";
}

.mbsc-icon-ion-ios7-chatboxes-outline:before {
  content: "\eadc";
}

.mbsc-icon-ion-ios7-chatboxes:before {
  content: "\eade";
}

.mbsc-icon-ion-ios7-chatbubble-outline:before {
  content: "\eae0";
}

.mbsc-icon-ion-ios7-chatbubble:before {
  content: "\eadb";
}

.mbsc-icon-ion-ios7-checkmark-empty:before {
  content: "\eadd";
}

.mbsc-icon-ion-ios7-checkmark-outline:before {
  content: "\eae3";
}

.mbsc-icon-ion-ios7-checkmark:before {
  content: "\eadf";
}

.mbsc-icon-ion-ios7-circle-filled:before {
  content: "\eae5";
}

.mbsc-icon-ion-ios7-circle-outline:before {
  content: "\eae2";
}

.mbsc-icon-ion-ios7-clock-outline:before {
  content: "\eae1";
}

.mbsc-icon-ion-ios7-clock:before {
  content: "\eae8";
}

.mbsc-icon-ion-ios7-close-empty:before {
  content: "\eae7";
}

.mbsc-icon-ion-ios7-close-outline:before {
  content: "\eae6";
}

.mbsc-icon-ion-ios7-close:before {
  content: "\eae4";
}

.mbsc-icon-ion-ios7-cloud-download-outline:before {
  content: "\eaec";
}

.mbsc-icon-ion-ios7-cloud-download:before {
  content: "\eaea";
}

.mbsc-icon-ion-ios7-cloud-outline:before {
  content: "\eaeb";
}

.mbsc-icon-ion-ios7-cloud-upload-outline:before {
  content: "\eae9";
}

.mbsc-icon-ion-ios7-cloud-upload:before {
  content: "\eaed";
}

.mbsc-icon-ion-ios7-cloud:before {
  content: "\eaef";
}

.mbsc-icon-ion-ios7-cloudy-night-outline:before {
  content: "\eaee";
}

.mbsc-icon-ion-ios7-cloudy-night:before {
  content: "\eaf1";
}

.mbsc-icon-ion-ios7-cloudy-outline:before {
  content: "\eaf0";
}

.mbsc-icon-ion-ios7-cloudy:before {
  content: "\eaf2";
}

.mbsc-icon-ion-ios7-cog-outline:before {
  content: "\eaf4";
}

.mbsc-icon-ion-ios7-cog:before {
  content: "\eaf3";
}

.mbsc-icon-ion-ios7-compose-outline:before {
  content: "\eaf6";
}

.mbsc-icon-ion-ios7-compose:before {
  content: "\eaf7";
}

.mbsc-icon-ion-ios7-contact-outline:before {
  content: "\eaf8";
}

.mbsc-icon-ion-ios7-contact:before {
  content: "\eaf5";
}

.mbsc-icon-ion-ios7-copy-outline:before {
  content: "\eafa";
}

.mbsc-icon-ion-ios7-copy:before {
  content: "\eaf9";
}

.mbsc-icon-ion-ios7-download-outline:before {
  content: "\eafc";
}

.mbsc-icon-ion-ios7-download:before {
  content: "\eafb";
}

.mbsc-icon-ion-ios7-drag:before {
  content: "\eafd";
}

.mbsc-icon-ion-ios7-email-outline:before {
  content: "\eafe";
}

.mbsc-icon-ion-ios7-email:before {
  content: "\eaff";
}

.mbsc-icon-ion-ios7-eye-outline:before {
  content: "\eb01";
}

.mbsc-icon-ion-ios7-eye:before {
  content: "\eb00";
}

.mbsc-icon-ion-ios7-fastforward-outline:before {
  content: "\eb03";
}

.mbsc-icon-ion-ios7-fastforward:before {
  content: "\eb02";
}

.mbsc-icon-ion-ios7-filing-outline:before {
  content: "\eb06";
}

.mbsc-icon-ion-ios7-filing:before {
  content: "\eb07";
}

.mbsc-icon-ion-ios7-film-outline:before {
  content: "\eb04";
}

.mbsc-icon-ion-ios7-film:before {
  content: "\eb05";
}

.mbsc-icon-ion-ios7-flag-outline:before {
  content: "\eb08";
}

.mbsc-icon-ion-ios7-flag:before {
  content: "\eb09";
}

.mbsc-icon-ion-ios7-folder-outline:before {
  content: "\eb0a";
}

.mbsc-icon-ion-ios7-folder:before {
  content: "\eb0b";
}

.mbsc-icon-ion-ios7-gear-outline:before {
  content: "\eb0c";
}

.mbsc-icon-ion-ios7-gear:before {
  content: "\eb0e";
}

.mbsc-icon-ion-ios7-glasses-outline:before {
  content: "\eb0f";
}

.mbsc-icon-ion-ios7-glasses:before {
  content: "\eb10";
}

.mbsc-icon-ion-ios7-heart-outline:before {
  content: "\eb0d";
}

.mbsc-icon-ion-ios7-heart:before {
  content: "\eb11";
}

.mbsc-icon-ion-ios7-help-empty:before {
  content: "\eb12";
}

.mbsc-icon-ion-ios7-help-outline:before {
  content: "\eb14";
}

.mbsc-icon-ion-ios7-help:before {
  content: "\eb13";
}

.mbsc-icon-ion-ios7-infinite-outline:before {
  content: "\eb16";
}

.mbsc-icon-ion-ios7-infinite:before {
  content: "\eb15";
}

.mbsc-icon-ion-ios7-information-empty:before {
  content: "\eb17";
}

.mbsc-icon-ion-ios7-information-outline:before {
  content: "\eb18";
}

.mbsc-icon-ion-ios7-information:before {
  content: "\eb19";
}

.mbsc-icon-ion-ios7-ionic-outline:before {
  content: "\eb1a";
}

.mbsc-icon-ion-ios7-keypad-outline:before {
  content: "\eb1c";
}

.mbsc-icon-ion-ios7-keypad:before {
  content: "\eb1b";
}

.mbsc-icon-ion-ios7-lightbulb-outline:before {
  content: "\eb1d";
}

.mbsc-icon-ion-ios7-lightbulb:before {
  content: "\eb1e";
}

.mbsc-icon-ion-ios7-location-outline:before {
  content: "\eb1f";
}

.mbsc-icon-ion-ios7-location:before {
  content: "\eb21";
}

.mbsc-icon-ion-ios7-locked-outline:before {
  content: "\eb22";
}

.mbsc-icon-ion-ios7-locked:before {
  content: "\eb20";
}

.mbsc-icon-ion-ios7-medkit-outline:before {
  content: "\eb24";
}

.mbsc-icon-ion-ios7-medkit:before {
  content: "\eb23";
}

.mbsc-icon-ion-ios7-mic-off:before {
  content: "\eb26";
}

.mbsc-icon-ion-ios7-mic-outline:before {
  content: "\eb25";
}

.mbsc-icon-ion-ios7-mic:before {
  content: "\eb27";
}

.mbsc-icon-ion-ios7-minus-empty:before {
  content: "\eb28";
}

.mbsc-icon-ion-ios7-minus-outline:before {
  content: "\eb29";
}

.mbsc-icon-ion-ios7-minus:before {
  content: "\eb2a";
}

.mbsc-icon-ion-ios7-monitor-outline:before {
  content: "\eb2c";
}

.mbsc-icon-ion-ios7-monitor:before {
  content: "\eb2b";
}

.mbsc-icon-ion-ios7-moon-outline:before {
  content: "\eb2d";
}

.mbsc-icon-ion-ios7-moon:before {
  content: "\eb2e";
}

.mbsc-icon-ion-ios7-more-outline:before {
  content: "\eb2f";
}

.mbsc-icon-ion-ios7-more:before {
  content: "\eb30";
}

.mbsc-icon-ion-ios7-musical-note:before {
  content: "\eb32";
}

.mbsc-icon-ion-ios7-musical-notes:before {
  content: "\eb31";
}

.mbsc-icon-ion-ios7-navigate-outline:before {
  content: "\eb33";
}

.mbsc-icon-ion-ios7-navigate:before {
  content: "\eb34";
}

.mbsc-icon-ion-ios7-paperplane-outline:before {
  content: "\eb35";
}

.mbsc-icon-ion-ios7-paperplane:before {
  content: "\eb36";
}

.mbsc-icon-ion-ios7-partlysunny-outline:before {
  content: "\eb38";
}

.mbsc-icon-ion-ios7-partlysunny:before {
  content: "\eb37";
}

.mbsc-icon-ion-ios7-pause-outline:before {
  content: "\eb39";
}

.mbsc-icon-ion-ios7-pause:before {
  content: "\eb3a";
}

.mbsc-icon-ion-ios7-people-outline:before {
  content: "\eb3b";
}

.mbsc-icon-ion-ios7-people:before {
  content: "\eb3c";
}

.mbsc-icon-ion-ios7-person-outline:before {
  content: "\eb3e";
}

.mbsc-icon-ion-ios7-person:before {
  content: "\eb3f";
}

.mbsc-icon-ion-ios7-personadd-outline:before {
  content: "\eb40";
}

.mbsc-icon-ion-ios7-personadd:before {
  content: "\eb3d";
}

.mbsc-icon-ion-ios7-photos-outline:before {
  content: "\eb41";
}

.mbsc-icon-ion-ios7-photos:before {
  content: "\eb42";
}

.mbsc-icon-ion-ios7-pie-outline:before {
  content: "\eb46";
}

.mbsc-icon-ion-ios7-pie:before {
  content: "\eb43";
}

.mbsc-icon-ion-ios7-play-outline:before {
  content: "\eb44";
}

.mbsc-icon-ion-ios7-play:before {
  content: "\eb47";
}

.mbsc-icon-ion-ios7-plus-empty:before {
  content: "\eb45";
}

.mbsc-icon-ion-ios7-plus-outline:before {
  content: "\eb48";
}

.mbsc-icon-ion-ios7-plus:before {
  content: "\eb4a";
}

.mbsc-icon-ion-ios7-pricetag-outline:before {
  content: "\eb4d";
}

.mbsc-icon-ion-ios7-pricetag:before {
  content: "\eb4e";
}

.mbsc-icon-ion-ios7-printer-outline:before {
  content: "\eb49";
}

.mbsc-icon-ion-ios7-printer:before {
  content: "\eb4f";
}

.mbsc-icon-ion-ios7-rainy-outline:before {
  content: "\eb4b";
}

.mbsc-icon-ion-ios7-rainy:before {
  content: "\eb4c";
}

.mbsc-icon-ion-ios7-recording-outline:before {
  content: "\eb50";
}

.mbsc-icon-ion-ios7-recording:before {
  content: "\eb51";
}

.mbsc-icon-ion-ios7-redo-outline:before {
  content: "\eb53";
}

.mbsc-icon-ion-ios7-redo:before {
  content: "\eb52";
}

.mbsc-icon-ion-ios7-refresh-empty:before {
  content: "\eb55";
}

.mbsc-icon-ion-ios7-refresh-outline:before {
  content: "\eb57";
}

.mbsc-icon-ion-ios7-refresh:before {
  content: "\eb60";
}

.mbsc-icon-ion-ios7-reload:before {
  content: "\eb54";
}

.mbsc-icon-ion-ios7-rewind-outline:before {
  content: "\eb59";
}

.mbsc-icon-ion-ios7-rewind:before {
  content: "\eb56";
}

.mbsc-icon-ion-ios7-search-strong:before {
  content: "\eb58";
}

.mbsc-icon-ion-ios7-search:before {
  content: "\eb5c";
}

.mbsc-icon-ion-ios7-skipbackward-outline:before {
  content: "\eb5b";
}

.mbsc-icon-ion-ios7-skipbackward:before {
  content: "\eb5d";
}

.mbsc-icon-ion-ios7-skipforward-outline:before {
  content: "\eb5a";
}

.mbsc-icon-ion-ios7-skipforward:before {
  content: "\eb5e";
}

.mbsc-icon-ion-ios7-snowy:before {
  content: "\eb61";
}

.mbsc-icon-ion-ios7-speedometer-outline:before {
  content: "\eb5f";
}

.mbsc-icon-ion-ios7-speedometer:before {
  content: "\eb63";
}

.mbsc-icon-ion-ios7-star-outline:before {
  content: "\eb62";
}

.mbsc-icon-ion-ios7-star:before {
  content: "\eb65";
}

.mbsc-icon-ion-ios7-stopwatch-outline:before {
  content: "\eb66";
}

.mbsc-icon-ion-ios7-stopwatch:before {
  content: "\eb64";
}

.mbsc-icon-ion-ios7-sunny-outline:before {
  content: "\eb69";
}

.mbsc-icon-ion-ios7-sunny:before {
  content: "\eb6b";
}

.mbsc-icon-ion-ios7-telephone-outline:before {
  content: "\eb68";
}

.mbsc-icon-ion-ios7-telephone:before {
  content: "\eb67";
}

.mbsc-icon-ion-ios7-thunderstorm-outline:before {
  content: "\eb6d";
}

.mbsc-icon-ion-ios7-thunderstorm:before {
  content: "\eb6e";
}

.mbsc-icon-ion-ios7-time-outline:before {
  content: "\eb6a";
}

.mbsc-icon-ion-ios7-time:before {
  content: "\eb6c";
}

.mbsc-icon-ion-ios7-timer-outline:before {
  content: "\eb6f";
}

.mbsc-icon-ion-ios7-timer:before {
  content: "\eb70";
}

.mbsc-icon-ion-ios7-trash-outline:before {
  content: "\eb72";
}

.mbsc-icon-ion-ios7-trash:before {
  content: "\eb73";
}

.mbsc-icon-ion-ios7-undo-outline:before {
  content: "\eb74";
}

.mbsc-icon-ion-ios7-undo:before {
  content: "\eb71";
}

.mbsc-icon-ion-ios7-unlocked-outline:before {
  content: "\eb75";
}

.mbsc-icon-ion-ios7-unlocked:before {
  content: "\eb76";
}

.mbsc-icon-ion-ios7-upload-outline:before {
  content: "\eb79";
}

.mbsc-icon-ion-ios7-upload:before {
  content: "\eb7a";
}

.mbsc-icon-ion-ios7-videocam-outline:before {
  content: "\eb7b";
}

.mbsc-icon-ion-ios7-videocam:before {
  content: "\eb77";
}

.mbsc-icon-ion-ios7-volume-high:before {
  content: "\eb78";
}

.mbsc-icon-ion-ios7-volume-low:before {
  content: "\eb7d";
}

.mbsc-icon-ion-ios7-wineglass-outline:before {
  content: "\eb7f";
}

.mbsc-icon-ion-ios7-wineglass:before {
  content: "\eb7c";
}

.mbsc-icon-ion-ios7-world-outline:before {
  content: "\eb7e";
}

.mbsc-icon-ion-ios7-world:before {
  content: "\eb81";
}

.mbsc-icon-ion-ipad:before {
  content: "\eb83";
}

.mbsc-icon-ion-iphone:before {
  content: "\eb82";
}

.mbsc-icon-ion-ipod:before {
  content: "\eb80";
}

.mbsc-icon-ion-jet:before {
  content: "\eb84";
}

.mbsc-icon-ion-key:before {
  content: "\eb86";
}

.mbsc-icon-ion-knife:before {
  content: "\eb85";
}

.mbsc-icon-ion-laptop:before {
  content: "\eb87";
}

.mbsc-icon-ion-leaf:before {
  content: "\eb88";
}

.mbsc-icon-ion-levels:before {
  content: "\eb89";
}

.mbsc-icon-ion-lightbulb:before {
  content: "\eb8b";
}

.mbsc-icon-ion-link:before {
  content: "\eb8d";
}

.mbsc-icon-ion-load-a:before {
  content: "\eb8c";
}

.mbsc-icon-ion-load-b:before {
  content: "\eb8a";
}

.mbsc-icon-ion-load-c:before {
  content: "\eb8e";
}

.mbsc-icon-ion-load-d:before {
  content: "\eb8f";
}

.mbsc-icon-ion-location:before {
  content: "\eb92";
}

.mbsc-icon-ion-locked:before {
  content: "\eb93";
}

.mbsc-icon-ion-log-in:before {
  content: "\eb90";
}

.mbsc-icon-ion-log-out:before {
  content: "\eb94";
}

.mbsc-icon-ion-loop:before {
  content: "\eb91";
}

.mbsc-icon-ion-magnet:before {
  content: "\eb95";
}

.mbsc-icon-ion-male:before {
  content: "\eb97";
}

.mbsc-icon-ion-man:before {
  content: "\eb96";
}

.mbsc-icon-ion-map:before {
  content: "\eb98";
}

.mbsc-icon-ion-medkit:before {
  content: "\eb99";
}

.mbsc-icon-ion-mic-a:before {
  content: "\eb9a";
}

.mbsc-icon-ion-mic-b:before {
  content: "\eb9b";
}

.mbsc-icon-ion-mic-c:before {
  content: "\eb9d";
}

.mbsc-icon-ion-minus-circled:before {
  content: "\eb9c";
}

.mbsc-icon-ion-minus-round:before {
  content: "\eb9e";
}

.mbsc-icon-ion-minus:before {
  content: "\eb9f";
}

.mbsc-icon-ion-model-s:before {
  content: "\eba0";
}

.mbsc-icon-ion-monitor:before {
  content: "\eba1";
}

.mbsc-icon-ion-more:before {
  content: "\eba2";
}

.mbsc-icon-ion-music-note:before {
  content: "\eba4";
}

.mbsc-icon-ion-navicon-round:before {
  content: "\eba5";
}

.mbsc-icon-ion-navicon:before {
  content: "\eba6";
}

.mbsc-icon-ion-navigate:before {
  content: "\eba3";
}

.mbsc-icon-ion-no-smoking:before {
  content: "\eba8";
}

.mbsc-icon-ion-nuclear:before {
  content: "\eba7";
}

.mbsc-icon-ion-paper-airplane:before {
  content: "\eba9";
}

.mbsc-icon-ion-paperclip:before {
  content: "\ebaa";
}

.mbsc-icon-ion-pause:before {
  content: "\ebab";
}

.mbsc-icon-ion-person-add:before {
  content: "\ebad";
}

.mbsc-icon-ion-person-stalker:before {
  content: "\ebac";
}

.mbsc-icon-ion-person:before {
  content: "\ebae";
}

.mbsc-icon-ion-pie-graph:before {
  content: "\ebaf";
}

.mbsc-icon-ion-pin:before {
  content: "\ebb0";
}

.mbsc-icon-ion-pinpoint:before {
  content: "\ebb1";
}

.mbsc-icon-ion-pizza:before {
  content: "\ebb2";
}

.mbsc-icon-ion-plane:before {
  content: "\ebb4";
}

.mbsc-icon-ion-play:before {
  content: "\ebb5";
}

.mbsc-icon-ion-playstation:before {
  content: "\ebb6";
}

.mbsc-icon-ion-plus-circled:before {
  content: "\ebb3";
}

.mbsc-icon-ion-plus-round:before {
  content: "\ebb7";
}

.mbsc-icon-ion-plus:before {
  content: "\ebb8";
}

.mbsc-icon-ion-pound:before {
  content: "\ebb9";
}

.mbsc-icon-ion-power:before {
  content: "\ebba";
}

.mbsc-icon-ion-pricetag:before {
  content: "\ebbb";
}

.mbsc-icon-ion-pricetags:before {
  content: "\ebbd";
}

.mbsc-icon-ion-printer:before {
  content: "\ebbc";
}

.mbsc-icon-ion-radio-waves:before {
  content: "\ebbf";
}

.mbsc-icon-ion-record:before {
  content: "\ebbe";
}

.mbsc-icon-ion-refresh:before {
  content: "\ebc2";
}

.mbsc-icon-ion-reply-all:before {
  content: "\ebc4";
}

.mbsc-icon-ion-reply:before {
  content: "\ebc0";
}

.mbsc-icon-ion-search:before {
  content: "\ebc1";
}

.mbsc-icon-ion-settings:before {
  content: "\ebc5";
}

.mbsc-icon-ion-share:before {
  content: "\ebc3";
}

.mbsc-icon-ion-shuffle:before {
  content: "\ebc6";
}

.mbsc-icon-ion-skip-backward:before {
  content: "\ebc7";
}

.mbsc-icon-ion-skip-forward:before {
  content: "\ebc8";
}

.mbsc-icon-ion-social-android-outline:before {
  content: "\ebca";
}

.mbsc-icon-ion-social-android:before {
  content: "\ebc9";
}

.mbsc-icon-ion-social-apple-outline:before {
  content: "\ebcd";
}

.mbsc-icon-ion-social-apple:before {
  content: "\ebce";
}

.mbsc-icon-ion-social-bitcoin-outline:before {
  content: "\ebcc";
}

.mbsc-icon-ion-social-bitcoin:before {
  content: "\ebcb";
}

.mbsc-icon-ion-social-buffer-outline:before {
  content: "\ebcf";
}

.mbsc-icon-ion-social-buffer:before {
  content: "\ebd1";
}

.mbsc-icon-ion-social-designernews-outline:before {
  content: "\ebd0";
}

.mbsc-icon-ion-social-designernews:before {
  content: "\ebd3";
}

.mbsc-icon-ion-social-dribbble-outline:before {
  content: "\ebd2";
}

.mbsc-icon-ion-social-dribbble:before {
  content: "\ebd4";
}

.mbsc-icon-ion-social-dropbox-outline:before {
  content: "\ebd5";
}

.mbsc-icon-ion-social-dropbox:before {
  content: "\ebd6";
}

.mbsc-icon-ion-social-facebook-outline:before {
  content: "\ebd7";
}

.mbsc-icon-ion-social-facebook:before {
  content: "\ebd8";
}

.mbsc-icon-ion-social-freebsd-devil:before {
  content: "\ebd9";
}

.mbsc-icon-ion-social-github-outline:before {
  content: "\ebda";
}

.mbsc-icon-ion-social-github:before {
  content: "\ebdb";
}

.mbsc-icon-ion-social-googleplus-outline:before {
  content: "\ebdc";
}

.mbsc-icon-ion-social-googleplus:before {
  content: "\ebdd";
}

.mbsc-icon-ion-social-hackernews-outline:before {
  content: "\ebde";
}

.mbsc-icon-ion-social-hackernews:before {
  content: "\ebdf";
}

.mbsc-icon-ion-social-linkedin-outline:before {
  content: "\ebe0";
}

.mbsc-icon-ion-social-linkedin:before {
  content: "\ebe1";
}

.mbsc-icon-ion-social-pinterest-outline:before {
  content: "\ebe2";
}

.mbsc-icon-ion-social-pinterest:before {
  content: "\ebe4";
}

.mbsc-icon-ion-social-reddit-outline:before {
  content: "\ebe3";
}

.mbsc-icon-ion-social-reddit:before {
  content: "\ebe6";
}

.mbsc-icon-ion-social-rss-outline:before {
  content: "\ebe7";
}

.mbsc-icon-ion-social-rss:before {
  content: "\ebe5";
}

.mbsc-icon-ion-social-skype-outline:before {
  content: "\ebe8";
}

.mbsc-icon-ion-social-skype:before {
  content: "\ebeb";
}

.mbsc-icon-ion-social-tumblr-outline:before {
  content: "\ebea";
}

.mbsc-icon-ion-social-tumblr:before {
  content: "\ebe9";
}

.mbsc-icon-ion-social-tux:before {
  content: "\ebec";
}

.mbsc-icon-ion-social-twitter-outline:before {
  content: "\ebed";
}

.mbsc-icon-ion-social-twitter:before {
  content: "\ebee";
}

.mbsc-icon-ion-social-vimeo-outline:before {
  content: "\ebef";
}

.mbsc-icon-ion-social-vimeo:before {
  content: "\ebf0";
}

.mbsc-icon-ion-social-windows-outline:before {
  content: "\ebf1";
}

.mbsc-icon-ion-social-windows:before {
  content: "\ebf2";
}

.mbsc-icon-ion-social-wordpress-outline:before {
  content: "\ebf4";
}

.mbsc-icon-ion-social-wordpress:before {
  content: "\ebf3";
}

.mbsc-icon-ion-social-yahoo-outline:before {
  content: "\ebf6";
}

.mbsc-icon-ion-social-yahoo:before {
  content: "\ebf5";
}

.mbsc-icon-ion-social-youtube-outline:before {
  content: "\ebf7";
}

.mbsc-icon-ion-social-youtube:before {
  content: "\ebf8";
}

.mbsc-icon-ion-speakerphone:before {
  content: "\ebfa";
}

.mbsc-icon-ion-speedometer:before {
  content: "\ebf9";
}

.mbsc-icon-ion-spoon:before {
  content: "\ebfb";
}

.mbsc-icon-ion-star:before {
  content: "\ebfc";
}

.mbsc-icon-ion-stats-bars:before {
  content: "\ebfd";
}

.mbsc-icon-ion-steam:before {
  content: "\ebfe";
}

.mbsc-icon-ion-stop:before {
  content: "\ebff";
}

.mbsc-icon-ion-thermometer:before {
  content: "\ec00";
}

.mbsc-icon-ion-thumbsdown:before {
  content: "\ec04";
}

.mbsc-icon-ion-thumbsup:before {
  content: "\ec03";
}

.mbsc-icon-ion-trash-a:before {
  content: "\ec05";
}

.mbsc-icon-ion-trash-b:before {
  content: "\ec01";
}

.mbsc-icon-ion-umbrella:before {
  content: "\ec02";
}

.mbsc-icon-ion-unlocked:before {
  content: "\ec07";
}

.mbsc-icon-ion-upload:before {
  content: "\ec08";
}

.mbsc-icon-ion-usb:before {
  content: "\ec09";
}

.mbsc-icon-ion-videocamera:before {
  content: "\ec06";
}

.mbsc-icon-ion-volume-high:before {
  content: "\ec0a";
}

.mbsc-icon-ion-volume-low:before {
  content: "\ec0c";
}

.mbsc-icon-ion-volume-medium:before {
  content: "\ec0b";
}

.mbsc-icon-ion-volume-mute:before {
  content: "\ec0d";
}

.mbsc-icon-ion-waterdrop:before {
  content: "\ec0e";
}

.mbsc-icon-ion-wifi:before {
  content: "\ec0f";
}

.mbsc-icon-ion-wineglass:before {
  content: "\ec10";
}

.mbsc-icon-ion-woman:before {
  content: "\ec11";
}

.mbsc-icon-ion-wrench:before {
  content: "\ec14";
}

.mbsc-icon-ion-xbox:before {
  content: "\ec15";
}

.mbsc-icon-ios-backspace:before {
  content: "\ec16";
}

.mbsc-icon-material-backspace:before {
  content: "\ec12";
}

.mbsc-icon-material-check-box-outline-blank:before {
  content: "\ec13";
}

.mbsc-icon-material-check:before {
  content: "\ec17";
}

.mbsc-icon-material-keyboard-arrow-down:before {
  content: "\ec18";
}

.mbsc-icon-material-keyboard-arrow-left:before {
  content: "\ec1c";
}

.mbsc-icon-material-keyboard-arrow-right:before {
  content: "\ec19";
}

.mbsc-icon-material-keyboard-arrow-up:before {
  content: "\ec1a";
}

.mbsc-icon-material-star-outline:before {
  content: "\ec1d";
}

.mbsc-icon-material-star:before {
  content: "\ec1b";
}

.mbsc-icon {
  display: inline-block;
  vertical-align: middle;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
  -moz-box-flex: 0;
  flex: 0 0 auto;
}

.mbsc-icon>svg {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

:root {
  --mbsc-safe-top: 0;
  --mbsc-safe-right: 0;
  --mbsc-safe-bottom: 0;
  --mbsc-safe-left: 0;
}

@supports (top: constant(safe-area-inset-top)) {
  :root {
    --mbsc-safe-top: constant(safe-area-inset-top);
    --mbsc-safe-right: constant(safe-area-inset-right);
    --mbsc-safe-bottom: constant(safe-area-inset-bottom);
    --mbsc-safe-left: constant(safe-area-inset-left);
  }
}

@supports (top: env(safe-area-inset-top)) {
  :root {
    --mbsc-safe-top: env(safe-area-inset-top);
    --mbsc-safe-right: env(safe-area-inset-right);
    --mbsc-safe-bottom: env(safe-area-inset-bottom);
    --mbsc-safe-left: env(safe-area-inset-left);
  }
}

.mbsc-font {
  font-family:
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
}

.mbsc-reset {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.mbsc-resize {
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

.mbsc-resize,
.mbsc-resize-i {
  position: absolute;
  left: 0;
  top: 0;
}

.mbsc-resize-y {
  width: 200%;
  height: 200%;
}

.mbsc-hidden {
  visibility: hidden;
}

.mbsc-ltr {
  direction: ltr;
}

.mbsc-rtl {
  direction: rtl;
}

.mbsc-ripple {
  background: currentColor;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 1000em;
  pointer-events: none;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.mbsc-flex,
.mbsc-flex-col {
  display: -moz-box;
  display: flex;
}

.mbsc-flex-col {
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
}

.mbsc-flex-1-1 {
  -moz-box-flex: 1;
  flex: 1 1;
}

.mbsc-flex-1-0 {
  -moz-box-flex: 1;
  flex: 1 0 auto;
}

.mbsc-flex-none {
  -moz-box-flex: 0;
  flex: none;
}

@media (-webkit-min-device-pixel-ratio: 2) {

  .mbsc-hb,
  .mbsc-hb:after,
  .mbsc-hb:before {
    border-width: 0.5px !important;
  }
}

.mbsc-ios.mbsc-button {
  padding: 0 0.5em;
  margin: 0.5em 0.25em;
  line-height: 2.25em;
  border-radius: 0.25em;
  transition:
    opacity 0.1s ease-out,
    background-color 0.1s ease-out;
}

.mbsc-ios.mbsc-icon-button {
  padding: 0.5em;
  line-height: normal;
  border-radius: 4em;
}

.mbsc-ios.mbsc-button.mbsc-hover {
  opacity: 0.7;
}

.mbsc-ios.mbsc-button.mbsc-active {
  opacity: 0.5;
}

.mbsc-ios.mbsc-button.mbsc-disabled,
.mbsc-ios.mbsc-button:disabled {
  opacity: 0.2;
}

.mbsc-ios.mbsc-button-outline.mbsc-active {
  opacity: 1;
}

.mbsc-ios.mbsc-ltr.mbsc-button-icon-start {
  padding-right: 0.375em;
}

.mbsc-ios.mbsc-ltr.mbsc-button-icon-end,
.mbsc-ios.mbsc-rtl.mbsc-button-icon-start {
  padding-left: 0.375em;
}

.mbsc-ios.mbsc-rtl.mbsc-button-icon-end {
  padding-right: 0.375em;
}

.mbsc-ios .mbsc-button-group,
.mbsc-ios .mbsc-button-group-block,
.mbsc-ios .mbsc-button-group-justified {
  margin: 0.5em 0.75em;
}

.mbsc-ios .mbsc-button-group-block {
  margin: 0.5em 1em;
}

.mbsc-ios.mbsc-button-standard {
  background: var(--ion-text-color);
  color: var(--ion-color-primary);
}

.mbsc-ios.mbsc-button-flat {
  color: var(--ion-color-primary);
}

.mbsc-ios.mbsc-button-outline {
  border: 1px solid var(--ion-color-primary-tint);
  color: var(--ion-color-primary-tint);
}

.mbsc-ios.mbsc-button-outline.mbsc-active {
  background: var(--ion-color-primary-tint);
  color: #f7f7f7;
}

.mbsc-ios.mbsc-button.mbsc-focus {
  background: rgba(0, 0, 0, 0.05);
}

.mbsc-ios.mbsc-button-primary.mbsc-button-standard {
  background: var(--ion-color-primary);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-secondary.mbsc-button-standard {
  background: var(--ion-color-medium);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-success.mbsc-button-standard {
  background: var(--ion-color-success);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-danger.mbsc-button-standard {
  background: var(--ion-color-danger);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-warning.mbsc-button-standard {
  background: var(--ion-color-warning);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-info.mbsc-button-standard {
  background: var(--ion-color-tertiary);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-dark.mbsc-button-standard {
  background: #47494a;
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-light.mbsc-button-standard {
  background: var(--background-color);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-primary.mbsc-button-flat {
  color: var(--ion-color-primary);
}

.mbsc-ios.mbsc-button-secondary.mbsc-button-flat {
  color: var(--ion-color-medium);
}

.mbsc-ios.mbsc-button-success.mbsc-button-flat {
  color: var(--ion-color-success);
}

.mbsc-ios.mbsc-button-danger.mbsc-button-flat {
  color: var(--ion-color-danger);
}

.mbsc-ios.mbsc-button-warning.mbsc-button-flat {
  color: var(--ion-color-warning);
}

.mbsc-ios.mbsc-button-info.mbsc-button-flat {
  color: var(--ion-color-tertiary);
}

.mbsc-ios.mbsc-button-dark.mbsc-button-flat {
  color: #47494a;
}

.mbsc-ios.mbsc-button-light.mbsc-button-flat {
  color: #ccc;
}

.mbsc-ios.mbsc-button-primary.mbsc-button-outline {
  border-color: var(--ion-color-primary);
  color: var(--ion-color-primary);
}

.mbsc-ios.mbsc-button-primary.mbsc-button-outline.mbsc-active {
  background: var(--ion-color-primary);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-secondary.mbsc-button-outline {
  border-color: var(--ion-color-medium);
  color: var(--ion-color-medium);
}

.mbsc-ios.mbsc-button-secondary.mbsc-button-outline.mbsc-active {
  background: var(--ion-color-medium);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-success.mbsc-button-outline {
  border-color: var(--ion-color-success);
  color: var(--ion-color-success);
}

.mbsc-ios.mbsc-button-success.mbsc-button-outline.mbsc-active {
  background: var(--ion-color-success);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-danger.mbsc-button-outline {
  border-color: var(--ion-color-danger);
  color: var(--ion-color-danger);
}

.mbsc-ios.mbsc-button-danger.mbsc-button-outline.mbsc-active {
  background: var(--ion-color-danger);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-warning.mbsc-button-outline {
  border-color: var(--ion-color-warning);
  color: var(--ion-color-warning);
}

.mbsc-ios.mbsc-button-warning.mbsc-button-outline.mbsc-active {
  background: var(--ion-color-warning);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-info.mbsc-button-outline {
  border-color: var(--ion-color-tertiary);
  color: var(--ion-color-tertiary);
}

.mbsc-ios.mbsc-button-info.mbsc-button-outline.mbsc-active {
  background: var(--ion-color-tertiary);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-dark.mbsc-button-outline {
  border-color: #47494a;
  color: #47494a;
}

.mbsc-ios.mbsc-button-dark.mbsc-button-outline.mbsc-active {
  background: #47494a;
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-button-light.mbsc-button-outline {
  border-color: #bfbfbf;
  color: #bfbfbf;
}

.mbsc-ios.mbsc-button-light.mbsc-button-outline.mbsc-active {
  background: #bfbfbf;
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-standard {
  background: #3b3b3b;
  color: var(--ion-color-primary-shade);
}

.mbsc-ios-dark.mbsc-button-flat {
  color: var(--ion-color-primary-shade);
}

.mbsc-ios-dark.mbsc-button-outline {
  border: 1px solid #ffa519;
  color: #ffa519;
}

.mbsc-ios-dark.mbsc-button-outline.mbsc-active {
  background: #ffa519;
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button.mbsc-focus {
  background: hsla(0, 0%, 100%, 0.05);
}

.mbsc-ios-dark.mbsc-button-primary.mbsc-button-standard {
  background: var(--ion-color-primary);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-secondary.mbsc-button-standard {
  background: var(--ion-color-medium);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-success.mbsc-button-standard {
  background: var(--ion-color-success);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-danger.mbsc-button-standard {
  background: var(--ion-color-danger);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-warning.mbsc-button-standard {
  background: var(--ion-color-warning);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-info.mbsc-button-standard {
  background: var(--ion-color-tertiary);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-dark.mbsc-button-standard {
  background: #47494a;
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-light.mbsc-button-standard {
  background: var(--background-color);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-primary.mbsc-button-flat {
  color: var(--ion-color-primary);
}

.mbsc-ios-dark.mbsc-button-secondary.mbsc-button-flat {
  color: var(--ion-color-medium);
}

.mbsc-ios-dark.mbsc-button-success.mbsc-button-flat {
  color: var(--ion-color-success);
}

.mbsc-ios-dark.mbsc-button-danger.mbsc-button-flat {
  color: var(--ion-color-danger);
}

.mbsc-ios-dark.mbsc-button-warning.mbsc-button-flat {
  color: var(--ion-color-warning);
}

.mbsc-ios-dark.mbsc-button-info.mbsc-button-flat {
  color: var(--ion-color-tertiary);
}

.mbsc-ios-dark.mbsc-button-dark.mbsc-button-flat {
  color: #47494a;
}

.mbsc-ios-dark.mbsc-button-light.mbsc-button-flat {
  color: #ccc;
}

.mbsc-ios-dark.mbsc-button-primary.mbsc-button-outline {
  border-color: var(--ion-color-primary);
  color: var(--ion-color-primary);
}

.mbsc-ios-dark.mbsc-button-primary.mbsc-button-outline.mbsc-active {
  background: var(--ion-color-primary);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-secondary.mbsc-button-outline {
  border-color: var(--ion-color-medium);
  color: var(--ion-color-medium);
}

.mbsc-ios-dark.mbsc-button-secondary.mbsc-button-outline.mbsc-active {
  background: var(--ion-color-medium);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-success.mbsc-button-outline {
  border-color: var(--ion-color-success);
  color: var(--ion-color-success);
}

.mbsc-ios-dark.mbsc-button-success.mbsc-button-outline.mbsc-active {
  background: var(--ion-color-success);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-danger.mbsc-button-outline {
  border-color: var(--ion-color-danger);
  color: var(--ion-color-danger);
}

.mbsc-ios-dark.mbsc-button-danger.mbsc-button-outline.mbsc-active {
  background: var(--ion-color-danger);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-warning.mbsc-button-outline {
  border-color: var(--ion-color-warning);
  color: var(--ion-color-warning);
}

.mbsc-ios-dark.mbsc-button-warning.mbsc-button-outline.mbsc-active {
  background: var(--ion-color-warning);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-info.mbsc-button-outline {
  border-color: var(--ion-color-tertiary);
  color: var(--ion-color-tertiary);
}

.mbsc-ios-dark.mbsc-button-info.mbsc-button-outline.mbsc-active {
  background: var(--ion-color-tertiary);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-dark.mbsc-button-outline {
  border-color: #47494a;
  color: #47494a;
}

.mbsc-ios-dark.mbsc-button-dark.mbsc-button-outline.mbsc-active {
  background: #47494a;
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-button-light.mbsc-button-outline {
  border-color: #bfbfbf;
  color: #bfbfbf;
}

.mbsc-ios-dark.mbsc-button-light.mbsc-button-outline.mbsc-active {
  background: #bfbfbf;
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-button {
  min-width: 4.571429em;
  padding: 0.428572em 1.142858em;
  border-radius: 0.285715em;
  font-size: 0.875em;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.714286em;
  transition:
    box-shadow 0.2s ease-out,
    background-color 0.2s ease-out;
  margin: 0.5em;
}

.mbsc-material.mbsc-button-outline {
  border: 1px solid;
}

.mbsc-material.mbsc-button .mbsc-icon {
  font-size: 1.142858em;
}

.mbsc-material.mbsc-icon-button {
  min-width: 0;
  padding: 0.5em;
  border-radius: 2em;
  font-size: 1em;
  line-height: normal;
}

.mbsc-material.mbsc-icon-button .mbsc-icon {
  width: 1.5em;
  height: 1.5em;
  font-size: 1em;
}

.mbsc-material.mbsc-button.mbsc-disabled,
.mbsc-material.mbsc-button:disabled {
  opacity: 0.3;
}

.mbsc-material.mbsc-ltr.mbsc-button-icon-start {
  padding-right: 0.5em;
  margin-left: -0.25em;
}

.mbsc-material.mbsc-ltr.mbsc-button-icon-end,
.mbsc-material.mbsc-rtl.mbsc-button-icon-start {
  padding-left: 0.5em;
  margin-right: -0.25em;
}

.mbsc-material.mbsc-rtl.mbsc-button-icon-end {
  padding-right: 0.5em;
  margin-left: -0.25em;
}

.mbsc-material .mbsc-button-group,
.mbsc-material .mbsc-button-group-justified {
  margin: 0.5em;
}

.mbsc-material .mbsc-button-group-block {
  margin: 0.5em 1em;
}

.mbsc-material.mbsc-button-standard {
  background: #cfcfcf;
  color: var(--ion-text-color);
  box-shadow:
    0 3px 1px -2px rgba(0, 0, 0, 0.2),
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.mbsc-material.mbsc-button-standard.mbsc-hover {
  box-shadow:
    0 2px 4px -1px rgba(0, 0, 0, 0.2),
    0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.mbsc-material.mbsc-button-standard.mbsc-active,
.mbsc-material.mbsc-button-standard.mbsc-focus {
  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);
}

.mbsc-material.mbsc-button-flat,
.mbsc-material.mbsc-button-outline {
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-button-flat.mbsc-active,
.mbsc-material.mbsc-button-flat.mbsc-hover,
.mbsc-material.mbsc-button-outline.mbsc-active,
.mbsc-material.mbsc-button-outline.mbsc-hover {
  background: rgba(0, 0, 0, 0.2);
}

.mbsc-material.mbsc-button-flat.mbsc-focus,
.mbsc-material.mbsc-button-outline.mbsc-focus {
  background: rgba(0, 0, 0, 0.3);
}

.mbsc-material.mbsc-button-outline {
  border-color: var(--ion-text-color);
}

.mbsc-material.mbsc-button-primary.mbsc-button-standard {
  background: var(--ion-color-primary);
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-button-secondary.mbsc-button-standard {
  background: var(--ion-color-medium);
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-button-success.mbsc-button-standard {
  background: var(--ion-color-success);
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-button-danger.mbsc-button-standard {
  background: var(--ion-color-danger);
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-button-warning.mbsc-button-standard {
  background: var(--ion-color-warning);
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-button-info.mbsc-button-standard {
  background: var(--ion-color-tertiary);
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-button-dark.mbsc-button-standard {
  background: #47494a;
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-button-light.mbsc-button-standard {
  background: var(--background-color);
  color: #303030;
}

.mbsc-material.mbsc-button-primary.mbsc-button-flat {
  color: var(--ion-color-primary);
}

.mbsc-material.mbsc-button-primary.mbsc-button-flat.mbsc-active,
.mbsc-material.mbsc-button-primary.mbsc-button-flat.mbsc-hover {
  background: rgba(63, 151, 246, 0.2);
}

.mbsc-material.mbsc-button-primary.mbsc-button-flat.mbsc-focus {
  background: rgba(63, 151, 246, 0.3);
}

.mbsc-material.mbsc-button-secondary.mbsc-button-flat {
  color: var(--ion-color-medium);
}

.mbsc-material.mbsc-button-secondary.mbsc-button-flat.mbsc-active,
.mbsc-material.mbsc-button-secondary.mbsc-button-flat.mbsc-hover {
  background: rgba(144, 151, 158, 0.2);
}

.mbsc-material.mbsc-button-secondary.mbsc-button-flat.mbsc-focus {
  background: rgba(144, 151, 158, 0.3);
}

.mbsc-material.mbsc-button-success.mbsc-button-flat {
  color: var(--ion-color-success);
}

.mbsc-material.mbsc-button-success.mbsc-button-flat.mbsc-active,
.mbsc-material.mbsc-button-success.mbsc-button-flat.mbsc-hover {
  background: rgba(67, 190, 95, 0.2);
}

.mbsc-material.mbsc-button-success.mbsc-button-flat.mbsc-focus {
  background: rgba(67, 190, 95, 0.3);
}

.mbsc-material.mbsc-button-danger.mbsc-button-flat {
  color: var(--ion-color-danger);
}

.mbsc-material.mbsc-button-danger.mbsc-button-flat.mbsc-active,
.mbsc-material.mbsc-button-danger.mbsc-button-flat.mbsc-hover {
  background: rgba(245, 80, 78, 0.2);
}

.mbsc-material.mbsc-button-danger.mbsc-button-flat.mbsc-focus {
  background: rgba(245, 80, 78, 0.3);
}

.mbsc-material.mbsc-button-warning.mbsc-button-flat {
  color: var(--ion-color-warning);
}

.mbsc-material.mbsc-button-warning.mbsc-button-flat.mbsc-active,
.mbsc-material.mbsc-button-warning.mbsc-button-flat.mbsc-hover {
  background: rgba(248, 176, 66, 0.2);
}

.mbsc-material.mbsc-button-warning.mbsc-button-flat.mbsc-focus {
  background: rgba(248, 176, 66, 0.3);
}

.mbsc-material.mbsc-button-info.mbsc-button-flat {
  color: var(--ion-color-tertiary);
}

.mbsc-material.mbsc-button-info.mbsc-button-flat.mbsc-active,
.mbsc-material.mbsc-button-info.mbsc-button-flat.mbsc-hover {
  background: rgba(91, 183, 197, 0.2);
}

.mbsc-material.mbsc-button-info.mbsc-button-flat.mbsc-focus {
  background: rgba(91, 183, 197, 0.3);
}

.mbsc-material.mbsc-button-dark.mbsc-button-flat {
  color: #47494a;
}

.mbsc-material.mbsc-button-dark.mbsc-button-flat.mbsc-active,
.mbsc-material.mbsc-button-dark.mbsc-button-flat.mbsc-hover {
  background: rgba(71, 73, 74, 0.2);
}

.mbsc-material.mbsc-button-dark.mbsc-button-flat.mbsc-focus {
  background: rgba(71, 73, 74, 0.3);
}

.mbsc-material.mbsc-button-light.mbsc-button-flat {
  color: #ccc;
}

.mbsc-material.mbsc-button-light.mbsc-button-flat.mbsc-active,
.mbsc-material.mbsc-button-light.mbsc-button-flat.mbsc-hover {
  background: hsla(0, 0%, 100%, 0.2);
}

.mbsc-material.mbsc-button-light.mbsc-button-flat.mbsc-focus {
  background: hsla(0, 0%, 100%, 0.3);
}

.mbsc-material.mbsc-button-primary.mbsc-button-outline {
  border-color: var(--ion-color-primary);
  color: var(--ion-color-primary);
}

.mbsc-material.mbsc-button-primary.mbsc-button-outline.mbsc-active,
.mbsc-material.mbsc-button-primary.mbsc-button-outline.mbsc-hover {
  background: rgba(63, 151, 246, 0.2);
}

.mbsc-material.mbsc-button-primary.mbsc-button-outline.mbsc-focus {
  background: rgba(63, 151, 246, 0.3);
}

.mbsc-material.mbsc-button-secondary.mbsc-button-outline {
  border-color: var(--ion-color-medium);
  color: var(--ion-color-medium);
}

.mbsc-material.mbsc-button-secondary.mbsc-button-outline.mbsc-active,
.mbsc-material.mbsc-button-secondary.mbsc-button-outline.mbsc-hover {
  background: rgba(144, 151, 158, 0.2);
}

.mbsc-material.mbsc-button-secondary.mbsc-button-outline.mbsc-focus {
  background: rgba(144, 151, 158, 0.3);
}

.mbsc-material.mbsc-button-success.mbsc-button-outline {
  border-color: var(--ion-color-success);
  color: var(--ion-color-success);
}

.mbsc-material.mbsc-button-success.mbsc-button-outline.mbsc-active,
.mbsc-material.mbsc-button-success.mbsc-button-outline.mbsc-hover {
  background: rgba(67, 190, 95, 0.2);
}

.mbsc-material.mbsc-button-success.mbsc-button-outline.mbsc-focus {
  background: rgba(67, 190, 95, 0.3);
}

.mbsc-material.mbsc-button-danger.mbsc-button-outline {
  border-color: var(--ion-color-danger);
  color: var(--ion-color-danger);
}

.mbsc-material.mbsc-button-danger.mbsc-button-outline.mbsc-active,
.mbsc-material.mbsc-button-danger.mbsc-button-outline.mbsc-hover {
  background: rgba(245, 80, 78, 0.2);
}

.mbsc-material.mbsc-button-danger.mbsc-button-outline.mbsc-focus {
  background: rgba(245, 80, 78, 0.3);
}

.mbsc-material.mbsc-button-warning.mbsc-button-outline {
  border-color: var(--ion-color-warning);
  color: var(--ion-color-warning);
}

.mbsc-material.mbsc-button-warning.mbsc-button-outline.mbsc-active,
.mbsc-material.mbsc-button-warning.mbsc-button-outline.mbsc-hover {
  background: rgba(248, 176, 66, 0.2);
}

.mbsc-material.mbsc-button-warning.mbsc-button-outline.mbsc-focus {
  background: rgba(248, 176, 66, 0.3);
}

.mbsc-material.mbsc-button-info.mbsc-button-outline {
  border-color: var(--ion-color-tertiary);
  color: var(--ion-color-tertiary);
}

.mbsc-material.mbsc-button-info.mbsc-button-outline.mbsc-active,
.mbsc-material.mbsc-button-info.mbsc-button-outline.mbsc-hover {
  background: rgba(91, 183, 197, 0.2);
}

.mbsc-material.mbsc-button-info.mbsc-button-outline.mbsc-focus {
  background: rgba(91, 183, 197, 0.3);
}

.mbsc-material.mbsc-button-dark.mbsc-button-outline {
  border-color: #47494a;
  color: #47494a;
}

.mbsc-material.mbsc-button-dark.mbsc-button-outline.mbsc-active,
.mbsc-material.mbsc-button-dark.mbsc-button-outline.mbsc-hover {
  background: rgba(71, 73, 74, 0.2);
}

.mbsc-material.mbsc-button-dark.mbsc-button-outline.mbsc-focus {
  background: rgba(71, 73, 74, 0.3);
}

.mbsc-material.mbsc-button-light.mbsc-button-outline {
  border-color: #ccc;
  color: #ccc;
}

.mbsc-material.mbsc-button-light.mbsc-button-outline.mbsc-active,
.mbsc-material.mbsc-button-light.mbsc-button-outline.mbsc-hover {
  background: hsla(0, 0%, 100%, 0.2);
}

.mbsc-material.mbsc-button-light.mbsc-button-outline.mbsc-focus {
  background: hsla(0, 0%, 100%, 0.3);
}

.mbsc-material-dark.mbsc-button-standard {
  background: #2b2b2b;
  color: var(--ion-text-color);
  box-shadow:
    0 3px 1px -2px rgba(0, 0, 0, 0.2),
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.mbsc-material-dark.mbsc-button-standard.mbsc-hover {
  box-shadow:
    0 2px 4px -1px rgba(0, 0, 0, 0.2),
    0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.mbsc-material-dark.mbsc-button-standard.mbsc-active,
.mbsc-material-dark.mbsc-button-standard.mbsc-focus {
  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);
}

.mbsc-material-dark.mbsc-button-flat,
.mbsc-material-dark.mbsc-button-outline {
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-button-flat.mbsc-active,
.mbsc-material-dark.mbsc-button-flat.mbsc-hover,
.mbsc-material-dark.mbsc-button-outline.mbsc-active,
.mbsc-material-dark.mbsc-button-outline.mbsc-hover {
  background: hsla(0, 0%, 100%, 0.2);
}

.mbsc-material-dark.mbsc-button-flat.mbsc-focus,
.mbsc-material-dark.mbsc-button-outline.mbsc-focus {
  background: hsla(0, 0%, 100%, 0.3);
}

.mbsc-material-dark.mbsc-button-outline {
  border-color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-button-primary.mbsc-button-standard {
  background: var(--ion-color-primary);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-button-secondary.mbsc-button-standard {
  background: var(--ion-color-medium);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-button-success.mbsc-button-standard {
  background: var(--ion-color-success);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-button-danger.mbsc-button-standard {
  background: var(--ion-color-danger);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-button-warning.mbsc-button-standard {
  background: var(--ion-color-warning);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-button-info.mbsc-button-standard {
  background: var(--ion-color-tertiary);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-button-dark.mbsc-button-standard {
  background: #47494a;
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-button-light.mbsc-button-standard {
  background: var(--background-color);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-button-primary.mbsc-button-flat {
  color: var(--ion-color-primary);
}

.mbsc-material-dark.mbsc-button-primary.mbsc-button-flat.mbsc-active,
.mbsc-material-dark.mbsc-button-primary.mbsc-button-flat.mbsc-hover {
  background: rgba(63, 151, 246, 0.2);
}

.mbsc-material-dark.mbsc-button-primary.mbsc-button-flat.mbsc-focus {
  background: rgba(63, 151, 246, 0.3);
}

.mbsc-material-dark.mbsc-button-secondary.mbsc-button-flat {
  color: var(--ion-color-medium);
}

.mbsc-material-dark.mbsc-button-secondary.mbsc-button-flat.mbsc-active,
.mbsc-material-dark.mbsc-button-secondary.mbsc-button-flat.mbsc-hover {
  background: rgba(144, 151, 158, 0.2);
}

.mbsc-material-dark.mbsc-button-secondary.mbsc-button-flat.mbsc-focus {
  background: rgba(144, 151, 158, 0.3);
}

.mbsc-material-dark.mbsc-button-success.mbsc-button-flat {
  color: var(--ion-color-success);
}

.mbsc-material-dark.mbsc-button-success.mbsc-button-flat.mbsc-active,
.mbsc-material-dark.mbsc-button-success.mbsc-button-flat.mbsc-hover {
  background: rgba(67, 190, 95, 0.2);
}

.mbsc-material-dark.mbsc-button-success.mbsc-button-flat.mbsc-focus {
  background: rgba(67, 190, 95, 0.3);
}

.mbsc-material-dark.mbsc-button-danger.mbsc-button-flat {
  color: var(--ion-color-danger);
}

.mbsc-material-dark.mbsc-button-danger.mbsc-button-flat.mbsc-active,
.mbsc-material-dark.mbsc-button-danger.mbsc-button-flat.mbsc-hover {
  background: rgba(245, 80, 78, 0.2);
}

.mbsc-material-dark.mbsc-button-danger.mbsc-button-flat.mbsc-focus {
  background: rgba(245, 80, 78, 0.3);
}

.mbsc-material-dark.mbsc-button-warning.mbsc-button-flat {
  color: var(--ion-color-warning);
}

.mbsc-material-dark.mbsc-button-warning.mbsc-button-flat.mbsc-active,
.mbsc-material-dark.mbsc-button-warning.mbsc-button-flat.mbsc-hover {
  background: rgba(248, 176, 66, 0.2);
}

.mbsc-material-dark.mbsc-button-warning.mbsc-button-flat.mbsc-focus {
  background: rgba(248, 176, 66, 0.3);
}

.mbsc-material-dark.mbsc-button-info.mbsc-button-flat {
  color: var(--ion-color-tertiary);
}

.mbsc-material-dark.mbsc-button-info.mbsc-button-flat.mbsc-active,
.mbsc-material-dark.mbsc-button-info.mbsc-button-flat.mbsc-hover {
  background: rgba(91, 183, 197, 0.2);
}

.mbsc-material-dark.mbsc-button-info.mbsc-button-flat.mbsc-focus {
  background: rgba(91, 183, 197, 0.3);
}

.mbsc-material-dark.mbsc-button-dark.mbsc-button-flat {
  color: #47494a;
}

.mbsc-material-dark.mbsc-button-dark.mbsc-button-flat.mbsc-active,
.mbsc-material-dark.mbsc-button-dark.mbsc-button-flat.mbsc-hover {
  background: rgba(71, 73, 74, 0.2);
}

.mbsc-material-dark.mbsc-button-dark.mbsc-button-flat.mbsc-focus {
  background: rgba(71, 73, 74, 0.3);
}

.mbsc-material-dark.mbsc-button-light.mbsc-button-flat {
  color: #ccc;
}

.mbsc-material-dark.mbsc-button-light.mbsc-button-flat.mbsc-active,
.mbsc-material-dark.mbsc-button-light.mbsc-button-flat.mbsc-hover {
  background: hsla(0, 0%, 100%, 0.2);
}

.mbsc-material-dark.mbsc-button-light.mbsc-button-flat.mbsc-focus {
  background: hsla(0, 0%, 100%, 0.3);
}

.mbsc-material-dark.mbsc-button-primary.mbsc-button-outline {
  border-color: var(--ion-color-primary);
  color: var(--ion-color-primary);
}

.mbsc-material-dark.mbsc-button-primary.mbsc-button-outline.mbsc-active,
.mbsc-material-dark.mbsc-button-primary.mbsc-button-outline.mbsc-hover {
  background: rgba(63, 151, 246, 0.2);
}

.mbsc-material-dark.mbsc-button-primary.mbsc-button-outline.mbsc-focus {
  background: rgba(63, 151, 246, 0.3);
}

.mbsc-material-dark.mbsc-button-secondary.mbsc-button-outline {
  border-color: var(--ion-color-medium);
  color: var(--ion-color-medium);
}

.mbsc-material-dark.mbsc-button-secondary.mbsc-button-outline.mbsc-active,
.mbsc-material-dark.mbsc-button-secondary.mbsc-button-outline.mbsc-hover {
  background: rgba(144, 151, 158, 0.2);
}

.mbsc-material-dark.mbsc-button-secondary.mbsc-button-outline.mbsc-focus {
  background: rgba(144, 151, 158, 0.3);
}

.mbsc-material-dark.mbsc-button-success.mbsc-button-outline {
  border-color: var(--ion-color-success);
  color: var(--ion-color-success);
}

.mbsc-material-dark.mbsc-button-success.mbsc-button-outline.mbsc-active,
.mbsc-material-dark.mbsc-button-success.mbsc-button-outline.mbsc-hover {
  background: rgba(67, 190, 95, 0.2);
}

.mbsc-material-dark.mbsc-button-success.mbsc-button-outline.mbsc-focus {
  background: rgba(67, 190, 95, 0.3);
}

.mbsc-material-dark.mbsc-button-danger.mbsc-button-outline {
  border-color: var(--ion-color-danger);
  color: var(--ion-color-danger);
}

.mbsc-material-dark.mbsc-button-danger.mbsc-button-outline.mbsc-active,
.mbsc-material-dark.mbsc-button-danger.mbsc-button-outline.mbsc-hover {
  background: rgba(245, 80, 78, 0.2);
}

.mbsc-material-dark.mbsc-button-danger.mbsc-button-outline.mbsc-focus {
  background: rgba(245, 80, 78, 0.3);
}

.mbsc-material-dark.mbsc-button-warning.mbsc-button-outline {
  border-color: var(--ion-color-warning);
  color: var(--ion-color-warning);
}

.mbsc-material-dark.mbsc-button-warning.mbsc-button-outline.mbsc-active,
.mbsc-material-dark.mbsc-button-warning.mbsc-button-outline.mbsc-hover {
  background: rgba(248, 176, 66, 0.2);
}

.mbsc-material-dark.mbsc-button-warning.mbsc-button-outline.mbsc-focus {
  background: rgba(248, 176, 66, 0.3);
}

.mbsc-material-dark.mbsc-button-info.mbsc-button-outline {
  border-color: var(--ion-color-tertiary);
  color: var(--ion-color-tertiary);
}

.mbsc-material-dark.mbsc-button-info.mbsc-button-outline.mbsc-active,
.mbsc-material-dark.mbsc-button-info.mbsc-button-outline.mbsc-hover {
  background: rgba(91, 183, 197, 0.2);
}

.mbsc-material-dark.mbsc-button-info.mbsc-button-outline.mbsc-focus {
  background: rgba(91, 183, 197, 0.3);
}

.mbsc-material-dark.mbsc-button-dark.mbsc-button-outline {
  border-color: #47494a;
  color: #47494a;
}

.mbsc-material-dark.mbsc-button-dark.mbsc-button-outline.mbsc-active,
.mbsc-material-dark.mbsc-button-dark.mbsc-button-outline.mbsc-hover {
  background: rgba(71, 73, 74, 0.2);
}

.mbsc-material-dark.mbsc-button-dark.mbsc-button-outline.mbsc-focus {
  background: rgba(71, 73, 74, 0.3);
}

.mbsc-material-dark.mbsc-button-light.mbsc-button-outline {
  border-color: #ccc;
  color: #ccc;
}

.mbsc-material-dark.mbsc-button-light.mbsc-button-outline.mbsc-active,
.mbsc-material-dark.mbsc-button-light.mbsc-button-outline.mbsc-hover {
  background: hsla(0, 0%, 100%, 0.2);
}

.mbsc-material-dark.mbsc-button-light.mbsc-button-outline.mbsc-focus {
  background: hsla(0, 0%, 100%, 0.3);
}

.mbsc-button {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  font-size: 1em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  cursor: pointer;
}

.mbsc-button.mbsc-disabled,
.mbsc-button:disabled {
  cursor: not-allowed;
}

.mbsc-button:focus {
  outline: 0;
}

.mbsc-button::-moz-focus-inner {
  border: 0;
}

.mbsc-icon-button {
  width: 2.5em;
  height: 2.5em;
  padding: 0.5em;
  -moz-box-flex: 0;
  flex: 0 0 auto;
}

.mbsc-button-icon>*,
.mbsc-button-icon>*>* {
  height: 100%;
}

.mbsc-button-icon-end {
  -moz-box-ordinal-group: 2;
  order: 1;
}

.mbsc-button-group,
.mbsc-button-group-block,
.mbsc-button-group-justified {
  border: 1px solid transparent;
}

.mbsc-button-block,
.mbsc-button-group-block .mbsc-button {
  display: block;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mbsc-button-group-justified,
.mbsc-button-group-justified mbsc-button {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
}

.mbsc-button-group-justified .mbsc-button,
.mbsc-button-group-justified mbsc-button {
  -moz-box-flex: 1;
  flex: 1 auto;
}

.mbsc-ios.mbsc-popup-wrapper-bottom-full {
  padding-top: 1em;
}

.mbsc-ios.mbsc-popup-wrapper-top-full {
  padding-bottom: 1em;
}

.mbsc-ios.mbsc-popup-top {
  border-bottom: 1px solid;
}

.mbsc-ios.mbsc-popup-bottom {
  border-top: 1px solid;
}

.mbsc-ios.mbsc-popup-body-center {
  border-radius: 0.9375em;
}

.mbsc-ios.mbsc-popup-body-bottom-full {
  border-radius: 0.75em 0.75em 0 0;
}

.mbsc-ios.mbsc-popup-body-top-full {
  border-radius: 0 0 0.75em 0.75em;
}

.mbsc-ios.mbsc-popup-body-anchored {
  border-radius: 0.9375em;
}

.mbsc-ios.mbsc-popup-arrow {
  border-radius: 0 0.375em;
}

.mbsc-ios.mbsc-popup-header {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  line-height: 1.25em;
  padding: 0.75em 4.375em;
  font-weight: 700;
  text-align: center;
}

.mbsc-ios.mbsc-popup-header-center,
.mbsc-ios.mbsc-popup-header-no-buttons {
  position: relative;
  border-bottom: 1px solid;
}

.mbsc-ios.mbsc-popup-header-center {
  padding: 0.75em 0.5em;
}

.mbsc-ios.mbsc-popup-bottom-full .mbsc-popup-header,
.mbsc-ios.mbsc-popup-top-full .mbsc-popup-header {
  padding: 1.125em 4.375em;
}

.mbsc-ios.mbsc-popup-buttons {
  -moz-box-ordinal-group: 0;
  order: -1;
  border-bottom: 1px solid;
}

.mbsc-ios.mbsc-popup-buttons.mbsc-ltr {
  text-align: right;
}

.mbsc-ios.mbsc-popup-buttons.mbsc-rtl {
  text-align: left;
}

.mbsc-ios.mbsc-popup-button.mbsc-font {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  z-index: 2;
}

.mbsc-ios.mbsc-popup-button-primary {
  font-weight: 700;
}

.mbsc-ios.mbsc-popup-button-close.mbsc-ltr {
  float: left;
}

.mbsc-ios.mbsc-popup-button-close.mbsc-rtl {
  float: right;
}

.mbsc-ios.mbsc-popup-buttons-anchored,
.mbsc-ios.mbsc-popup-buttons-bottom,
.mbsc-ios.mbsc-popup-buttons-top {
  padding: 0 0.25em;
}

.mbsc-ios.mbsc-popup-buttons-bottom-full,
.mbsc-ios.mbsc-popup-buttons-top-full {
  padding: 0.375em 0.25em;
}

.mbsc-ios.mbsc-popup-buttons-flex {
  -moz-box-ordinal-group: 1;
  order: 0;
  border: 0;
  padding: 0;
  display: -moz-box;
  display: flex;
}

.mbsc-ios.mbsc-popup-buttons-flex.mbsc-popup-buttons {
  background: none;
}

.mbsc-ios.mbsc-popup-button-flex.mbsc-font {
  -moz-box-flex: 1;
  flex: 1 1 100%;
  display: block;
}

.mbsc-ios.mbsc-popup-button-flex.mbsc-font.mbsc-button {
  opacity: 1;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.mbsc-ios.mbsc-popup-button-flex.mbsc-font.mbsc-button-flat {
  background: none;
  border-top: 1px solid;
  border-radius: 0;
  margin: 0;
  line-height: 2.75em;
}

.mbsc-ios.mbsc-popup-button-flex.mbsc-button-flat.mbsc-ltr {
  border-right-style: solid;
  border-right-width: 1px;
}

.mbsc-ios.mbsc-popup-button-flex.mbsc-button-flat.mbsc-rtl {
  border-left-style: solid;
  border-left-width: 1px;
}

.mbsc-ios.mbsc-popup-button-flex.mbsc-button-flat:last-child {
  border-left: 0;
  border-right: 0;
}

.mbsc-ios.mbsc-popup-body-round {
  border-radius: 0.9375em;
}

.mbsc-ios.mbsc-popup-pointer .mbsc-popup-body-round {
  border-radius: 0.5em;
}

.mbsc-ios.mbsc-popup-round .mbsc-popup {
  border: 0;
}

.mbsc-ios.mbsc-popup-round .mbsc-popup-body-bottom-full {
  border-radius: 0.75em 0.75em 0 0;
}

.mbsc-ios.mbsc-popup-round .mbsc-popup-body-top-full {
  border-radius: 0 0 0.75em 0.75em;
}

.mbsc-ios.mbsc-popup-arrow {
  background: #f2f2f7;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
}

.mbsc-ios.mbsc-popup-bottom,
.mbsc-ios.mbsc-popup-top {
  border-color: #ccc;
}

.mbsc-ios.mbsc-popup-body {
  background: #f2f2f7;
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-popup-body-anchored,
.mbsc-ios.mbsc-popup-body-center,
.mbsc-ios.mbsc-popup-body-round {
  box-shadow:
    0 11px 15px -7px rgba(0, 0, 0, 0.2),
    0 24px 38px 3px rgba(0, 0, 0, 0.14),
    0 9px 46px 8px rgba(0, 0, 0, 0.12);
}

.mbsc-ios.mbsc-popup-buttons,
.mbsc-ios.mbsc-popup-header-center,
.mbsc-ios.mbsc-popup-header-no-buttons {
  border-color: #ccc;
}

.mbsc-ios.mbsc-popup-buttons-bottom,
.mbsc-ios.mbsc-popup-buttons-top {
  background: #f7f7f7;
}

.mbsc-ios.mbsc-popup-button-flex.mbsc-button-flat.mbsc-font {
  border-color: #ccc;
}

.mbsc-ios.mbsc-popup-button-flex.mbsc-font.mbsc-focus,
.mbsc-ios.mbsc-popup-button-flex.mbsc-font.mbsc-hover {
  background: #eaeaea;
}

.mbsc-ios.mbsc-popup-button-flex.mbsc-font.mbsc-active {
  background: #ccc;
}

.mbsc-ios.mbsc-popup-button-flex.mbsc-button.mbsc-disabled {
  color: rgba(0, 122, 255, 0.2);
}

.mbsc-ios-dark.mbsc-popup-arrow {
  background: var(--ion-color-base);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
}

.mbsc-ios-dark.mbsc-popup-bottom,
.mbsc-ios-dark.mbsc-popup-top {
  border-color: #333;
}

.mbsc-ios-dark.mbsc-popup-body {
  background: var(--ion-color-base);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-popup-body-anchored,
.mbsc-ios-dark.mbsc-popup-body-center,
.mbsc-ios-dark.mbsc-popup-body-round {
  box-shadow:
    0 11px 15px -7px rgba(0, 0, 0, 0.2),
    0 24px 38px 3px rgba(0, 0, 0, 0.14),
    0 9px 46px 8px rgba(0, 0, 0, 0.12);
}

.mbsc-ios-dark.mbsc-popup-buttons,
.mbsc-ios-dark.mbsc-popup-header-center,
.mbsc-ios-dark.mbsc-popup-header-no-buttons {
  border-color: #333;
}

.mbsc-ios-dark.mbsc-popup-buttons-anchored,
.mbsc-ios-dark.mbsc-popup-buttons-bottom,
.mbsc-ios-dark.mbsc-popup-buttons-top {
  background: #292929;
}

.mbsc-ios-dark.mbsc-popup-button-flex.mbsc-button-flat.mbsc-font {
  border-color: #333;
}

.mbsc-ios-dark.mbsc-popup-button-flex.mbsc-font.mbsc-focus,
.mbsc-ios-dark.mbsc-popup-button-flex.mbsc-font.mbsc-hover {
  background: #242424;
}

.mbsc-ios-dark.mbsc-popup-button-flex.mbsc-font.mbsc-active {
  background: #333;
}

.mbsc-ios-dark.mbsc-popup-button-flex.mbsc-button.mbsc-disabled {
  color: rgba(255, 159, 10, 0.2);
}

.mbsc-material.mbsc-popup-body-anchored,
.mbsc-material.mbsc-popup-body-center,
.mbsc-material.mbsc-popup-body-round {
  border-radius: 0.25em;
}

.mbsc-material.mbsc-popup-header {
  font-size: 1.25em;
  font-weight: 500;
  padding: 0.8em 0.8em 0;
  line-height: 1.4em;
}

.mbsc-material.mbsc-popup-buttons {
  padding: 0.5em;
}

.mbsc-material.mbsc-popup-buttons.mbsc-ltr,
.mbsc-material.mbsc-popup-buttons.mbsc-rtl {
  text-align: right;
}

.mbsc-material.mbsc-popup-button.mbsc-button-flat {
  margin-left: 0;
  margin-right: 0;
}

.mbsc-material.mbsc-popup-button.mbsc-font {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 0.9375em;
}

.mbsc-material.mbsc-popup-round .mbsc-popup-body-bottom-full {
  border-radius: 0.25em 0.25em 0 0;
}

.mbsc-material.mbsc-popup-round .mbsc-popup-body-top-full {
  border-radius: 0 0 0.25em 0.25em;
}

.mbsc-material.mbsc-popup-body {
  background: var(--background-color);
  box-shadow:
    0 11px 15px -7px rgba(0, 0, 0, 0.2),
    0 24px 38px 3px rgba(0, 0, 0, 0.14),
    0 9px 46px 8px rgba(0, 0, 0, 0.12);
  color: #303030;
}

.mbsc-material.mbsc-popup-arrow {
  background: var(--background-color);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
}

.mbsc-material.mbsc-popup-button.mbsc-font {
  color: #1a73e8;
}

.mbsc-material-dark.mbsc-popup-body {
  background: #303030;
  box-shadow:
    0 11px 15px -7px rgba(0, 0, 0, 0.2),
    0 24px 38px 3px rgba(0, 0, 0, 0.14),
    0 9px 46px 8px rgba(0, 0, 0, 0.12);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-popup-arrow {
  background: #303030;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
}

.mbsc-material-dark.mbsc-popup-button.mbsc-font {
  color: var(--ion-color-primary-tint);
}

@-webkit-keyframes mbsc-fade-in {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mbsc-fade-in {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes mbsc-fade-out {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mbsc-fade-out {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes mbsc-pop-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes mbsc-pop-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes mbsc-pop-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes mbsc-pop-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@-webkit-keyframes mbsc-slide-up-in {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes mbsc-slide-up-in {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes mbsc-slide-up-out {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes mbsc-slide-up-out {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@-webkit-keyframes mbsc-slide-down-in {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes mbsc-slide-down-in {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes mbsc-slide-down-out {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes mbsc-slide-down-out {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.mbsc-popup-open-ios {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
}

.mbsc-popup-ctx {
  position: relative;
  --mbsc-safe-top: 0;
  --mbsc-safe-right: 0;
  --mbsc-safe-bottom: 0;
  --mbsc-safe-left: 0;
}

.mbsc-popup-limits {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.mbsc-popup-limits-anchored,
.mbsc-popup-limits-center {
  margin: 1em;
}

.mbsc-popup-wrapper {
  z-index: 99998;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mbsc-popup,
.mbsc-popup-wrapper {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mbsc-popup-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  border: 0 solid transparent;
}

.mbsc-popup-wrapper-ctx {
  position: absolute;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mbsc-popup-wrapper-center {
  padding: 1em;
  -moz-box-align: center;
  align-items: center;
  border-width: var(--mbsc-safe-top) var(--mbsc-safe-right) var(--mbsc-safe-bottom) var(--mbsc-safe-left);
}

.mbsc-popup-wrapper-top {
  -moz-box-align: start;
  align-items: flex-start;
  border-bottom: var(--mbsc-safe-bottom) solid transparent;
}

.mbsc-popup-wrapper-bottom {
  -moz-box-align: end;
  align-items: flex-end;
  border-top-width: var(--mbsc-safe-top);
}

.mbsc-popup-wrapper-anchored {
  border-left-width: var(--mbsc-safe-left);
  border-bottom-width: var(--mbsc-safe-bottom);
  border-right-width: var(--mbsc-safe-right);
  border-top-width: 0;
}

.mbsc-popup-hidden {
  opacity: 0;
}

.mbsc-popup-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: -10em;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.mbsc-popup-overlay-in {
  opacity: 1;
  -webkit-animation: mbsc-fade-in 0.15s cubic-bezier(0, 0, 0.2, 1);
  animation: mbsc-fade-in 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.mbsc-popup-overlay-out {
  opacity: 0;
  -webkit-animation: mbsc-fade-out 75ms cubic-bezier(0.4, 0, 1, 1);
  animation: mbsc-fade-out 75ms cubic-bezier(0.4, 0, 1, 1);
}

.mbsc-popup {
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  max-height: 100%;
  min-width: 12em;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  text-shadow: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mbsc-popup-center {
  min-width: 16em;
}

.mbsc-popup-bottom {
  width: 100%;
  bottom: 0;
}

.mbsc-popup-top {
  width: 100%;
  top: 0;
}

.mbsc-popup-anchored {
  position: absolute;
}

.mbsc-popup-anchored-left {
  margin-left: -1em;
}

.mbsc-popup-anchored-right {
  margin-left: 1em;
}

.mbsc-popup-arrow-wrapper {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.mbsc-popup-arrow-wrapper-bottom,
.mbsc-popup-arrow-wrapper-top {
  left: 0;
  right: 0;
  height: 2em;
}

.mbsc-popup-arrow-wrapper-left,
.mbsc-popup-arrow-wrapper-right {
  top: 0;
  bottom: 0;
  width: 2em;
}

.mbsc-popup-arrow-wrapper-top {
  top: 100%;
}

.mbsc-popup-arrow-wrapper-bottom {
  bottom: 100%;
}

.mbsc-popup-arrow-wrapper-left {
  left: 100%;
}

.mbsc-popup-arrow-wrapper-right {
  right: 100%;
}

.mbsc-popup-arrow {
  position: absolute;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 1.5em;
  height: 1.5em;
  pointer-events: auto;
}

.mbsc-popup-arrow-top {
  bottom: 1.25em;
}

.mbsc-popup-arrow-bottom {
  top: 1.25em;
}

.mbsc-popup-arrow-bottom,
.mbsc-popup-arrow-top {
  left: 50%;
  margin-left: -0.75em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mbsc-popup-arrow-left {
  right: 1.25em;
}

.mbsc-popup-arrow-right {
  left: 1.25em;
}

.mbsc-popup-arrow-left,
.mbsc-popup-arrow-right {
  top: 50%;
  margin-top: -0.75em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mbsc-popup-focus {
  outline: 0;
}

.mbsc-popup-body {
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -moz-box-flex: 1;
  flex: 1 1 auto;
}

.mbsc-popup-body-top {
  padding-top: var(--mbsc-safe-top);
}

.mbsc-popup-body-bottom {
  padding-bottom: var(--mbsc-safe-bottom);
}

.mbsc-popup-body-bottom,
.mbsc-popup-body-top {
  padding-left: var(--mbsc-safe-left);
  padding-right: var(--mbsc-safe-right);
}

.mbsc-popup-body-round {
  padding: 0;
}

.mbsc-popup-header {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -moz-box-flex: 0;
  flex: none;
}

.mbsc-popup-content {
  -moz-box-flex: 1;
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.mbsc-popup-padding {
  padding: 1em;
}

.mbsc-popup-buttons {
  -moz-box-flex: 0;
  flex: none;
}

.mbsc-popup-pop-in {
  opacity: 1;
  -webkit-animation: mbsc-pop-in 0.15s cubic-bezier(0, 0, 0.2, 1);
  animation: mbsc-pop-in 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.mbsc-popup-pop-out {
  opacity: 0;
  -webkit-animation: mbsc-pop-out 75ms cubic-bezier(0.4, 0, 1, 1);
  animation: mbsc-pop-out 75ms cubic-bezier(0.4, 0, 1, 1);
}

.mbsc-popup-slide-up-in {
  -webkit-animation: mbsc-slide-up-in 0.25s cubic-bezier(0, 0, 0.2, 1);
  animation: mbsc-slide-up-in 0.25s cubic-bezier(0, 0, 0.2, 1);
}

.mbsc-popup-slide-up-out {
  -webkit-animation: mbsc-slide-up-out 0.2s cubic-bezier(0.4, 0, 1, 1);
  animation: mbsc-slide-up-out 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.mbsc-popup-slide-down-in {
  -webkit-animation: mbsc-slide-down-in 0.25s cubic-bezier(0, 0, 0.2, 1);
  animation: mbsc-slide-down-in 0.25s cubic-bezier(0, 0, 0.2, 1);
}

.mbsc-popup-slide-down-out {
  -webkit-animation: mbsc-slide-down-out 0.2s cubic-bezier(0.4, 0, 1, 1);
  animation: mbsc-slide-down-out 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.mbsc-popup-pointer.mbsc-picker .mbsc-popup-overlay,
.mbsc-popup-pointer .mbsc-popup-overlay-anchored {
  background: none;
}

.mbsc-popup-round .mbsc-popup-slide-up-in {
  -webkit-animation-name: mbsc-slide-up-in, mbsc-fade-in;
  animation-name: mbsc-slide-up-in, mbsc-fade-in;
}

.mbsc-popup-round .mbsc-popup-slide-up-out {
  -webkit-animation-name: mbsc-slide-up-out, mbsc-fade-out;
  animation-name: mbsc-slide-up-out, mbsc-fade-out;
}

.mbsc-popup-round .mbsc-popup-slide-down-in {
  -webkit-animation-name: mbsc-slide-down-in, mbsc-fade-in;
  animation-name: mbsc-slide-down-in, mbsc-fade-in;
}

.mbsc-popup-round .mbsc-popup-slide-down-out {
  -webkit-animation-name: mbsc-slide-down-out, mbsc-fade-out;
  animation-name: mbsc-slide-down-out, mbsc-fade-out;
}

.mbsc-popup-round .mbsc-popup-bottom,
.mbsc-popup-round .mbsc-popup-top {
  width: auto;
  margin-top: 3em;
  margin-bottom: 3em;
}

.mbsc-ios.mbsc-list-item {
  margin-top: -1px;
  padding: 1em;
}

.mbsc-ios.mbsc-list-item:after,
.mbsc-ios.mbsc-list-item:before {
  content: "";
  position: absolute;
  right: 0;
  left: 1em;
}

.mbsc-ios.mbsc-list-item.mbsc-rtl:after,
.mbsc-ios.mbsc-list-item.mbsc-rtl:before {
  left: 0;
  right: 1em;
}

.mbsc-ios.mbsc-list-item:before {
  top: 0;
  transition: none;
}

.mbsc-ios.mbsc-list-item:after {
  bottom: 0;
}

.mbsc-ios.mbsc-list-item:first-child:before,
.mbsc-ios.mbsc-list-item:last-child:after {
  left: 0;
  right: 0;
}

.mbsc-ios.mbsc-list-item.mbsc-active,
.mbsc-ios.mbsc-list-item.mbsc-hover {
  z-index: 3;
}

.mbsc-ios.mbsc-list-item.mbsc-focus {
  z-index: 5;
}

.mbsc-ios.mbsc-list-item.mbsc-active:after,
.mbsc-ios.mbsc-list-item.mbsc-active:before,
.mbsc-ios.mbsc-list-item.mbsc-focus:after,
.mbsc-ios.mbsc-list-item.mbsc-focus:before,
.mbsc-ios.mbsc-list-item.mbsc-hover:after,
.mbsc-ios.mbsc-list-item.mbsc-hover:before {
  left: 0;
  right: 0;
}

.mbsc-ios.mbsc-list-header {
  z-index: 4;
  margin-top: -1px;
  padding: 2.333334em 1.333334em 0.5em;
  font-size: 0.75em;
  line-height: 1.5em;
  border-top: 1px solid;
  border-bottom: 1px solid;
  text-transform: uppercase;
}

.mbsc-ios.mbsc-list-header:first-child {
  border-top: 0;
  margin-top: 0;
}

.mbsc-ios.mbsc-list-item {
  background: var(--background-color);
  border-color: #ccc;
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-list-item:after,
.mbsc-ios.mbsc-list-item:before {
  border-top: 1px solid #ccc;
}

.mbsc-ios.mbsc-list-header {
  background: #efeff4;
  color: #707070;
  border-color: #ccc;
}

.mbsc-ios.mbsc-list-item.mbsc-focus:before,
.mbsc-ios.mbsc-list-item.mbsc-hover:before {
  background: rgba(0, 0, 0, 0.05);
}

.mbsc-ios.mbsc-list-item.mbsc-active:before {
  background: rgba(0, 0, 0, 0.15);
}

.mbsc-ios-dark.mbsc-list-item {
  background: var(--background-color);
  border-color: #333;
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-list-item:after,
.mbsc-ios-dark.mbsc-list-item:before {
  border-top: 1px solid #333;
}

.mbsc-ios-dark.mbsc-list-header {
  background: #1a1a1a;
  color: #8f8f8f;
  border-color: #333;
}

.mbsc-ios-dark.mbsc-list-item.mbsc-focus:before,
.mbsc-ios-dark.mbsc-list-item.mbsc-hover:before {
  background: hsla(0, 0%, 100%, 0.05);
}

.mbsc-ios-dark.mbsc-list-item.mbsc-active:before {
  background: rgba(0, 0, 0, 0.15);
}

.mbsc-material.mbsc-list-header {
  margin-top: -1px;
  font-size: 0.875em;
  font-weight: 600;
  padding: 0.5714em 1.14285em;
  background: var(--background-color);
  color: #1a73e8;
}

.mbsc-material.mbsc-list-item {
  background: var(--background-color);
  color: #303030;
}

.mbsc-material.mbsc-list-item.mbsc-hover:before {
  background: rgba(0, 0, 0, 0.05);
}

.mbsc-material.mbsc-list-item.mbsc-active:before {
  background: rgba(0, 0, 0, 0.1);
}

.mbsc-material-dark.mbsc-list-header {
  background: var(--background-color);
  color: var(--ion-color-primary-tint);
}

.mbsc-material-dark.mbsc-list-item {
  background: var(--background-color);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-list-item.mbsc-hover:before {
  background: rgba(0, 0, 0, 0.05);
}

.mbsc-material-dark.mbsc-list-item.mbsc-active:before {
  background: rgba(0, 0, 0, 0.1);
}

.mbsc-list {
  display: block;
}

.mbsc-list-header,
.mbsc-list-item {
  display: -moz-box;
  display: flex;
}

.mbsc-list-item {
  position: relative;
  z-index: 2;
  list-style: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  line-height: 1.25em;
}

.mbsc-list-item-actionable {
  cursor: pointer;
}

.mbsc-list-item:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  transition: background-color 0.2s ease-out;
}

.mbsc-list-item:focus {
  outline: 0;
}

.mbsc-list-item::-moz-focus-inner {
  border: 0;
}

.mbsc-schedule-grid-wrapper {
  overflow: hidden;
  position: relative;
}

.mbsc-schedule-time-col,
.mbsc-timeline-resource-col {
  -moz-box-flex: 0;
  flex: none;
  width: 4.25em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mbsc-schedule-grid-scroll,
.mbsc-timeline-grid-scroll {
  overflow-x: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.mbsc-schedule-grid {
  -moz-box-flex: 1;
  flex: 1 0 auto;
}

.mbsc-schedule-all-day-item:after,
.mbsc-timeline-day:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.mbsc-schedule-all-day-item.mbsc-ltr:after,
.mbsc-timeline-day.mbsc-ltr:after {
  left: 100%;
  border-right-style: solid;
  border-right-width: 1px;
}

.mbsc-schedule-all-day-item.mbsc-rtl:after,
.mbsc-timeline-day.mbsc-rtl:after {
  right: 100%;
  border-left-style: solid;
  border-left-width: 1px;
}

.mbsc-schedule-column.mbsc-ltr,
.mbsc-timeline-column.mbsc-rtl,
.mbsc-timeline-header-column.mbsc-rtl,
.mbsc-timeline-header-date.mbsc-rtl,
.mbsc-timeline-resource-empty.mbsc-rtl,
.mbsc-timeline-resource.mbsc-rtl,
.mbsc-timeline-slot-header.mbsc-rtl {
  border-left-style: solid;
  border-left-width: 1px;
}

.mbsc-schedule-column.mbsc-rtl,
.mbsc-timeline-column.mbsc-ltr,
.mbsc-timeline-header-column.mbsc-ltr,
.mbsc-timeline-header-date.mbsc-ltr,
.mbsc-timeline-resource-empty.mbsc-ltr,
.mbsc-timeline-resource.mbsc-ltr,
.mbsc-timeline-slot-header.mbsc-ltr {
  border-right-style: solid;
  border-right-width: 1px;
}

.mbsc-schedule-event:focus {
  outline: none;
}

.mbsc-schedule-event {
  position: absolute;
  padding: 1px 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 0.75em;
  z-index: 1;
}

.mbsc-schedule-event.mbsc-ltr {
  left: 0;
}

.mbsc-schedule-event.mbsc-rtl {
  right: 0;
}

.mbsc-schedule-event-hover {
  cursor: pointer;
}

.mbsc-schedule-event-inner {
  position: relative;
  max-height: 100%;
  margin: 0 0.2em;
  line-height: 1.5em;
  font-size: 0.625em;
  padding: 0.5em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.mbsc-schedule-event-small-height.mbsc-schedule-event-inner {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.2em;
  margin-top: -1px;
}

.mbsc-schedule-event-small-height.mbsc-schedule-event-inner .mbsc-schedule-event-title {
  font-size: 1em;
}

.mbsc-schedule-event-background {
  position: absolute;
  top: -0.5em;
  left: 1px;
  right: 1px;
  bottom: -0.5em;
  background: currentColor;
}

.mbsc-schedule-event-start .mbsc-schedule-event-background {
  top: 1px;
}

.mbsc-schedule-event-end .mbsc-schedule-event-background {
  bottom: 1px;
}

.mbsc-schedule-event-range {
  font-size: 0.8em;
}

.mbsc-schedule-event-all-day {
  position: relative;
  display: block;
  padding: 0;
  margin: 0.125em 0;
  min-height: 0;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 2;
}

.mbsc-schedule-event-all-day-placeholder {
  z-index: -1;
}

.mbsc-schedule-event-all-day-inner {
  position: relative;
  height: 1.6em;
  line-height: 1.6em;
  margin: 0 0.2em;
  padding: 0 0.3em;
  font-size: 0.625em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.mbsc-schedule-event-all-day-background.mbsc-schedule-event-background {
  top: 0;
  bottom: 0;
}

.mbsc-timeline-event {
  z-index: 2;
  min-width: 0.75em;
}

.mbsc-timeline-event .mbsc-schedule-event-range,
.mbsc-timeline-event .mbsc-schedule-event-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.mbsc-schedule-event-dragging {
  position: absolute;
  top: 0;
  z-index: 3;
}

.mbsc-schedule-event-inactive {
  opacity: 0.5;
}

.mbsc-schedule-event-hidden {
  visibility: hidden;
}

.mbsc-schedule-event-resize {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  height: 0.25em;
  z-index: 1;
  cursor: ns-resize;
}

.mbsc-schedule-event-resize-start {
  top: 0;
}

.mbsc-schedule-event-resize-end {
  bottom: 0;
}

.mbsc-schedule-event-resize-start:after {
  top: -0.25em;
  right: 0.5em;
}

.mbsc-schedule-event-resize-end:after {
  bottom: -0.25em;
  left: 0.5em;
}

.mbsc-schedule-event-resize:after {
  content: "";
  position: absolute;
  margin: 1px 0;
  width: 0.5em;
  height: 0.5em;
  background: var(--background-color);
  border-radius: 50%;
  border: 1px solid;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mbsc-schedule-event-resize-end-touch:before,
.mbsc-schedule-event-resize-start-touch:before {
  content: "";
  position: absolute;
  margin: 1px 0;
  width: 1.5em;
  height: 1em;
}

.mbsc-schedule-event-resize-start-touch:before {
  top: -0.5em;
  right: 0;
}

.mbsc-schedule-event-resize-end-touch:before {
  bottom: -0.5em;
  left: 0;
}

.mbsc-schedule-event-dragging .mbsc-schedule-event-resize,
.mbsc-schedule-event-hover .mbsc-schedule-event-resize {
  display: block;
}

.mbsc-schedule-color,
.mbsc-schedule-invalid {
  position: absolute;
  top: -0.5em;
  bottom: -0.5em;
  left: 0;
  right: 0;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
}

.mbsc-schedule-color-all-day,
.mbsc-schedule-invalid-all-day {
  top: 0;
  bottom: 0;
  z-index: -1;
}

.mbsc-schedule-color-start,
.mbsc-schedule-invalid-start {
  padding-top: 0.5em;
  margin-top: -0.5em;
}

.mbsc-schedule-color-end,
.mbsc-schedule-invalid-end {
  padding-bottom: 0.5em;
}

.mbsc-schedule-color-text,
.mbsc-schedule-invalid-text {
  padding: 0.375em;
  font-size: 0.75em;
}

.mbsc-schedule-color-text {
  opacity: 0.8;
}

.mbsc-schedule-time-indicator {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.mbsc-schedule-time-indicator-x {
  border-bottom: 1px solid;
}

.mbsc-schedule-time-indicator-x.mbsc-ltr {
  left: 4.25em;
  right: 0;
}

.mbsc-schedule-time-indicator-x.mbsc-rtl {
  right: 4.25em;
  left: 0;
}

.mbsc-schedule-time-indicator-y {
  top: 0;
  bottom: 0;
  border-left: 1px solid;
}

.mbsc-schedule-time-indicator-day {
  position: absolute;
  width: 14.285714%;
}

.mbsc-schedule-time-indicator-day:before {
  content: "";
  position: absolute;
  width: 0.4375em;
  height: 0.4375em;
  margin-top: -0.1875em;
  margin-left: -0.1875em;
  margin-right: -0.1875em;
  border-radius: 50%;
  z-index: 1;
}

.mbsc-schedule-time-indicator-time {
  position: absolute;
  top: -1em;
  font-size: 0.625em;
  line-height: 2em;
  margin-top: 1px;
  padding: 0 0.8em;
  white-space: nowrap;
}

.mbsc-schedule-time-indicator-time-y {
  top: -1.8em;
  padding: 0 0.5em;
  margin-left: -0.5em;
  margin-right: -0.5em;
  line-height: 1.6em;
}

.mbsc-schedule-time-indicator-time-x.mbsc-ltr,
.mbsc-schedule-time-indicator-time-y.mbsc-rtl {
  right: 100%;
}

.mbsc-schedule-time-indicator-time-x.mbsc-rtl,
.mbsc-schedule-time-indicator-time-y.mbsc-ltr {
  left: 100%;
}

.mbsc-cursor-indicator {
  position: absolute;
  z-index: 3;
}

.mbsc-cursor-indicator-x {
  top: 1.875em;
}

.mbsc-cursor-indicator-y.mbsc-ltr {
  left: 4.25em;
}

.mbsc-cursor-indicator-y.mbsc-rtl {
  right: 4.25em;
}

.mbsc-cursor-indicator-time {
  line-height: 1.6em;
  font-size: 0.625em;
  line-height: 2em;
  padding: 0 0.8em;
  white-space: nowrap;
}

.mbsc-cursor-indicator-time-y {
  position: absolute;
  margin-top: -0.5em;
}

.mbsc-cursor-indicator-time-y.mbsc-ltr {
  right: 100%;
}

.mbsc-cursor-indicator-time-y.mbsc-rtl {
  left: 100%;
}

.mbsc-schedule-fake-scroll-x,
.mbsc-schedule-fake-scroll-y {
  visibility: hidden;
  -moz-box-flex: 0;
  flex: none;
}

.mbsc-schedule-fake-scroll-x {
  overflow-x: scroll;
  width: 0;
}

.mbsc-schedule-fake-scroll-y {
  overflow-y: scroll;
  max-height: 20px;
}

@supports (overflow: clip) {
  .mbsc-schedule-event-inner {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}

.mbsc-schedule-wrapper {
  overflow: auto;
}

.mbsc-schedule-resource-group {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  flex-basis: 16em;
}

.mbsc-schedule-resource-group:first-child:last-child {
  flex-basis: 0;
}

.mbsc-schedule-resource-group.mbsc-ltr {
  border-left-width: 2px;
  border-left-style: solid;
}

.mbsc-schedule-resource-group.mbsc-rtl {
  border-right-width: 2px;
  border-right-style: solid;
}

.mbsc-schedule-resource-group:first-child {
  border: 0;
}

.mbsc-schedule-col-width {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 2.5em;
}

.mbsc-schedule-date-header-text {
  line-height: 1.5em;
  text-align: center;
}

.mbsc-schedule-header {
  overflow: hidden;
}

.mbsc-schedule-all-day-group-wrapper,
.mbsc-schedule-header-wrapper {
  min-width: 0;
  overflow: hidden;
}

.mbsc-schedule-header-item {
  display: block;
  position: relative;
  text-align: center;
  line-height: 1.25em;
}

.mbsc-schedule-header-item.mbsc-hover {
  cursor: pointer;
}

.mbsc-schedule-header-dayname {
  font-size: 0.75em;
}

.mbsc-schedule-header-day {
  font-size: 1.125em;
}

.mbsc-schedule-resource {
  overflow: hidden;
}

.mbsc-schedule-resource-title {
  padding: 0.5em;
  font-size: 0.875em;
  font-weight: 600;
  text-align: center;
}

.mbsc-schedule-all-day-wrapper {
  position: relative;
  max-height: 7.8125em;
  overflow-x: hidden;
  overflow-y: scroll;
}

.mbsc-schedule-all-day-wrapper-shadow {
  position: relative;
}

.mbsc-schedule-all-day-wrapper-shadow:after {
  content: "";
  box-shadow: inset 0 0.5em 0.25em -0.5em rgba(48, 48, 48, 0.5);
  height: 4px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  z-index: 4;
  pointer-events: none;
}

.mbsc-schedule-all-day-item {
  position: relative;
}

.mbsc-schedule-all-day-item:first-child,
.mbsc-schedule-column:first-child {
  border: 0;
}

.mbsc-schedule-time-wrapper {
  position: relative;
  width: 4.25em;
  height: 3.125em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mbsc-schedule-time {
  position: relative;
  line-height: 2em;
  top: -1em;
  font-size: 0.75em;
}

.mbsc-schedule-time-end {
  position: absolute;
  top: auto;
  bottom: -1em;
  left: 0;
  right: 0;
}

.mbsc-schedule-time.mbsc-ltr {
  text-align: right;
}

.mbsc-schedule-time.mbsc-rtl {
  text-align: left;
}

.mbsc-schedule-time-cont-pos {
  position: relative;
}

.mbsc-schedule-time-cont-inner {
  position: absolute;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  min-height: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.5em 0;
}

.mbsc-schedule-column {
  padding: 0.5em 0;
}

.mbsc-schedule-column-inner {
  position: relative;
}

.mbsc-schedule-all-day-item,
.mbsc-schedule-item {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mbsc-schedule-item {
  height: 3.125em;
  position: relative;
  border-top: 1px solid;
}

.mbsc-schedule-item-last {
  border-bottom: 1px solid;
}

.mbsc-schedule-events {
  position: absolute;
  height: 100%;
}

.mbsc-schedule-events.mbsc-ltr {
  left: 0;
  right: 0.5em;
}

.mbsc-schedule-events.mbsc-rtl {
  right: 0;
  left: 0.5em;
}

.mbsc-schedule-event-all-day .mbsc-schedule-event-resize {
  width: 0.25em;
  height: 100%;
  cursor: ew-resize;
}

.mbsc-schedule-event-all-day .mbsc-schedule-event-resize:after {
  top: 50%;
  right: auto;
  left: auto;
  margin-top: -0.25em;
}

.mbsc-schedule-event-all-day .mbsc-schedule-event-resize-end.mbsc-rtl,
.mbsc-schedule-event-all-day .mbsc-schedule-event-resize-start.mbsc-ltr {
  right: auto;
}

.mbsc-schedule-event-all-day .mbsc-schedule-event-resize-end.mbsc-ltr,
.mbsc-schedule-event-all-day .mbsc-schedule-event-resize-start.mbsc-rtl {
  left: auto;
}

.mbsc-schedule-event-all-day .mbsc-schedule-event-resize-end.mbsc-rtl:after,
.mbsc-schedule-event-all-day .mbsc-schedule-event-resize-start.mbsc-ltr:after {
  right: -0.25em;
}

.mbsc-schedule-event-all-day .mbsc-schedule-event-resize-end.mbsc-ltr:after,
.mbsc-schedule-event-all-day .mbsc-schedule-event-resize-start.mbsc-rtl:after {
  left: -0.25em;
}

.mbsc-schedule-event-all-day .mbsc-schedule-event-resize-start-touch:before {
  height: 1.5em;
  top: 50%;
  left: -0.75em;
  right: auto;
  margin-top: -0.75em;
}

.mbsc-schedule-event-all-day .mbsc-schedule-event-resize-end-touch:before {
  height: 1.5em;
  top: 50%;
  left: auto;
  right: -0.75em;
  margin-top: -0.75em;
}

.mbsc-timeline {
  overflow: hidden;
  position: relative;
}

.mbsc-timeline.mbsc-ltr {
  margin-right: -2px;
}

.mbsc-timeline.mbsc-rtl {
  margin-left: -2px;
}

.mbsc-timeline-header-row-1 {
  height: 1.625em;
}

.mbsc-timeline-header-row-2 {
  height: 3.25em;
}

.mbsc-timeline-header-row-3 {
  height: 4.875em;
}

.mbsc-timeline-resource-col {
  width: 12em;
}

.mbsc-timeline-resources {
  position: absolute;
  top: 0;
  bottom: 15px;
  z-index: 4;
  overflow: hidden;
}

.mbsc-timeline-resources.mbsc-ltr {
  left: 0;
}

.mbsc-timeline-resources.mbsc-rtl {
  right: 0;
}

.mbsc-timeline-resource-empty {
  position: relative;
  z-index: 5;
  overflow: hidden;
  pointer-events: auto;
  align-self: flex-start;
}

.mbsc-timeline-resource {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.mbsc-timeline-parent {
  background: hsla(0, 0%, 90.2%, 0.25);
}

.mbsc-timeline-resource-icon {
  font-size: 0.875em;
  font-weight: 600;
  margin: 0.357143em 0;
  cursor: pointer;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.mbsc-timeline-resource-icon.mbsc-ltr {
  margin-left: 0.5em;
}

.mbsc-timeline-resource-icon.mbsc-rtl {
  margin-right: 0.5em;
}

.mbsc-timeline-resource-header,
.mbsc-timeline-resource-title {
  font-size: 0.875em;
  font-weight: 600;
  padding: 0.5em;
}

.mbsc-timeline-header {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.mbsc-timeline-header .mbsc-schedule-time-indicator {
  top: auto;
  bottom: auto;
  height: 100%;
  margin-top: -0.3125em;
}

.mbsc-timeline-header-time-cont {
  position: relative;
}

.mbsc-timeline-day {
  position: relative;
  min-width: 9em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  pointer-events: auto;
}

.mbsc-timeline-day-month {
  min-width: 0;
}

.mbsc-timeline-column.mbsc-timeline-no-border,
.mbsc-timeline-header-column.mbsc-timeline-no-border {
  border-left: 0;
  border-right: 0;
}

.mbsc-timeline-month {
  min-width: 0;
  position: relative;
}

.mbsc-timeline-header-date,
.mbsc-timeline-header-month {
  height: 1.625em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  pointer-events: auto;
}

.mbsc-timeline-header-month-last.mbsc-ltr {
  border-right-width: 1px;
  border-right-style: solid;
}

.mbsc-timeline-header-month-last.mbsc-rtl {
  border-left-width: 1px;
  border-left-style: solid;
}

.mbsc-timeline-header-date-text,
.mbsc-timeline-header-month-text {
  font-size: 0.875em;
  padding: 0 0.285714em;
  line-height: 1.785715em;
  display: inline-block;
  vertical-align: top;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.mbsc-timeline-header-month-text {
  overflow: visible;
  font-weight: 700;
  max-width: none;
  position: absolute;
}

.mbsc-timeline-header-month-text-last {
  max-width: 100%;
  overflow: hidden;
}

.mbsc-timeline-header-column {
  border-bottom: 1px solid;
  height: 1.625em;
}

.mbsc-cursor-indicator-time-x,
.mbsc-timeline-header-time {
  padding: 0 0.5em;
  font-size: 0.625em;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 2.6em;
}

.mbsc-timeline-column,
.mbsc-timeline-header-column {
  width: 4em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.mbsc-timeline-grid-scroll {
  overflow-y: auto;
  -webkit-overflow-scrolling: auto;
}

.mbsc-timeline-grid {
  position: relative;
  overflow: hidden;
}

.mbsc-timeline-resource,
.mbsc-timeline-row {
  height: 3.25em;
  position: relative;
  -moz-box-flex: 1;
  flex: 1 0 auto;
}

.mbsc-timeline-column,
.mbsc-timeline-header-date,
.mbsc-timeline-header-month,
.mbsc-timeline-resource,
.mbsc-timeline-resource-empty {
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.mbsc-timeline-events {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0.5em;
}

.mbsc-timeline-event-background {
  top: 1px;
  bottom: 1px;
}

.mbsc-timeline-event-resize {
  height: 100%;
  width: 0.25em;
  right: auto;
  left: auto;
  cursor: ew-resize;
}

.mbsc-timeline-event-resize.mbsc-schedule-event-resize-end.mbsc-rtl,
.mbsc-timeline-event-resize.mbsc-schedule-event-resize-start.mbsc-ltr {
  left: 0;
}

.mbsc-timeline-event-resize.mbsc-schedule-event-resize-end.mbsc-ltr,
.mbsc-timeline-event-resize.mbsc-schedule-event-resize-start.mbsc-rtl {
  right: 0;
}

.mbsc-timeline-event-resize.mbsc-schedule-event-resize-end:after,
.mbsc-timeline-event-resize.mbsc-schedule-event-resize-start:after {
  top: 50%;
  margin-top: -0.25em;
}

.mbsc-timeline-event-resize.mbsc-schedule-event-resize-end:after {
  left: -0.125em;
}

.mbsc-timeline-event-resize.mbsc-schedule-event-resize-start:after {
  right: -0.125em;
}

.mbsc-timeline-event-resize.mbsc-schedule-event-resize-end-touch:before,
.mbsc-timeline-event-resize.mbsc-schedule-event-resize-start-touch:before {
  height: 1.5em;
  top: 50%;
  left: 50%;
  margin: -0.75em 0 0 -0.75em;
}

.mbsc-timeline-event-listing {
  position: relative;
}

.mbsc-timeline-event-listing.mbsc-timeline-event-dragging {
  position: absolute;
  top: 0;
}

.mbsc-timeline-event-listing.mbsc-schedule-event-all-day-placeholder {
  padding: 0;
  margin: 0.125em 0;
}

.mbsc-timeline-color,
.mbsc-timeline-invalid {
  top: 0;
  bottom: 0;
  padding: 0;
  margin: 0;
}

.mbsc-timeline-header-column.mbsc-timeline-no-height {
  border: 0;
  height: 0;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .mbsc-timeline-resources.mbsc-ltr {
    position: -webkit-sticky;
    position: sticky;
    top: auto;
    bottom: auto;
    overflow: visible;
    padding-top: 0;
  }
}

.mbsc-timeline-slots {
  height: 1.625em;
  border-bottom: 1px solid;
}

.mbsc-timeline-slot,
.mbsc-timeline-slots {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mbsc-timeline-slot {
  position: relative;
  width: 8em;
  -moz-box-flex: 1;
  flex: 1 0 auto;
}

.mbsc-timeline-slot-title {
  font-size: 0.875em;
  font-weight: 600;
  line-height: 1.785715em;
  padding: 0 0.285714em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@supports (overflow: clip) {
  .mbsc-timeline-grid {
    overflow: clip;
  }

  .mbsc-timeline .mbsc-schedule-event-inner {
    display: inline-block;
    max-width: 100%;
    vertical-align: top;
  }

  .mbsc-timeline.mbsc-ltr .mbsc-schedule-event-inner {
    left: 192px;
  }

  .mbsc-timeline.mbsc-rtl .mbsc-schedule-event-inner {
    right: 192px;
  }

  .mbsc-timeline-event-listing .mbsc-schedule-event-inner {
    position: relative;
    display: block;
  }

  .mbsc-timeline .mbsc-timeline-event-listing .mbsc-schedule-event-inner,
  .mbsc-timeline.mbsc-timeline-no-resource .mbsc-schedule-event-inner {
    left: 0;
    right: 0;
  }
}

.mbsc-ios.mbsc-popover-list .mbsc-event:last-child:after {
  display: none;
}

.mbsc-ios.mbsc-event-day.mbsc-list-header {
  font-weight: 700;
  padding: 0.5em 1em;
  line-height: 1.5em;
  text-transform: none;
}

.mbsc-ios.mbsc-event-time {
  width: 6em;
  font-size: 0.875em;
  line-height: 1.428572em;
}

.mbsc-ios.mbsc-event-color {
  width: 0.25em;
  border-radius: 0.125em;
  margin: 0 0.5em 0 -0.5em;
}

.mbsc-ios.mbsc-event-color.mbsc-rtl {
  margin: 0 -0.5em 0 0.5em;
}

.mbsc-ios.mbsc-event-time.mbsc-ltr {
  text-align: right;
}

.mbsc-ios.mbsc-event-time.mbsc-rtl {
  text-align: left;
}

.mbsc-ios.mbsc-event-end {
  opacity: 0.7;
}

.mbsc-ios.mbsc-event-text {
  font-weight: 500;
}

.mbsc-ios.mbsc-event-sep {
  display: none;
}

.mbsc-ios.mbsc-schedule-wrapper {
  position: relative;
  margin-top: -1px;
  z-index: 2;
}

.mbsc-ios.mbsc-schedule-header {
  border-bottom: 1px solid;
}

.mbsc-ios.mbsc-schedule-header-item {
  padding: 0.4375em 0;
  line-height: 1.75em;
}

.mbsc-ios.mbsc-schedule-header-item.mbsc-ltr {
  border-left-style: solid;
  border-left-width: 1px;
}

.mbsc-ios.mbsc-schedule-header-item.mbsc-rtl {
  border-right-style: solid;
  border-right-width: 1px;
}

.mbsc-ios.mbsc-schedule-header-item:first-child {
  border: 0;
}

.mbsc-ios.mbsc-schedule-header-dayname {
  font-size: 1em;
  font-weight: 400;
}

.mbsc-ios.mbsc-schedule-header-day {
  display: inline-block;
  height: 1.625em;
  width: 1.625em;
  line-height: 1.625em;
  border-radius: 50%;
  text-align: center;
  font-size: 1em;
  font-weight: 400;
}

.mbsc-ios.mbsc-schedule-header-item-large {
  padding: 0.1875em 0;
}

.mbsc-ios.mbsc-schedule-header-item-large.mbsc-schedule-header-item {
  border-color: transparent;
}

.mbsc-ios.mbsc-schedule-header-item-large .mbsc-schedule-header-dayname {
  display: inline-block;
  padding: 0 0.375em;
  font-size: 1em;
  font-weight: 400;
}

.mbsc-ios.mbsc-schedule-all-day-wrapper {
  max-height: 3.125em;
  border-bottom: 1px solid;
}

.mbsc-ios.mbsc-schedule-all-day-text {
  padding: 0.5em 0.666667em;
  font-size: 0.75em;
  text-align: right;
  text-transform: lowercase;
}

.mbsc-ios.mbsc-schedule-date-header {
  position: relative;
  z-index: 3;
  will-change: opacity;
  border-bottom: 1px solid;
}

.mbsc-ios.mbsc-schedule-date-header-text {
  padding: 0.5em;
  font-size: 0.75em;
  font-weight: 700;
}

.mbsc-ios.mbsc-schedule-resource.mbsc-ltr {
  border-left-width: 1px;
  border-left-style: solid;
}

.mbsc-ios.mbsc-schedule-resource.mbsc-rtl {
  border-right-width: 1px;
  border-right-style: solid;
}

.mbsc-ios.mbsc-schedule-resource:first-child {
  border: 0;
}

.mbsc-ios.mbsc-schedule-all-day-item {
  padding: 0.25em 0;
  min-height: 1.875em;
}

.mbsc-ios.mbsc-schedule-time {
  font-size: 0.625em;
  padding: 0 0.8em;
}

.mbsc-ios.mbsc-schedule-event-background {
  opacity: 0.5;
  transition: opacity 0.15s ease-in-out;
}

.mbsc-ios.mbsc-schedule-event-start .mbsc-schedule-event-background {
  border-top-left-radius: 0.25em;
  border-top-right-radius: 0.25em;
}

.mbsc-ios.mbsc-schedule-event-end .mbsc-schedule-event-background {
  border-bottom-left-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
}

.mbsc-ios.mbsc-timeline-event-end.mbsc-rtl .mbsc-schedule-event-background,
.mbsc-ios.mbsc-timeline-event-start.mbsc-ltr .mbsc-schedule-event-background {
  border-bottom-left-radius: 0.25em;
  border-top-left-radius: 0.25em;
}

.mbsc-ios.mbsc-timeline-event-end.mbsc-ltr .mbsc-schedule-event-background,
.mbsc-ios.mbsc-timeline-event-start.mbsc-rtl .mbsc-schedule-event-background {
  border-bottom-right-radius: 0.25em;
  border-top-right-radius: 0.25em;
}

.mbsc-ios.mbsc-schedule-event-hover .mbsc-schedule-event-background {
  opacity: 0.6;
}

.mbsc-ios.mbsc-schedule-event-active .mbsc-schedule-event-background,
.mbsc-ios.mbsc-schedule-event-dragging .mbsc-schedule-event-background {
  opacity: 0.9;
}

.mbsc-ios.mbsc-schedule-event-dragging {
  top: 0.25em;
}

.mbsc-ios.mbsc-timeline-event-dragging {
  top: 0;
}

.mbsc-ios.mbsc-schedule-event-bar {
  position: absolute;
  top: -0.5em;
  bottom: -0.5em;
  width: 0.1875em;
  background: currentColor;
}

.mbsc-ios.mbsc-schedule-event-bar.mbsc-ltr {
  left: 1px;
}

.mbsc-ios.mbsc-schedule-event-bar.mbsc-rtl {
  right: 1px;
}

.mbsc-ios.mbsc-schedule-event-start .mbsc-schedule-event-bar {
  top: 1px;
}

.mbsc-ios.mbsc-schedule-event-start .mbsc-schedule-event-bar.mbsc-ltr,
.mbsc-ios.mbsc-schedule-event-start .mbsc-schedule-event-bar.mbsc-rtl {
  border-top-left-radius: 0.1875em;
}

.mbsc-ios.mbsc-schedule-event-end .mbsc-schedule-event-bar {
  bottom: 1px;
}

.mbsc-ios.mbsc-schedule-event-end .mbsc-schedule-event-bar.mbsc-ltr,
.mbsc-ios.mbsc-schedule-event-end .mbsc-schedule-event-bar.mbsc-rtl {
  border-bottom-left-radius: 0.1875em;
}

.mbsc-ios.mbsc-schedule-event-title {
  font-weight: 600;
}

.mbsc-ios.mbsc-schedule-event-all-day-inner {
  margin: 0 0.4em;
}

.mbsc-ios.mbsc-schedule-event-all-day-background.mbsc-schedule-event-background {
  border-radius: 0;
}

.mbsc-ios.mbsc-schedule-event-end.mbsc-rtl .mbsc-schedule-event-all-day-background,
.mbsc-ios.mbsc-schedule-event-start.mbsc-ltr .mbsc-schedule-event-all-day-background,
.mbsc-ios.mbsc-timeline-event-end.mbsc-rtl .mbsc-schedule-event-all-day-background,
.mbsc-ios.mbsc-timeline-event-start.mbsc-ltr .mbsc-schedule-event-all-day-background {
  left: 0.25em;
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
}

.mbsc-ios.mbsc-schedule-event-end.mbsc-ltr .mbsc-schedule-event-all-day-background,
.mbsc-ios.mbsc-schedule-event-start.mbsc-rtl .mbsc-schedule-event-all-day-background,
.mbsc-ios.mbsc-timeline-event-end.mbsc-ltr .mbsc-schedule-event-all-day-background,
.mbsc-ios.mbsc-timeline-event-start.mbsc-rtl .mbsc-schedule-event-all-day-background {
  right: 0.25em;
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
}

.mbsc-ios.mbsc-timeline-resource-icon {
  width: 1.214286em;
  padding: 0 0.142858em;
}

.mbsc-ios.mbsc-event-list-empty {
  color: #707070;
}

.mbsc-ios.mbsc-event-day.mbsc-list-header {
  background: var(--background-color);
  border-color: #ccc;
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-event.mbsc-list-item {
  background: var(--background-color);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-event.mbsc-list-item:after,
.mbsc-ios.mbsc-event.mbsc-list-item:before {
  border-color: #ccc;
}

.mbsc-ios.mbsc-event.mbsc-list-item.mbsc-focus:before,
.mbsc-ios.mbsc-event.mbsc-list-item.mbsc-hover:before {
  background: rgba(0, 0, 0, 0.05);
}

.mbsc-ios.mbsc-event-color {
  background: #5ac8fa;
}

.mbsc-ios.mbsc-schedule-header,
.mbsc-ios.mbsc-schedule-header-item {
  border-color: #ccc;
}

.mbsc-ios.mbsc-schedule-header-day-today {
  color: var(--ion-color-primary);
}

.mbsc-ios.mbsc-schedule-header-day.mbsc-hover {
  background: rgba(0, 122, 255, 0.3);
}

.mbsc-ios.mbsc-schedule-header-day.mbsc-selected,
.mbsc-ios.mbsc-schedule-header-dayname-curr {
  color: var(--ion-color-primary);
}

.mbsc-ios.mbsc-schedule-header-day.mbsc-selected {
  background: var(--ion-color-primary);
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-schedule-header-dayname-curr {
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-schedule-date-header {
  background: #f7f7f7;
  border-color: #ccc;
}

.mbsc-ios.mbsc-schedule-grid-wrapper {
  background: var(--background-color);
}

.mbsc-ios.mbsc-schedule-all-day-wrapper {
  border-color: #ccc;
  background: var(--background-color);
}

.mbsc-ios.mbsc-schedule-all-day-text {
  color: #8c8c8c;
}

.mbsc-ios.mbsc-schedule-all-day-item:after,
.mbsc-ios.mbsc-schedule-column,
.mbsc-ios.mbsc-schedule-item,
.mbsc-ios.mbsc-schedule-resource,
.mbsc-ios.mbsc-schedule-resource-group,
.mbsc-ios.mbsc-timeline-column,
.mbsc-ios.mbsc-timeline-day:after,
.mbsc-ios.mbsc-timeline-header,
.mbsc-ios.mbsc-timeline-header-column,
.mbsc-ios.mbsc-timeline-header-date,
.mbsc-ios.mbsc-timeline-header-month,
.mbsc-ios.mbsc-timeline-resource,
.mbsc-ios.mbsc-timeline-resource-empty,
.mbsc-ios.mbsc-timeline-slot-header,
.mbsc-ios.mbsc-timeline-slots {
  border-color: #ccc;
}

.mbsc-ios.mbsc-cursor-indicator,
.mbsc-ios.mbsc-schedule-time,
.mbsc-ios.mbsc-timeline-header-column {
  color: #8c8c8c;
}

.mbsc-ios.mbsc-schedule-event {
  color: #5ac8fa;
}

.mbsc-ios.mbsc-schedule-event-range,
.mbsc-ios.mbsc-schedule-event-title {
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-schedule-event-active .mbsc-schedule-event-inner,
.mbsc-ios.mbsc-schedule-event-dragging .mbsc-schedule-event-inner {
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-schedule-event-active .mbsc-schedule-event-range,
.mbsc-ios.mbsc-schedule-event-active .mbsc-schedule-event-title,
.mbsc-ios.mbsc-schedule-event-dragging .mbsc-schedule-event-range,
.mbsc-ios.mbsc-schedule-event-dragging .mbsc-schedule-event-title {
  color: inherit;
}

.mbsc-ios.mbsc-schedule-time-indicator {
  border-color: var(--ion-color-primary);
}

.mbsc-ios.mbsc-schedule-time-indicator-day:before {
  background: var(--ion-color-primary);
}

.mbsc-ios.mbsc-cursor-indicator-time,
.mbsc-ios.mbsc-schedule-time-indicator-time {
  background: hsla(0, 0%, 100%, 0.8);
}

.mbsc-ios.mbsc-schedule-time-indicator-time {
  color: var(--ion-color-primary);
}

.mbsc-ios.mbsc-schedule-invalid {
  background: hsla(0, 0%, 93.7%, 0.75);
  color: #888;
}

.mbsc-ios.mbsc-timeline-resource-bg,
.mbsc-ios.mbsc-timeline-resource-empty {
  background: var(--background-color);
}

.mbsc-ios-dark.mbsc-event-list-empty {
  color: #8f8f8f;
}

.mbsc-ios-dark.mbsc-event-day.mbsc-list-header {
  background: var(--background-color);
  border-color: #333;
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-event.mbsc-list-item {
  background: var(--background-color);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-event.mbsc-list-item:after,
.mbsc-ios-dark.mbsc-event.mbsc-list-item:before {
  border-color: #333;
}

.mbsc-ios-dark.mbsc-event.mbsc-list-item.mbsc-focus:before,
.mbsc-ios-dark.mbsc-event.mbsc-list-item.mbsc-hover:before {
  background: hsla(0, 0%, 100%, 0.05);
}

.mbsc-ios-dark.mbsc-event-color {
  background: #5ac8fa;
}

.mbsc-ios-dark.mbsc-popover-list .mbsc-ios-dark.mbsc-event {
  background: #2b2b2b;
}

.mbsc-ios-dark.mbsc-schedule-header,
.mbsc-ios-dark.mbsc-schedule-header-item {
  border-color: #333;
}

.mbsc-ios-dark.mbsc-schedule-header-day-today {
  color: var(--ion-color-primary-shade);
}

.mbsc-ios-dark.mbsc-schedule-header-day.mbsc-hover {
  background: rgba(255, 159, 10, 0.3);
}

.mbsc-ios-dark.mbsc-schedule-header-day.mbsc-selected,
.mbsc-ios-dark.mbsc-schedule-header-dayname-curr {
  color: var(--ion-color-primary-shade);
}

.mbsc-ios-dark.mbsc-schedule-header-day.mbsc-selected {
  background: var(--ion-color-primary-shade);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-schedule-header-dayname-curr {
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-schedule-date-header {
  background: var(--ion-color-base);
  border-color: #333;
}

.mbsc-ios-dark.mbsc-schedule-grid-wrapper {
  background: var(--background-color);
}

.mbsc-ios-dark.mbsc-schedule-all-day-wrapper {
  border-color: #333;
  background: var(--background-color);
}

.mbsc-ios-dark.mbsc-schedule-all-day-text {
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-schedule-all-day-item:after,
.mbsc-ios-dark.mbsc-schedule-column,
.mbsc-ios-dark.mbsc-schedule-item,
.mbsc-ios-dark.mbsc-schedule-resource,
.mbsc-ios-dark.mbsc-schedule-resource-group,
.mbsc-ios-dark.mbsc-timeline-column,
.mbsc-ios-dark.mbsc-timeline-day:after,
.mbsc-ios-dark.mbsc-timeline-header,
.mbsc-ios-dark.mbsc-timeline-header-column,
.mbsc-ios-dark.mbsc-timeline-header-date,
.mbsc-ios-dark.mbsc-timeline-header-month,
.mbsc-ios-dark.mbsc-timeline-resource,
.mbsc-ios-dark.mbsc-timeline-resource-empty,
.mbsc-ios-dark.mbsc-timeline-slot-header,
.mbsc-ios-dark.mbsc-timeline-slots {
  border-color: #333;
}

.mbsc-ios-dark.mbsc-cursor-indicator,
.mbsc-ios-dark.mbsc-schedule-time,
.mbsc-ios-dark.mbsc-timeline-header-column {
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-schedule-event {
  color: #5ac8fa;
}

.mbsc-ios-dark.mbsc-schedule-event-active .mbsc-schedule-event-inner,
.mbsc-ios-dark.mbsc-schedule-event-dragging .mbsc-schedule-event-inner,
.mbsc-ios-dark.mbsc-schedule-event-range,
.mbsc-ios-dark.mbsc-schedule-event-title {
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-schedule-event-active .mbsc-schedule-event-range,
.mbsc-ios-dark.mbsc-schedule-event-active .mbsc-schedule-event-title,
.mbsc-ios-dark.mbsc-schedule-event-dragging .mbsc-schedule-event-range,
.mbsc-ios-dark.mbsc-schedule-event-dragging .mbsc-schedule-event-title {
  color: inherit;
}

.mbsc-ios-dark.mbsc-schedule-time-indicator {
  border-color: var(--ion-color-primary-shade);
}

.mbsc-ios-dark.mbsc-schedule-time-indicator-day:before {
  background: var(--ion-color-primary-shade);
}

.mbsc-ios-dark.mbsc-cursor-indicator-time,
.mbsc-ios-dark.mbsc-schedule-time-indicator-time {
  background: rgba(0, 0, 0, 0.8);
}

.mbsc-ios-dark.mbsc-schedule-time-indicator-time {
  color: var(--ion-color-primary-shade);
}

.mbsc-ios-dark.mbsc-schedule-invalid {
  background: rgba(26, 26, 26, 0.75);
  color: #787878;
}

.mbsc-ios-dark.mbsc-timeline-resource-bg,
.mbsc-ios-dark.mbsc-timeline-resource-empty {
  background: var(--background-color);
}

.mbsc-material.mbsc-event.mbsc-list-item {
  margin: 0.625em 1em;
  padding: 0.5em 0.625em;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  border-radius: 0.214286em;
  transition: box-shadow 0.2s ease-out;
}

.mbsc-material.mbsc-event-text,
.mbsc-material.mbsc-event-time {
  font-size: 0.8125em;
  line-height: 1.384616em;
}

.mbsc-material.mbsc-event-time {
  display: -moz-box;
  display: flex;
  font-weight: 300;
}

.mbsc-material.mbsc-event-text {
  font-weight: 600;
}

.mbsc-material.mbsc-event-all-day {
  display: none;
}

.mbsc-material.mbsc-event-sep {
  padding: 0 0.25em;
}

.mbsc-material.mbsc-event-until {
  padding-right: 0.25em;
}

.mbsc-material.mbsc-popover-list {
  width: 13em;
  padding: 0.5em 0.125em;
}

.mbsc-material.mbsc-popover-list .mbsc-event {
  margin: 0.125em 0.5em;
  padding: 0.25em 0.5em;
}

.mbsc-material.mbsc-popover-list .mbsc-event-text,
.mbsc-material.mbsc-popover-list .mbsc-event-time {
  font-size: 0.75em;
}

.mbsc-material.mbsc-schedule-header-item {
  padding-bottom: 0.25em;
}

.mbsc-material.mbsc-schedule-header-dayname {
  position: relative;
  line-height: 2.8em;
  font-size: 0.625em;
  font-weight: 500;
  text-transform: uppercase;
}

.mbsc-material.mbsc-schedule-header-day {
  height: 1.8em;
  width: 1.8em;
  margin-top: -0.3em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8em;
  font-size: 1.25em;
  border-radius: 50%;
}

.mbsc-material.mbsc-schedule-date-header-text {
  font-size: 0.875em;
  font-weight: 600;
  padding: 0.5714em 1.14285em;
}

.mbsc-material.mbsc-schedule-resource.mbsc-ltr {
  border-left-width: 1px;
  border-left-style: solid;
}

.mbsc-material.mbsc-schedule-resource.mbsc-rtl {
  border-right-width: 1px;
  border-right-style: solid;
}

.mbsc-material.mbsc-schedule-resource:first-child {
  border: 0;
}

.mbsc-material.mbsc-schedule-all-day-text {
  padding: 0.4em 0.8em;
  font-size: 0.625em;
  line-height: 1.6em;
  text-transform: uppercase;
}

.mbsc-material.mbsc-schedule-all-day-item {
  padding: 1px 0;
  min-height: 1.5em;
}

.mbsc-material.mbsc-schedule-time-col.mbsc-ltr {
  border-right-width: 1px;
  border-right-style: solid;
}

.mbsc-material.mbsc-schedule-time-col.mbsc-rtl {
  border-left-width: 1px;
  border-left-style: solid;
}

.mbsc-material.mbsc-schedule-time-col.mbsc-schedule-time-col-empty {
  border: 0;
}

.mbsc-material.mbsc-schedule-time-wrapper.mbsc-ltr {
  padding-right: 1em;
}

.mbsc-material.mbsc-schedule-time-wrapper.mbsc-rtl {
  padding-left: 1em;
}

.mbsc-material.mbsc-schedule-time-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  width: 9px;
}

.mbsc-material.mbsc-schedule-time-wrapper-end:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 9px;
}

.mbsc-material.mbsc-schedule-time-wrapper-end.mbsc-ltr:before,
.mbsc-material.mbsc-schedule-time-wrapper.mbsc-ltr:after {
  right: 0;
}

.mbsc-material.mbsc-schedule-time-wrapper-end.mbsc-rtl:before,
.mbsc-material.mbsc-schedule-time-wrapper.mbsc-rtl:after {
  left: 0;
}

.mbsc-material.mbsc-schedule-time {
  font-size: 0.625em;
}

.mbsc-material.mbsc-schedule-time-end.mbsc-ltr {
  right: 1.6em;
}

.mbsc-material.mbsc-schedule-time-end.mbsc-rtl {
  left: 1.6em;
}

.mbsc-material.mbsc-schedule-time-indicator-x:after {
  content: "";
  position: absolute;
  top: 0;
  width: 0.5625em;
  border-bottom: 1px solid;
  border-color: inherit;
}

.mbsc-material.mbsc-schedule-time-indicator.mbsc-ltr:after {
  left: -0.5625em;
}

.mbsc-material.mbsc-schedule-time-indicator.mbsc-rtl:after {
  right: -0.5625em;
}

.mbsc-material.mbsc-schedule-time-indicator-time-x {
  padding: 0 1.6em;
  margin: 0 1px;
}

.mbsc-material.mbsc-cursor-indicator-y.mbsc-ltr {
  left: 3.75em;
}

.mbsc-material.mbsc-cursor-indicator-y.mbsc-rtl {
  right: 3.75em;
}

.mbsc-material.mbsc-schedule-event-inner {
  border-radius: 0.4em;
}

.mbsc-material.mbsc-schedule-event-start .mbsc-schedule-event-background {
  border-top-left-radius: 0.333334em;
  border-top-right-radius: 0.333334em;
}

.mbsc-material.mbsc-schedule-event-end .mbsc-schedule-event-background {
  border-bottom-left-radius: 0.333334em;
  border-bottom-right-radius: 0.333334em;
}

.mbsc-material.mbsc-timeline-event-end.mbsc-rtl .mbsc-schedule-event-background,
.mbsc-material.mbsc-timeline-event-start.mbsc-ltr .mbsc-schedule-event-background {
  border-bottom-left-radius: 0.333334em;
  border-top-left-radius: 0.333334em;
}

.mbsc-material.mbsc-timeline-event-end.mbsc-ltr .mbsc-schedule-event-background,
.mbsc-material.mbsc-timeline-event-start.mbsc-rtl .mbsc-schedule-event-background {
  border-bottom-right-radius: 0.333334em;
  border-top-right-radius: 0.333334em;
}

.mbsc-material.mbsc-schedule-event-active .mbsc-schedule-event-background,
.mbsc-material.mbsc-schedule-event-dragging .mbsc-schedule-event-background {
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.14),
    0 1px 8px 0 rgba(0, 0, 0, 0.12),
    0 1px 3px -1px rgba(0, 0, 0, 0.2);
}

.mbsc-material.mbsc-schedule-event-hover .mbsc-schedule-event-background:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.mbsc-material.mbsc-schedule-event-title {
  font-weight: 500;
}

.mbsc-material.mbsc-schedule-event-all-day-background.mbsc-schedule-event-background {
  border-radius: 0;
}

.mbsc-material.mbsc-schedule-event-end.mbsc-rtl .mbsc-schedule-event-all-day-background,
.mbsc-material.mbsc-schedule-event-start.mbsc-ltr .mbsc-schedule-event-all-day-background,
.mbsc-material.mbsc-timeline-event-end.mbsc-rtl .mbsc-schedule-event-all-day-background,
.mbsc-material.mbsc-timeline-event-start.mbsc-ltr .mbsc-schedule-event-all-day-background {
  border-top-left-radius: 0.333334em;
  border-bottom-left-radius: 0.333334em;
}

.mbsc-material.mbsc-schedule-event-end.mbsc-ltr .mbsc-schedule-event-all-day-background,
.mbsc-material.mbsc-schedule-event-start.mbsc-rtl .mbsc-schedule-event-all-day-background,
.mbsc-material.mbsc-timeline-event-end.mbsc-ltr .mbsc-schedule-event-all-day-background,
.mbsc-material.mbsc-timeline-event-start.mbsc-rtl .mbsc-schedule-event-all-day-background {
  border-top-right-radius: 0.333334em;
  border-bottom-right-radius: 0.333334em;
}

.mbsc-material.mbsc-schedule-header-item-large .mbsc-schedule-header-dayname {
  line-height: 2.909091em;
  font-size: 0.6875em;
  text-transform: uppercase;
}

.mbsc-material.mbsc-schedule-header-item-large .mbsc-schedule-header-day {
  height: 1.769231em;
  width: 1.769231em;
  line-height: 1.769231em;
  font-size: 1.625em;
  margin-top: -0.307693em;
}

.mbsc-material.mbsc-event-list-empty {
  color: rgba(48, 48, 48, 0.7);
}

.mbsc-material.mbsc-event-day.mbsc-list-header,
.mbsc-material.mbsc-schedule-date-header {
  background: var(--background-color);
  color: rgba(48, 48, 48, 0.7);
}

.mbsc-material.mbsc-colored-event.mbsc-list-item {
  background: #1a73e8;
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-event.mbsc-list-item.mbsc-focus {
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.4);
}

.mbsc-material.mbsc-event-color {
  background: #1a73e8;
}

.mbsc-material.mbsc-schedule-header-dayname {
  color: #70757a;
}

.mbsc-material.mbsc-schedule-header-day {
  color: #303030;
}

.mbsc-material.mbsc-schedule-header-day-today,
.mbsc-material.mbsc-schedule-header-dayname-curr {
  color: #1a73e8;
}

.mbsc-material.mbsc-schedule-header-day.mbsc-hover {
  background: rgba(26, 115, 232, 0.3);
}

.mbsc-material.mbsc-schedule-header-day.mbsc-selected {
  background-color: #1a73e8;
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-schedule-all-day-item:after,
.mbsc-material.mbsc-schedule-column,
.mbsc-material.mbsc-schedule-item,
.mbsc-material.mbsc-schedule-resource,
.mbsc-material.mbsc-schedule-resource-group,
.mbsc-material.mbsc-schedule-time-col,
.mbsc-material.mbsc-timeline-column,
.mbsc-material.mbsc-timeline-day:after,
.mbsc-material.mbsc-timeline-header,
.mbsc-material.mbsc-timeline-header-column,
.mbsc-material.mbsc-timeline-header-date,
.mbsc-material.mbsc-timeline-header-month,
.mbsc-material.mbsc-timeline-resource,
.mbsc-material.mbsc-timeline-resource-empty,
.mbsc-material.mbsc-timeline-slot-header,
.mbsc-material.mbsc-timeline-slots {
  border-color: #cfcfcf;
}

.mbsc-material.mbsc-schedule-time-wrapper-end:before,
.mbsc-material.mbsc-schedule-time-wrapper:after {
  border-bottom: 1px solid #cfcfcf;
}

.mbsc-material.mbsc-schedule-all-day-text,
.mbsc-material.mbsc-schedule-time {
  color: #70757a;
}

.mbsc-material.mbsc-schedule-time-indicator {
  border-color: #1a73e8;
}

.mbsc-material.mbsc-schedule-time-indicator-day:before {
  background: #1a73e8;
}

.mbsc-material.mbsc-cursor-indicator-time,
.mbsc-material.mbsc-schedule-time-indicator-time {
  background: hsla(0, 0%, 100%, 0.8);
}

.mbsc-material.mbsc-schedule-event,
.mbsc-material.mbsc-schedule-time-indicator-time {
  color: #1a73e8;
}

.mbsc-material.mbsc-schedule-event-inner {
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-schedule-invalid {
  background: hsla(0, 0%, 94.1%, 0.75);
  color: #8a8a8a;
}

.mbsc-material.mbsc-timeline-resource-bg,
.mbsc-material.mbsc-timeline-resource-empty {
  background: var(--background-color);
}

.mbsc-material-dark.mbsc-event-list-empty {
  color: hsla(0, 0%, 100%, 0.7);
}

.mbsc-material-dark.mbsc-event-day.mbsc-list-header,
.mbsc-material-dark.mbsc-schedule-date-header {
  background: var(--background-color);
  color: hsla(0, 0%, 100%, 0.7);
}

.mbsc-material-dark.mbsc-colored-event.mbsc-list-item {
  background: var(--ion-color-primary-tint);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-event.mbsc-list-item.mbsc-focus {
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.4);
}

.mbsc-material-dark.mbsc-event-color {
  background: var(--ion-color-primary-tint);
}

.mbsc-material-dark.mbsc-schedule-header-dayname {
  color: #ddd;
}

.mbsc-material-dark.mbsc-schedule-header-day {
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-schedule-header-day-today,
.mbsc-material-dark.mbsc-schedule-header-dayname-curr {
  color: var(--ion-color-primary-tint);
}

.mbsc-material-dark.mbsc-schedule-header-day.mbsc-hover {
  background: rgba(135, 176, 243, 0.3);
}

.mbsc-material-dark.mbsc-schedule-header-day.mbsc-selected {
  background-color: var(--ion-color-primary-tint);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-schedule-all-day-item:after,
.mbsc-material-dark.mbsc-schedule-column,
.mbsc-material-dark.mbsc-schedule-item,
.mbsc-material-dark.mbsc-schedule-resource,
.mbsc-material-dark.mbsc-schedule-resource-group,
.mbsc-material-dark.mbsc-schedule-time-col,
.mbsc-material-dark.mbsc-timeline-column,
.mbsc-material-dark.mbsc-timeline-day:after,
.mbsc-material-dark.mbsc-timeline-header,
.mbsc-material-dark.mbsc-timeline-header-column,
.mbsc-material-dark.mbsc-timeline-header-date,
.mbsc-material-dark.mbsc-timeline-header-month,
.mbsc-material-dark.mbsc-timeline-resource,
.mbsc-material-dark.mbsc-timeline-resource-empty,
.mbsc-material-dark.mbsc-timeline-slot-header,
.mbsc-material-dark.mbsc-timeline-slots {
  border-color: #2b2b2b;
}

.mbsc-material-dark.mbsc-schedule-time-wrapper-end:before,
.mbsc-material-dark.mbsc-schedule-time-wrapper:after {
  border-bottom: 1px solid #2b2b2b;
}

.mbsc-material-dark.mbsc-schedule-all-day-text,
.mbsc-material-dark.mbsc-schedule-time {
  color: #ddd;
}

.mbsc-material-dark.mbsc-schedule-time-indicator {
  border-color: var(--ion-color-primary-tint);
}

.mbsc-material-dark.mbsc-schedule-time-indicator-day:before {
  background: var(--ion-color-primary-tint);
}

.mbsc-material-dark.mbsc-cursor-indicator-time,
.mbsc-material-dark.mbsc-schedule-time-indicator-time {
  background: rgba(0, 0, 0, 0.8);
}

.mbsc-material-dark.mbsc-schedule-event,
.mbsc-material-dark.mbsc-schedule-time-indicator-time {
  color: var(--ion-color-primary-tint);
}

.mbsc-material-dark.mbsc-schedule-event-inner {
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-schedule-invalid {
  background: rgba(26, 26, 26, 0.75);
  color: #787878;
}

.mbsc-material-dark.mbsc-timeline-resource-bg,
.mbsc-material-dark.mbsc-timeline-resource-empty {
  background: var(--background-color);
}

.mbsc-event-list {
  -moz-box-flex: 1;
  flex: 1 1 auto;
  position: relative;
}

.mbsc-event-list-scroll {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.mbsc-event-list-empty {
  text-align: center;
  margin: 3em;
  font-size: 1.5em;
}

.mbsc-event-day {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 3;
}

.mbsc-event-color,
.mbsc-event-time {
  -moz-box-flex: 0;
  flex: 0 0 auto;
}

.mbsc-event-content {
  -moz-box-flex: 1;
  flex: 1 1 auto;
  overflow: hidden;
}

.mbsc-event-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mbsc-popover-list {
  width: 20em;
  max-width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.mbsc-popover-hidden {
  visibility: hidden;
}

.mbsc-draggable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mbsc-drag-clone {
  position: fixed;
  display: table;
  z-index: 99;
  margin: 15px 0 0 !important;
  box-shadow:
    0 0 transparent,
    0 0 transparent,
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  cursor: move;
}

.mbsc-drag-clone:after {
  content: "";
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: -50px;
  right: -50px;
}

.mbsc-ios.mbsc-form-control-wrapper {
  margin-top: -1px;
}

.mbsc-ios.mbsc-form-control-wrapper.mbsc-error {
  z-index: 2;
}

.mbsc-ios.mbsc-form-control-wrapper:after,
.mbsc-ios.mbsc-form-control-wrapper:before {
  content: "";
  position: absolute;
  border-top: 1px solid transparent;
}

.mbsc-ios.mbsc-form-control-wrapper.mbsc-ltr:after,
.mbsc-ios.mbsc-form-control-wrapper.mbsc-ltr:before {
  right: 0;
  left: 1em;
}

.mbsc-ios.mbsc-form-control-wrapper.mbsc-rtl:after,
.mbsc-ios.mbsc-form-control-wrapper.mbsc-rtl:before {
  left: 0;
  right: 1em;
}

.mbsc-ios.mbsc-form-control-wrapper:before {
  top: 0;
}

.mbsc-ios.mbsc-form-control-wrapper:after {
  bottom: 0;
}

.mbsc-block-title+.mbsc-ios.mbsc-form-control-wrapper.mbsc-ltr:before,
.mbsc-form-group-title+.mbsc-ios.mbsc-form-control-wrapper.mbsc-ltr:before,
.mbsc-ios.mbsc-form-control-wrapper.mbsc-ltr:first-child:before,
.mbsc-ios.mbsc-form-control-wrapper.mbsc-ltr:last-child:after {
  left: 0;
}

.mbsc-block-title+.mbsc-ios.mbsc-form-control-wrapper.mbsc-rtl:before,
.mbsc-form-group-title+.mbsc-ios.mbsc-form-control-wrapper.mbsc-rtl:before,
.mbsc-ios.mbsc-form-control-wrapper.mbsc-rtl:first-child:before,
.mbsc-ios.mbsc-form-control-wrapper.mbsc-rtl:last-child:after {
  right: 0;
}

.mbsc-ios.mbsc-description.mbsc-disabled,
.mbsc-ios.mbsc-form-control-label.mbsc-disabled {
  opacity: 0.3;
}

.mbsc-ios .mbsc-form-group-inset .mbsc-form-control-wrapper:first-child,
.mbsc-ios .mbsc-form-group-inset .mbsc-form-group-title+.mbsc-form-control-wrapper {
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}

.mbsc-ios .mbsc-form-group-inset .mbsc-form-control-wrapper:last-child {
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}

.mbsc-ios .mbsc-form-group-inset .mbsc-form-control-wrapper:first-child:before,
.mbsc-ios .mbsc-form-group-inset .mbsc-form-control-wrapper:last-child:after,
.mbsc-ios .mbsc-form-group-inset .mbsc-form-group-title,
.mbsc-ios .mbsc-form-group-inset .mbsc-form-group-title+.mbsc-form-control-wrapper:before {
  border-width: 0;
}

.mbsc-ios.mbsc-form-control-wrapper {
  background: var(--background-color);
}

.mbsc-ios.mbsc-form-control-wrapper:after,
.mbsc-ios.mbsc-form-control-wrapper:before {
  border-color: #ccc;
}

.mbsc-ios.mbsc-form-control-wrapper.mbsc-error+.mbsc-form-control-wrapper:before,
.mbsc-ios.mbsc-form-control-wrapper.mbsc-error:after {
  border-color: #d8332a;
}

.mbsc-ios-dark.mbsc-form-control-wrapper {
  background: var(--ion-color-base);
}

.mbsc-ios-dark.mbsc-form-control-wrapper:after,
.mbsc-ios-dark.mbsc-form-control-wrapper:before {
  border-color: #333;
}

.mbsc-ios-dark.mbsc-form-control-wrapper.mbsc-error+.mbsc-form-control-wrapper:before,
.mbsc-ios-dark.mbsc-form-control-wrapper.mbsc-error:after {
  border-color: #d8332a;
}

.mbsc-ios-dark.mbsc-popup .mbsc-ios-dark.mbsc-form-control-wrapper {
  background: #2b2b2b;
}

.mbsc-material.mbsc-description.mbsc-disabled,
.mbsc-material.mbsc-form-control-label.mbsc-disabled {
  opacity: 0.3;
}

.mbsc-form-control-label {
  display: block;
}

.mbsc-form-control-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
  opacity: 0;
  margin: 0;
  z-index: 3;
}

.mbsc-ios.mbsc-textfield-wrapper-has-icon-left.mbsc-ltr,
.mbsc-ios.mbsc-textfield-wrapper-has-icon-right.mbsc-rtl {
  z-index: 1;
}

.mbsc-ios.mbsc-textfield-wrapper-has-icon-left.mbsc-ltr:after,
.mbsc-ios.mbsc-textfield-wrapper-has-icon-left.mbsc-ltr:before {
  left: 3.375em;
}

.mbsc-ios.mbsc-textfield-wrapper-has-icon-right.mbsc-rtl:after,
.mbsc-ios.mbsc-textfield-wrapper-has-icon-right.mbsc-rtl:before {
  right: 3.375em;
}

.mbsc-ios.mbsc-textfield-inner {
  position: static;
  -moz-box-flex: 1;
  flex: 1 auto;
  z-index: -1;
}

.mbsc-ios.mbsc-textfield-inner.mbsc-disabled {
  opacity: 0.5;
}

.mbsc-ios.mbsc-textfield {
  display: -moz-box;
  display: flex;
  padding: 0 1em;
  background: transparent;
  height: 2.75em;
}

.mbsc-ios.mbsc-textfield-has-icon-left {
  padding-left: 3.375em;
}

.mbsc-ios.mbsc-textfield-has-icon-right {
  padding-right: 3.375em;
}

.mbsc-ios.mbsc-textfield-floating,
.mbsc-ios.mbsc-textfield-stacked {
  height: 3.5em;
  padding-top: 1.25em;
}

.mbsc-ios.mbsc-textfield-icon {
  top: 0.625em;
  z-index: 1;
}

.mbsc-ios.mbsc-textfield-icon-left {
  left: 0.9375em;
}

.mbsc-ios.mbsc-textfield-icon-right {
  right: 0.9375em;
}

.mbsc-ios.mbsc-textfield-icon-floating,
.mbsc-ios.mbsc-textfield-icon-stacked {
  top: 1em;
}

.mbsc-ios.mbsc-label-inline {
  line-height: 2.75em;
}

.mbsc-ios.mbsc-label-inline.mbsc-ltr {
  padding-left: 1em;
}

.mbsc-ios.mbsc-label-inline.mbsc-rtl {
  padding-right: 1em;
}

.mbsc-ios.mbsc-label-stacked {
  top: 0.666667em;
  font-size: 0.75em;
  line-height: 1em;
}

.mbsc-ios.mbsc-label-stacked.mbsc-ltr {
  left: 1.333334em;
}

.mbsc-ios.mbsc-label-stacked.mbsc-rtl {
  right: 1.333334em;
}

.mbsc-ios.mbsc-label-floating {
  top: 0.875em;
  line-height: 2em;
}

.mbsc-ios.mbsc-label-floating.mbsc-ltr {
  left: 1em;
}

.mbsc-ios.mbsc-label-floating.mbsc-rtl {
  right: 1em;
}

.mbsc-ios.mbsc-label-floating-active.mbsc-label {
  -webkit-transform: translateY(-0.75em) scale(0.75);
  transform: translateY(-0.75em) scale(0.75);
}

.mbsc-ios.mbsc-label.mbsc-disabled {
  opacity: 0.5;
}

.mbsc-ios.mbsc-error-message {
  display: block;
  padding: 0 1.333334em;
  line-height: 1.666667em;
}

.mbsc-ios.mbsc-error-message-underline {
  position: static;
}

.mbsc-ios.mbsc-error-message-has-icon-left.mbsc-ltr {
  padding-left: 4.5em;
}

.mbsc-ios.mbsc-error-message-has-icon-right.mbsc-rtl {
  padding-right: 4.5em;
}

.mbsc-ios .mbsc-textfield-wrapper-underline {
  overflow: hidden;
}

.mbsc-ios.mbsc-textfield-underline-inline-has-icon-left.mbsc-ltr {
  padding-left: 1em;
}

.mbsc-ios.mbsc-textfield-underline-inline-has-icon-right.mbsc-rtl {
  padding-right: 1em;
}

.mbsc-ios.mbsc-label-underline {
  margin: 0;
}

.mbsc-ios.mbsc-label-underline-stacked-has-icon-left.mbsc-ltr {
  left: 4.5em;
}

.mbsc-ios.mbsc-label-underline-stacked-has-icon-right.mbsc-rtl {
  right: 4.5em;
}

.mbsc-ios.mbsc-label-underline-inline-has-icon-left.mbsc-ltr {
  padding-left: 3.375em;
}

.mbsc-ios.mbsc-label-underline-inline-has-icon-right.mbsc-rtl {
  padding-right: 3.375em;
}

.mbsc-ios.mbsc-label-underline-floating-has-icon-left.mbsc-ltr {
  left: 3.375em;
}

.mbsc-ios.mbsc-label-underline-floating-has-icon-right.mbsc-rtl {
  right: 3.375em;
}

.mbsc-ios.mbsc-error-message-underline.mbsc-error-message-inline.mbsc-ltr {
  padding-left: 1.333334em;
}

.mbsc-ios.mbsc-error-message-underline.mbsc-error-message-inline.mbsc-rtl {
  padding-right: 1.333334em;
}

.mbsc-ios.mbsc-textfield-wrapper-box,
.mbsc-ios.mbsc-textfield-wrapper-outline {
  margin: 1.5em 1em;
}

.mbsc-ios.mbsc-textfield-wrapper-box.mbsc-font:after,
.mbsc-ios.mbsc-textfield-wrapper-box.mbsc-font:before,
.mbsc-ios.mbsc-textfield-wrapper-outline.mbsc-font:after,
.mbsc-ios.mbsc-textfield-wrapper-outline.mbsc-font:before {
  border: none;
}

.mbsc-ios.mbsc-textfield-box,
.mbsc-ios.mbsc-textfield-outline {
  border-radius: 0.5em;
  border: 1px solid transparent;
}

.mbsc-ios.mbsc-textfield-inner-box,
.mbsc-ios.mbsc-textfield-inner-outline {
  position: relative;
}

.mbsc-ios.mbsc-label-box-stacked-has-icon-left.mbsc-ltr,
.mbsc-ios.mbsc-label-outline-stacked-has-icon-left.mbsc-ltr {
  left: 4.5em;
}

.mbsc-ios.mbsc-label-box-stacked-has-icon-right.mbsc-rtl,
.mbsc-ios.mbsc-label-outline-stacked-has-icon-right.mbsc-rtl {
  right: 4.5em;
}

.mbsc-ios.mbsc-label-box-floating,
.mbsc-ios.mbsc-label-box-stacked,
.mbsc-ios.mbsc-label-outline-floating,
.mbsc-ios.mbsc-label-outline-stacked {
  margin: 0 1px;
}

.mbsc-ios.mbsc-label-box-floating-has-icon-left.mbsc-ltr,
.mbsc-ios.mbsc-label-outline-floating-has-icon-left.mbsc-ltr {
  left: 3.375em;
}

.mbsc-ios.mbsc-label-box-floating-has-icon-right.mbsc-rtl,
.mbsc-ios.mbsc-label-outline-floating-has-icon-right.mbsc-rtl {
  right: 3.375em;
}

.mbsc-ios.mbsc-error-message-box,
.mbsc-ios.mbsc-error-message-outline {
  margin: 0 1px;
}

.mbsc-ios.mbsc-select.mbsc-ltr {
  padding-right: 3.375em;
}

.mbsc-ios.mbsc-select.mbsc-rtl {
  padding-left: 3.375em;
}

.mbsc-ios.mbsc-select.mbsc-textfield-has-icon-right.mbsc-ltr {
  padding-right: 4.875em;
}

.mbsc-ios.mbsc-select.mbsc-textfield-has-icon-left.mbsc-rtl {
  padding-left: 4.875em;
}

.mbsc-ios.mbsc-select-icon {
  top: 0.625em;
}

.mbsc-ios.mbsc-select-icon-floating,
.mbsc-ios.mbsc-select-icon-stacked {
  top: 1em;
}

.mbsc-ios.mbsc-select-icon.mbsc-ltr {
  right: 0.9375em;
}

.mbsc-ios.mbsc-select-icon.mbsc-rtl {
  left: 0.9375em;
}

.mbsc-ios.mbsc-select-icon-right.mbsc-ltr {
  right: 3.375em;
}

.mbsc-ios.mbsc-select-icon-left.mbsc-rtl {
  left: 3.375em;
}

.mbsc-ios.mbsc-textarea {
  height: 3em;
  border: 0;
}

.mbsc-ios.mbsc-textarea.mbsc-textfield-floating,
.mbsc-ios.mbsc-textarea.mbsc-textfield-stacked {
  padding-top: 0;
}

.mbsc-ios.mbsc-textarea-inner {
  padding-top: 0.625em;
  padding-bottom: 0.625em;
}

.mbsc-ios.mbsc-textarea-inner.mbsc-textfield-inner-box,
.mbsc-ios.mbsc-textarea-inner.mbsc-textfield-inner-outline {
  border: 1px solid transparent;
  border-radius: 0.5em;
}

.mbsc-ios.mbsc-textarea-inner.mbsc-textfield-inner-floating,
.mbsc-ios.mbsc-textarea-inner.mbsc-textfield-inner-stacked {
  padding-top: 1.375em;
}

.mbsc-ios.mbsc-textfield-tags-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.mbsc-ios.mbsc-textfield.mbsc-textfield-tags {
  padding-top: 0.3125em;
  padding-bottom: 0.3125em;
  min-height: 2.75em;
}

.mbsc-ios.mbsc-textfield-tags.mbsc-textfield-floating,
.mbsc-ios.mbsc-textfield-tags.mbsc-textfield-stacked {
  min-height: 2.125em;
  padding-top: 0;
  padding-bottom: 0;
}

.mbsc-ios.mbsc-textfield-tag {
  border-radius: 1em;
}

.mbsc-ios.mbsc-textfield-wrapper {
  background: none;
}

.mbsc-ios.mbsc-textfield-wrapper-underline {
  background: var(--background-color);
}

.mbsc-ios.mbsc-label,
.mbsc-ios.mbsc-textfield {
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-textfield-box,
.mbsc-ios.mbsc-textfield-outline {
  background: var(--background-color);
}

.mbsc-ios.mbsc-textfield-outline {
  border-color: #ccc;
}

.mbsc-ios.mbsc-select-icon,
.mbsc-ios.mbsc-textfield-icon {
  color: #8c8c8c;
}

.mbsc-ios.mbsc-textfield-box.mbsc-error,
.mbsc-ios.mbsc-textfield-outline.mbsc-error {
  border-color: #d8332a;
}

.mbsc-ios.mbsc-error-message {
  color: #d8332a;
}

.mbsc-ios.mbsc-select,
.mbsc-ios.mbsc-textarea-inner.mbsc-textfield-inner-box,
.mbsc-ios.mbsc-textarea-inner.mbsc-textfield-inner-outline {
  background: var(--background-color);
}

.mbsc-ios.mbsc-textarea-inner.mbsc-textfield-inner-outline {
  border-color: #ccc;
}

.mbsc-ios.mbsc-textarea-inner.mbsc-error {
  border-color: #d8332a;
}

.mbsc-ios.mbsc-textfield-tag {
  background: #dedede;
}

.mbsc-ios.mbsc-textfield-tag-clear {
  color: #8c8c8c;
}

.mbsc-ios-dark.mbsc-textfield-wrapper {
  background: none;
}

.mbsc-ios-dark.mbsc-textfield-wrapper-underline {
  background: var(--ion-color-base);
}

.mbsc-ios-dark.mbsc-label,
.mbsc-ios-dark.mbsc-textfield {
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-textfield-box,
.mbsc-ios-dark.mbsc-textfield-outline {
  background: var(--ion-color-base);
}

.mbsc-ios-dark.mbsc-textfield-outline {
  border-color: #333;
}

.mbsc-ios-dark.mbsc-select-icon,
.mbsc-ios-dark.mbsc-textfield-icon {
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-textfield-box.mbsc-error,
.mbsc-ios-dark.mbsc-textfield-outline.mbsc-error {
  border-color: #d8332a;
}

.mbsc-ios-dark.mbsc-error-message {
  color: #d8332a;
}

.mbsc-ios-dark.mbsc-select,
.mbsc-ios-dark.mbsc-textarea-inner.mbsc-textfield-inner-box,
.mbsc-ios-dark.mbsc-textarea-inner.mbsc-textfield-inner-outline {
  background: var(--ion-color-base);
}

.mbsc-ios-dark.mbsc-textarea-inner.mbsc-textfield-inner-outline {
  border-color: #333;
}

.mbsc-ios-dark.mbsc-textarea-inner.mbsc-error {
  border-color: #d8332a;
}

.mbsc-ios-dark.mbsc-popup .mbsc-ios-dark.mbsc-textfield-wrapper {
  background: none;
}

.mbsc-ios-dark.mbsc-popup .mbsc-ios-dark.mbsc-select,
.mbsc-ios-dark.mbsc-popup .mbsc-ios-dark.mbsc-textarea-inner.mbsc-textfield-inner-box,
.mbsc-ios-dark.mbsc-popup .mbsc-ios-dark.mbsc-textarea-inner.mbsc-textfield-inner-outline,
.mbsc-ios-dark.mbsc-popup .mbsc-ios-dark.mbsc-textfield-box,
.mbsc-ios-dark.mbsc-popup .mbsc-ios-dark.mbsc-textfield-outline,
.mbsc-ios-dark.mbsc-popup .mbsc-ios-dark.mbsc-textfield-wrapper-underline {
  background: #2b2b2b;
}

.mbsc-ios-dark.mbsc-textfield-tag {
  background: #3b3b3b;
}

.mbsc-ios-dark.mbsc-textfield-tag-clear {
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-textfield-wrapper {
  margin: 1.5em 1em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mbsc-material.mbsc-textfield-inner.mbsc-disabled {
  opacity: 0.5;
}

.mbsc-material.mbsc-textfield {
  display: block;
  width: 100%;
  height: 2.25em;
  background-color: transparent;
  border-bottom: 1px solid;
  font-size: 1em;
  transition: border-color 0.2s;
}

.mbsc-material.mbsc-textfield-has-icon-left {
  padding-left: 2em;
}

.mbsc-material.mbsc-textfield-has-icon-right {
  padding-right: 2em;
}

.mbsc-material.mbsc-textfield-icon {
  top: 0.375em;
}

.mbsc-material.mbsc-textfield-icon-floating,
.mbsc-material.mbsc-textfield-icon-outline,
.mbsc-material.mbsc-textfield-icon-stacked {
  top: 1em;
}

.mbsc-material .mbsc-textfield-ripple {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: -webkit-transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  transition:
    transform 0.18s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.mbsc-material .mbsc-textfield-ripple-active {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.mbsc-material.mbsc-label {
  font-size: 0.75em;
}

.mbsc-material.mbsc-label-inline {
  line-height: 2em;
  font-size: 1em;
}

.mbsc-material.mbsc-label-inline.mbsc-ltr {
  padding-right: 0.5em;
}

.mbsc-material.mbsc-label-inline.mbsc-rtl {
  padding-left: 0.5em;
}

.mbsc-material.mbsc-label-floating {
  font-size: 1em;
  line-height: 1.5em;
  top: 1.125em;
}

.mbsc-material.mbsc-label-floating-active {
  -webkit-transform: translateY(-1.125em) scale(0.75);
  transform: translateY(-1.125em) scale(0.75);
}

.mbsc-material.mbsc-label.mbsc-disabled {
  opacity: 0.5;
}

.mbsc-material.mbsc-error-message.mbsc-ltr {
  left: 0;
}

.mbsc-material.mbsc-error-message.mbsc-rtl {
  right: 0;
}

.mbsc-material.mbsc-error-message-has-icon-left.mbsc-ltr {
  left: 2.66667em;
}

.mbsc-material.mbsc-error-message-has-icon-right.mbsc-rtl {
  right: 2.66667em;
}

.mbsc-material.mbsc-textfield-underline-floating,
.mbsc-material.mbsc-textfield-underline-stacked {
  height: 3em;
  padding-top: 0.875em;
}

.mbsc-material.mbsc-textfield-icon-underline {
  top: 0.25em;
}

.mbsc-material.mbsc-textfield-icon-underline.mbsc-textfield-icon-floating,
.mbsc-material.mbsc-textfield-icon-underline.mbsc-textfield-icon-stacked {
  top: 1.125em;
}

.mbsc-material.mbsc-label-underline-inline {
  padding-top: 1px;
}

.mbsc-material.mbsc-label-underline-stacked-has-icon-left.mbsc-ltr {
  left: 2.66667em;
}

.mbsc-material.mbsc-label-underline-stacked-has-icon-right.mbsc-rtl {
  right: 2.66667em;
}

.mbsc-material.mbsc-label-underline-floating-has-icon-left.mbsc-ltr {
  left: 2em;
}

.mbsc-material.mbsc-label-underline-floating-has-icon-right.mbsc-rtl {
  right: 2em;
}

.mbsc-material.mbsc-textfield-box,
.mbsc-material.mbsc-textfield-inner-box {
  border-radius: 0.25em 0.25em 0 0;
}

.mbsc-material.mbsc-textfield-box {
  padding: 0 1em;
}

.mbsc-material.mbsc-textfield-box-floating,
.mbsc-material.mbsc-textfield-box-stacked {
  height: 3.5em;
  padding-top: 1.25em;
}

.mbsc-material.mbsc-textfield-underline.mbsc-disabled {
  border-style: dotted;
}

.mbsc-material.mbsc-label-box-inline {
  padding-top: 1px;
}

.mbsc-material.mbsc-label-box-stacked {
  top: 0.666667em;
}

.mbsc-material.mbsc-label-box-floating {
  top: 1em;
}

.mbsc-material.mbsc-label-box-floating.mbsc-label-floating-active {
  -webkit-transform: translateY(-0.625em) scale(0.75);
  transform: translateY(-0.625em) scale(0.75);
}

.mbsc-material.mbsc-textfield-inner-outline {
  padding: 0 2px;
}

.mbsc-material.mbsc-textfield-outline {
  height: 3.5em;
  padding: 2px 1em;
  border: 0;
  border-radius: 4px;
}

.mbsc-material.mbsc-textfield-fieldset {
  top: -0.5em;
  border: 1px solid;
  border-radius: 4px;
  transition: border-color 0.2s;
}

.mbsc-material.mbsc-textfield-fieldset-has-icon-left {
  padding-left: 3em;
}

.mbsc-material.mbsc-textfield-fieldset-has-icon-right {
  padding-right: 3em;
}

.mbsc-material.mbsc-textfield-fieldset.mbsc-focus {
  border-width: 2px;
}

.mbsc-material.mbsc-textfield-legend {
  padding: 0;
  margin: 0;
  font-size: 0.75em;
  color: transparent;
  width: 0.01px;
  white-space: nowrap;
}

.mbsc-material.mbsc-textfield-legend-active {
  width: auto;
  padding: 0 0.333334em;
  margin: 0 -0.333334em;
}

.mbsc-material.mbsc-label-outline-inline {
  line-height: 3.375em;
}

.mbsc-material.mbsc-label-outline-stacked {
  top: -0.5em;
  margin: 0 2px;
}

.mbsc-material.mbsc-label-outline-floating {
  top: 1em;
  margin: 0 2px;
}

.mbsc-material.mbsc-label-outline-floating.mbsc-label-floating-active {
  margin-top: -1px;
  -webkit-transform: translateY(-1.5em) scale(0.75);
  transform: translateY(-1.5em) scale(0.75);
}

.mbsc-material.mbsc-error-message-outline {
  margin: 0 2px;
}

.mbsc-material.mbsc-textfield-box-has-icon-left,
.mbsc-material.mbsc-textfield-outline-has-icon-left {
  padding-left: 3em;
}

.mbsc-material.mbsc-textfield-box-has-icon-right,
.mbsc-material.mbsc-textfield-outline-has-icon-right {
  padding-right: 3em;
}

.mbsc-material.mbsc-textfield-icon-box-left,
.mbsc-material.mbsc-textfield-icon-outline-left {
  left: 0.75em;
}

.mbsc-material.mbsc-textfield-icon-box-right,
.mbsc-material.mbsc-textfield-icon-outline-right {
  right: 0.75em;
}

.mbsc-material.mbsc-label-box-stacked.mbsc-ltr,
.mbsc-material.mbsc-label-outline-stacked.mbsc-ltr {
  left: 1.333334em;
}

.mbsc-material.mbsc-label-box-stacked.mbsc-rtl,
.mbsc-material.mbsc-label-outline-stacked.mbsc-rtl {
  right: 1.333334em;
}

.mbsc-material.mbsc-label-box-stacked-has-icon-left.mbsc-ltr,
.mbsc-material.mbsc-label-outline-stacked-has-icon-left.mbsc-ltr {
  left: 4em;
}

.mbsc-material.mbsc-label-box-stacked-has-icon-right.mbsc-rtl,
.mbsc-material.mbsc-label-outline-stacked-has-icon-right.mbsc-rtl {
  right: 4em;
}

.mbsc-material.mbsc-label-box-floating.mbsc-ltr,
.mbsc-material.mbsc-label-outline-floating.mbsc-ltr {
  left: 1em;
}

.mbsc-material.mbsc-label-box-floating.mbsc-rtl,
.mbsc-material.mbsc-label-outline-floating.mbsc-rtl {
  right: 1em;
}

.mbsc-material.mbsc-label-box-floating-has-icon-left.mbsc-ltr,
.mbsc-material.mbsc-label-outline-floating-has-icon-left.mbsc-ltr {
  left: 3em;
}

.mbsc-material.mbsc-label-box-floating-has-icon-left.mbsc-rtl,
.mbsc-material.mbsc-label-outline-floating-has-icon-left.mbsc-rtl {
  right: 1em;
}

.mbsc-material.mbsc-label-box-floating-has-icon-right.mbsc-rtl,
.mbsc-material.mbsc-label-outline-floating-has-icon-right.mbsc-rtl {
  right: 3em;
}

.mbsc-material.mbsc-error-message-box.mbsc-ltr,
.mbsc-material.mbsc-error-message-outline.mbsc-ltr {
  left: 1.333334em;
}

.mbsc-material.mbsc-error-message-box.mbsc-rtl,
.mbsc-material.mbsc-error-message-outline.mbsc-rtl {
  right: 1.333334em;
}

.mbsc-material.mbsc-error-message-box.mbsc-error-message-has-icon-left.mbsc-ltr,
.mbsc-material.mbsc-error-message-outline.mbsc-error-message-has-icon-left.mbsc-ltr {
  left: 4em;
}

.mbsc-material.mbsc-error-message-box.mbsc-error-message-has-icon-right.mbsc-rtl,
.mbsc-material.mbsc-error-message-outline.mbsc-error-message-has-icon-right.mbsc-rtl {
  right: 4em;
}

.mbsc-material.mbsc-select.mbsc-ltr {
  padding-right: 3em;
}

.mbsc-material.mbsc-select.mbsc-rtl {
  padding-left: 3em;
}

.mbsc-material.mbsc-select.mbsc-textfield-has-icon-right.mbsc-ltr {
  padding-right: 4.5em;
}

.mbsc-material.mbsc-select.mbsc-textfield-has-icon-left.mbsc-rtl {
  padding-left: 4.5em;
}

.mbsc-material.mbsc-select.mbsc-textfield-underline-has-icon-right.mbsc-ltr {
  padding-right: 3.75em;
}

.mbsc-material.mbsc-select.mbsc-textfield-underline-has-icon-left.mbsc-rtl {
  padding-left: 3.75em;
}

.mbsc-material.mbsc-select-icon {
  top: 0.375em;
}

.mbsc-material.mbsc-select-icon.mbsc-ltr {
  right: 0.75em;
}

.mbsc-material.mbsc-select-icon.mbsc-rtl {
  left: 0.75em;
}

.mbsc-material.mbsc-select-icon-right.mbsc-ltr {
  right: 3em;
}

.mbsc-material.mbsc-select-icon-left.mbsc-rtl {
  left: 3em;
}

.mbsc-material.mbsc-select-icon-floating,
.mbsc-material.mbsc-select-icon-outline,
.mbsc-material.mbsc-select-icon-stacked {
  top: 1em;
}

.mbsc-material.mbsc-select-icon-underline {
  top: 0.25em;
}

.mbsc-material.mbsc-select-icon-underline.mbsc-ltr {
  right: 0;
}

.mbsc-material.mbsc-select-icon-underline.mbsc-rtl {
  left: 0;
}

.mbsc-material.mbsc-select-icon-underline.mbsc-select-icon-right.mbsc-ltr {
  right: 2.25em;
}

.mbsc-material.mbsc-select-icon-underline.mbsc-select-icon-left.mbsc-rtl {
  left: 2.25em;
}

.mbsc-material.mbsc-select-icon-underline.mbsc-select-icon-floating,
.mbsc-material.mbsc-select-icon-underline.mbsc-select-icon-stacked {
  top: 1.125em;
}

.mbsc-material.mbsc-textarea {
  height: 1.875em;
  padding-bottom: 0.375em;
}

.mbsc-material.mbsc-textarea.mbsc-textfield-floating,
.mbsc-material.mbsc-textarea.mbsc-textfield-stacked {
  padding-top: 0;
}

.mbsc-material.mbsc-textarea.mbsc-textfield-outline {
  height: 1.5em;
  padding-top: 0;
  padding-bottom: 0;
}

.mbsc-material.mbsc-textarea.mbsc-textfield-underline {
  padding-bottom: 0.3125em;
}

.mbsc-material.mbsc-textarea-inner.mbsc-textfield-inner-box {
  padding-top: 0.375em;
}

.mbsc-material.mbsc-textarea-inner.mbsc-textfield-inner-floating,
.mbsc-material.mbsc-textarea-inner.mbsc-textfield-inner-stacked {
  padding-top: 1.625em;
}

.mbsc-material.mbsc-textarea-inner.mbsc-textfield-inner-outline {
  padding-top: 1em;
  padding-bottom: 1em;
}

.mbsc-material.mbsc-textarea-inner.mbsc-textfield-inner-underline {
  padding-top: 0.25em;
}

.mbsc-material.mbsc-textarea-inner.mbsc-textfield-inner-underline.mbsc-textfield-inner-floating,
.mbsc-material.mbsc-textarea-inner.mbsc-textfield-inner-underline.mbsc-textfield-inner-stacked {
  padding-top: 1.125em;
}

.mbsc-material.mbsc-textfield-tags-inner.mbsc-textfield-inner-inline,
.mbsc-material.mbsc-textfield-tags-inner.mbsc-textfield-inner-underline {
  padding-top: 0;
}

.mbsc-material.mbsc-textfield-tags-inner.mbsc-textfield-inner-outline {
  padding-top: 0.625em;
  padding-bottom: 0.625em;
}

.mbsc-material.mbsc-textfield-tags.mbsc-textfield {
  padding-bottom: 0;
  min-height: 2.25em;
}

.mbsc-material.mbsc-textfield-tags.mbsc-textfield-outline {
  padding-top: 1px;
  padding-bottom: 1px;
}

.mbsc-material.mbsc-textfield-tag {
  border-radius: 1em;
}

.mbsc-material.mbsc-textfield {
  border-bottom-color: rgba(0, 0, 0, 0.42);
  color: rgba(0, 0, 0, 0.87);
}

.mbsc-material.mbsc-textfield.mbsc-hover {
  border-color: rgba(0, 0, 0, 0.87);
}

.mbsc-material.mbsc-textfield.mbsc-error {
  border-color: #de3226;
}

.mbsc-material.mbsc-select-icon,
.mbsc-material.mbsc-textfield-icon {
  color: rgba(0, 0, 0, 0.54);
}

.mbsc-material.mbsc-textfield-ripple {
  background-color: #1a73e8;
}

.mbsc-material.mbsc-textfield-ripple.mbsc-error {
  background-color: #de3226;
}

.mbsc-material.mbsc-label {
  color: rgba(0, 0, 0, 0.6);
}

.mbsc-material.mbsc-label-floating.mbsc-focus,
.mbsc-material.mbsc-label-stacked.mbsc-focus {
  color: #1a73e8;
}

.mbsc-material.mbsc-error-message,
.mbsc-material.mbsc-label.mbsc-error {
  color: #de3226;
}

.mbsc-material.mbsc-select {
  background: var(--background-color);
}

.mbsc-material.mbsc-textfield-box.mbsc-select,
.mbsc-material.mbsc-textfield-inner-box {
  background: #f5f5f5;
}

.mbsc-material.mbsc-textfield-box.mbsc-select.mbsc-hover,
.mbsc-material.mbsc-textfield-inner-box.mbsc-hover {
  background: #ededed;
}

.mbsc-material.mbsc-textfield-box.mbsc-select.mbsc-focus,
.mbsc-material.mbsc-textfield-inner-box.mbsc-focus {
  background: #e3e3e3;
}

.mbsc-material.mbsc-textfield-fieldset {
  border-color: rgba(0, 0, 0, 0.42);
}

.mbsc-material.mbsc-textfield-fieldset.mbsc-hover {
  border-color: rgba(0, 0, 0, 0.87);
}

.mbsc-material.mbsc-textfield-fieldset.mbsc-focus {
  border-color: #1a73e8;
}

.mbsc-material.mbsc-textfield-fieldset.mbsc-error {
  border-color: #de3226;
}

.mbsc-material.mbsc-textfield-fieldset.disabled {
  border-color: rgba(0, 0, 0, 0.87);
}

.mbsc-material.mbsc-textfield-tag {
  background: #d4d4d4;
}

.mbsc-material.mbsc-textfield-tag-clear {
  color: rgba(0, 0, 0, 0.54);
}

.mbsc-material-dark.mbsc-textfield {
  border-bottom-color: var(--ion-text-color);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-textfield.mbsc-hover {
  border-color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-textfield.mbsc-error {
  border-color: #de3226;
}

.mbsc-material-dark.mbsc-select-icon,
.mbsc-material-dark.mbsc-textfield-icon {
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-textfield-ripple {
  background-color: var(--ion-color-primary-tint);
}

.mbsc-material-dark.mbsc-textfield-ripple.mbsc-error {
  background-color: #de3226;
}

.mbsc-material-dark.mbsc-label {
  color: hsla(0, 0%, 100%, 0.6);
}

.mbsc-material-dark.mbsc-label-floating.mbsc-focus,
.mbsc-material-dark.mbsc-label-stacked.mbsc-focus {
  color: var(--ion-color-primary-tint);
}

.mbsc-material-dark.mbsc-error-message,
.mbsc-material-dark.mbsc-label.mbsc-error {
  color: #de3226;
}

.mbsc-material-dark.mbsc-select {
  background: var(--background-color);
}

.mbsc-material-dark.mbsc-textfield-box.mbsc-select,
.mbsc-material-dark.mbsc-textfield-inner-box {
  background: #0a0a0a;
}

.mbsc-material-dark.mbsc-textfield-box.mbsc-select.mbsc-hover,
.mbsc-material-dark.mbsc-textfield-inner-box.mbsc-hover {
  background: #121212;
}

.mbsc-material-dark.mbsc-textfield-box.mbsc-select.mbsc-focus,
.mbsc-material-dark.mbsc-textfield-inner-box.mbsc-focus {
  background: var(--ion-color-base);
}

.mbsc-material-dark.mbsc-textfield-fieldset,
.mbsc-material-dark.mbsc-textfield-fieldset.mbsc-hover {
  border-color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-textfield-fieldset.mbsc-focus {
  border-color: var(--ion-color-primary-tint);
}

.mbsc-material-dark.mbsc-textfield-fieldset.mbsc-error {
  border-color: #de3226;
}

.mbsc-material-dark.mbsc-textfield-fieldset.disabled {
  border-color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-textfield-tag {
  background: #454545;
}

.mbsc-material-dark.mbsc-textfield-tag-clear {
  color: var(--ion-text-color);
}

@-webkit-keyframes autofill {
  0% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes autofill {
  0% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

.mbsc-textfield-wrapper {
  position: relative;
  display: block;
  margin: 0;
  z-index: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mbsc-textfield-wrapper-inline {
  display: -moz-box;
  display: flex;
}

.mbsc-form-grid .mbsc-textfield-wrapper-box,
.mbsc-form-grid .mbsc-textfield-wrapper-outline {
  margin: 0.75em 1em;
}

.mbsc-textfield-inner {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
}

.mbsc-textfield-inner-inline {
  -moz-box-flex: 1;
  flex: 1 auto;
}

.mbsc-textfield {
  display: block;
  width: 100%;
  font-size: 1em;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  font-family: inherit;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

.mbsc-textfield:-webkit-autofill {
  -webkit-animation-name: autofill;
  animation-name: autofill;
}

.mbsc-textfield::-webkit-inner-spin-button {
  height: 2em;
  align-self: center;
}

.mbsc-textfield::-moz-placeholder {
  opacity: 0.5;
  color: inherit;
}

.mbsc-textfield::-webkit-input-placeholder {
  opacity: 0.5;
  color: inherit;
}

.mbsc-textfield-floating:-ms-input-placeholder {
  color: transparent;
}

.mbsc-textfield-floating::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.mbsc-textfield-floating::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.mbsc-textfield-floating::-webkit-datetime-edit {
  color: transparent;
}

.mbsc-textfield-floating-active:-ms-input-placeholder {
  color: inherit;
}

.mbsc-textfield-floating-active::-moz-placeholder {
  opacity: 0.5;
}

.mbsc-textfield-floating-active::-webkit-input-placeholder {
  opacity: 0.5;
}

.mbsc-textfield-floating-active::-webkit-datetime-edit {
  color: inherit;
}

.mbsc-textfield-floating .mbsc-textfield-tags-placeholder {
  opacity: 0;
  transition: opacity 0.2s;
}

.mbsc-textfield-floating-active .mbsc-textfield-tags-placeholder {
  opacity: 0.5;
}

.mbsc-textfield-fieldset {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0 1em;
  pointer-events: none;
}

.mbsc-textfield-icon {
  position: absolute;
  top: 0;
  text-align: center;
}

.mbsc-textfield-icon-left {
  left: 0;
}

.mbsc-textfield-icon-right {
  right: 0;
}

.mbsc-label {
  position: absolute;
  z-index: 1;
  top: 0;
  line-height: 1em;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}

.mbsc-label-inline {
  position: static;
  overflow: hidden;
  -moz-box-flex: 0;
  flex: 0 0 auto;
  width: 30%;
  max-width: 12.5em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  pointer-events: auto;
}

.mbsc-label-floating-animate {
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition:
    transform 0.2s,
    -webkit-transform 0.2s;
}

.mbsc-label-floating.mbsc-ltr {
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

.mbsc-label-floating.mbsc-rtl {
  -webkit-transform-origin: top right;
  transform-origin: top right;
}

.mbsc-error-message {
  position: absolute;
  top: 100%;
  font-size: 0.75em;
  line-height: 1.5em;
}

.mbsc-textfield-file {
  position: absolute;
  left: 0;
  opacity: 0;
}

.mbsc-select {
  cursor: pointer;
}

.mbsc-select-icon {
  position: absolute;
  text-align: center;
  pointer-events: none;
}

.mbsc-textarea {
  resize: none;
  overflow: hidden;
  line-height: 1.5em;
}

.mbsc-toggle-icon:hover {
  cursor: pointer;
}

.mbsc-textfield.mbsc-textfield-hidden.mbsc-textarea {
  padding: 0;
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0;
}

.mbsc-textfield.mbsc-textfield-tags.mbsc-textarea {
  display: block;
  overflow: auto;
  height: auto;
  max-height: 5.5em;
}

.mbsc-textfield-tag {
  display: inline-block;
  margin: 0.25em 0;
  line-height: normal;
}

.mbsc-textfield-tag.mbsc-ltr {
  margin-right: 0.5em;
  padding-left: 0.75em;
}

.mbsc-textfield-tag.mbsc-rtl {
  margin-left: 0.5em;
  padding-right: 0.75em;
}

.mbsc-textfield-tag-text {
  font-size: 0.875em;
  line-height: 1.857143em;
}

.mbsc-textfield-tag-clear.mbsc-icon {
  width: 1.625em;
  height: 1.625em;
  vertical-align: top;
  border: 0.25em solid transparent;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

.mbsc-textfield-tags-placeholder {
  opacity: 0.5;
  line-height: 2.125em;
}

.mbsc-material.mbsc-scroller-wheel-wrapper {
  margin: 0 0.25em;
  padding: 0.5em 0;
}

.mbsc-material.mbsc-scroller-wheel-cont:after,
.mbsc-material.mbsc-scroller-wheel-cont:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  border-width: 2px;
  border-top-style: solid;
  z-index: 1;
}

.mbsc-material.mbsc-scroller-wheel-cont:after {
  bottom: -2px;
}

.mbsc-material.mbsc-scroller-wheel-cont:before {
  top: -2px;
}

.mbsc-material.mbsc-scroller-wheel-group {
  padding: 2em 0.25em;
}

.mbsc-material.mbsc-scroller-wheel-item {
  padding: 0 0.272727em;
  font-size: 1.375em;
  text-align: center;
}

.mbsc-material.mbsc-wheel-item-multi {
  padding: 0 2em;
}

.mbsc-material.mbsc-scroller-wheel-header {
  font-weight: 700;
  font-size: 1.125em;
}

.mbsc-material.mbsc-wheel-checkmark {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  display: none;
  border-radius: 0.1875em;
  width: 1.3em;
  height: 1.3em;
  margin-top: -0.55em;
}

.mbsc-material.mbsc-wheel-checkmark:after {
  content: "";
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  display: block;
  top: 0.27273em;
  left: 0.27273em;
  width: 0.8125em;
  height: 0.4375em;
  opacity: 0;
  border: 0.125em solid;
  border-top: 0;
  border-right: 0;
  -webkit-transform: scale(0) rotate(-45deg);
  transform: scale(0) rotate(-45deg);
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition:
    transform 0.1s ease-out,
    -webkit-transform 0.1s ease-out;
}

.mbsc-material.mbsc-wheel-checkmark.mbsc-selected:after {
  opacity: 1;
  -webkit-transform: scale(1) rotate(-45deg);
  transform: scale(1) rotate(-45deg);
}

.mbsc-material.mbsc-wheel-checkmark.mbsc-ltr {
  left: 0.25em;
}

.mbsc-material.mbsc-wheel-checkmark.mbsc-rtl {
  right: 0.25em;
}

.mbsc-material.mbsc-wheel-item-multi .mbsc-material.mbsc-wheel-checkmark {
  display: block;
}

.mbsc-material.mbsc-scroller-pointer .mbsc-scroller-wheel-group {
  padding: 0 0.5em;
}

.mbsc-material.mbsc-scroller-pointer .mbsc-scroller-wheel-wrapper {
  margin: 0;
  padding: 0;
}

.mbsc-material.mbsc-scroller-pointer .mbsc-scroller-wheel-cont:after,
.mbsc-material.mbsc-scroller-pointer .mbsc-scroller-wheel-cont:before {
  display: none;
}

.mbsc-material.mbsc-scroller-pointer .mbsc-scroller-wheel-item {
  font-size: 1em;
  padding: 0 1.25em;
}

.mbsc-material.mbsc-scroller-pointer .mbsc-wheel-item-multi {
  padding: 0 2em;
}

.mbsc-material.mbsc-scroller-pointer .mbsc-wheel-item-multi.mbsc-ltr {
  text-align: left;
}

.mbsc-material.mbsc-scroller-pointer .mbsc-wheel-item-multi.mbsc-rtl {
  text-align: right;
}

.mbsc-material.mbsc-scroller-wheel-cont:after,
.mbsc-material.mbsc-scroller-wheel-cont:before {
  border-color: #1a73e8;
}

.mbsc-material.mbsc-scroller-wheel-multi:after,
.mbsc-material.mbsc-scroller-wheel-multi:before {
  border-color: transparent;
}

.mbsc-material.mbsc-scroller-wheel-item.mbsc-active,
.mbsc-material.mbsc-scroller-wheel-item.mbsc-focus,
.mbsc-material.mbsc-scroller-wheel-item.mbsc-hover {
  background: rgba(0, 0, 0, 0.05);
}

.mbsc-material.mbsc-wheel-checkmark:after {
  border-color: #1a73e8;
}

.mbsc-material-dark.mbsc-scroller-wheel-cont:after,
.mbsc-material-dark.mbsc-scroller-wheel-cont:before {
  border-color: var(--ion-color-primary-tint);
}

.mbsc-material-dark.mbsc-scroller-wheel-multi:after,
.mbsc-material-dark.mbsc-scroller-wheel-multi:before {
  border-color: transparent;
}

.mbsc-material-dark.mbsc-scroller-wheel-item.mbsc-active,
.mbsc-material-dark.mbsc-scroller-wheel-item.mbsc-focus,
.mbsc-material-dark.mbsc-scroller-wheel-item.mbsc-hover {
  background: rgba(0, 0, 0, 0.05);
}

.mbsc-material-dark.mbsc-wheel-checkmark:after {
  border-color: var(--ion-color-primary-tint);
}

.mbsc-ios.mbsc-scroller-wheel-multi.mbsc-scroller-wheel-cont-3d {
  visibility: hidden;
}

.mbsc-ios.mbsc-scroller-wheel-group-cont {
  padding: 0 0.625em;
}

.mbsc-ios.mbsc-scroller-wheel-group {
  padding: 0.625em;
}

.mbsc-ios.mbsc-wheel-group-checkmark {
  padding: 0.625em 0;
}

.mbsc-ios.mbsc-scroller-wheel-3d {
  overflow: visible;
}

.mbsc-ios.mbsc-scroller-wheel-line {
  display: block;
  z-index: 1;
  border-radius: 0.5em;
  margin: 0 0.625em;
}

.mbsc-ios.mbsc-scroller-wheel-overlay {
  display: block;
}

.mbsc-ios.mbsc-scroller-wheel-item {
  padding: 0 0.5em;
  font-size: 1.25em;
  text-align: center;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0.5em;
}

.mbsc-ios.mbsc-scroller-wheel-item-3d {
  font-size: 1.125em;
}

.mbsc-ios.mbsc-wheel-item-checkmark {
  padding-left: 1.75em;
  padding-right: 1.75em;
}

.mbsc-ios.mbsc-scroller-wheel-header {
  font-size: 0.875em;
}

.mbsc-ios.mbsc-wheel-checkmark {
  display: none;
  position: absolute;
  width: 1.75em;
  height: 1.75em;
  top: 50%;
  margin-top: -0.875em;
}

.mbsc-ios.mbsc-wheel-checkmark:after {
  content: "";
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  display: block;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 32%;
  left: 26%;
  width: 0.75em;
  height: 0.375em;
  border: 0.125em solid;
  border-top: 0;
  border-right: 0;
  transition: opacity 0.2s ease-in-out;
}

.mbsc-ios.mbsc-wheel-checkmark.mbsc-selected:after {
  opacity: 1;
}

.mbsc-ios.mbsc-wheel-checkmark.mbsc-ltr {
  left: 0;
}

.mbsc-ios.mbsc-wheel-checkmark.mbsc-rtl {
  right: 0;
}

.mbsc-ios.mbsc-scroller-pointer .mbsc-ios.mbsc-wheel-item-checkmark .mbsc-wheel-checkmark,
.mbsc-ios.mbsc-wheel-item-multi .mbsc-ios.mbsc-wheel-checkmark {
  display: block;
}

.mbsc-ios.mbsc-scroller-pointer .mbsc-scroller-wheel-overlay {
  display: none;
}

.mbsc-ios.mbsc-scroller-pointer .mbsc-scroller-wheel-item {
  font-size: 1em;
  padding: 0 0.75em;
}

.mbsc-ios.mbsc-scroller-pointer .mbsc-wheel-item-checkmark.mbsc-ltr {
  text-align: left;
  padding-left: 1.75em;
}

.mbsc-ios.mbsc-scroller-pointer .mbsc-wheel-item-checkmark.mbsc-rtl {
  text-align: right;
  padding-right: 1.75em;
}

.mbsc-ios.mbsc-scroller-pointer .mbsc-scroller-wheel-header {
  font-size: 0.75em;
  font-weight: 700;
}

.mbsc-ios.mbsc-scroller {
  background: var(--background-color);
}

.mbsc-ios.mbsc-scroller-bottom,
.mbsc-ios.mbsc-scroller-top {
  background: #d1d5db;
}

.mbsc-ios.mbsc-scroller-wheel-overlay {
  background: linear-gradient(#fff, hsla(0, 0%, 100%, 0) 52%, hsla(0, 0%, 100%, 0) 0, #fff);
}

.mbsc-ios.mbsc-scroller-wheel-overlay-bottom,
.mbsc-ios.mbsc-scroller-wheel-overlay-top {
  background: linear-gradient(#d1d5db,
      rgba(209, 213, 219, 0) 52%,
      rgba(209, 213, 219, 0) 0,
      #d1d5db);
}

.mbsc-ios.mbsc-scroller-wheel-line {
  background: rgba(0, 0, 0, 0.1);
}

.mbsc-ios.mbsc-scroller-wheel-item {
  color: #9e9e9e;
}

.mbsc-ios.mbsc-scroller-wheel-item.mbsc-active,
.mbsc-ios.mbsc-scroller-wheel-item.mbsc-focus,
.mbsc-ios.mbsc-scroller-wheel-item.mbsc-hover {
  background: rgba(0, 122, 255, 0.15);
}

.mbsc-ios.mbsc-scroller-wheel-item-2d,
.mbsc-ios.mbsc-scroller-wheel-item.mbsc-selected {
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-scroller-wheel-cont-3d {
  background: var(--background-color);
}

.mbsc-ios.mbsc-scroller-wheel-item-3d {
  color: #a3a3a3;
}

.mbsc-ios.mbsc-scroller-wheel-header,
.mbsc-ios.mbsc-scroller-wheel-item-3d.mbsc-wheel-item-multi {
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-scroller-wheel-item-3d.mbsc-wheel-item-multi.mbsc-selected-3d {
  color: var(--ion-color-primary);
}

.mbsc-ios.mbsc-scroller-wheel-cont-bottom.mbsc-scroller-wheel-cont-3d,
.mbsc-ios.mbsc-scroller-wheel-cont-top.mbsc-scroller-wheel-cont-3d {
  background: #d1d5db;
}

.mbsc-ios.mbsc-scroller-pointer.mbsc-scroller,
.mbsc-ios.mbsc-scroller-pointer.mbsc-scroller-inline,
.mbsc-ios.mbsc-scroller-wheel-cont-inline.mbsc-scroller-wheel-cont-3d {
  background: var(--background-color);
}

.mbsc-ios.mbsc-scroller-pointer .mbsc-scroller-wheel-item {
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-scroller-pointer .mbsc-scroller-wheel-item.mbsc-selected {
  color: var(--ion-color-primary);
}

.mbsc-ios-dark.mbsc-scroller,
.mbsc-ios-dark.mbsc-scroller-bottom,
.mbsc-ios-dark.mbsc-scroller-top {
  background: var(--ion-color-base);
}

.mbsc-ios-dark.mbsc-scroller-wheel-overlay,
.mbsc-ios-dark.mbsc-scroller-wheel-overlay-bottom,
.mbsc-ios-dark.mbsc-scroller-wheel-overlay-top {
  background: linear-gradient(var(--ion-color-base),
      rgba(28, 28, 28, 0) 52%,
      rgba(28, 28, 28, 0) 0,
      var(--ion-color-base));
}

.mbsc-ios-dark.mbsc-scroller-wheel-line {
  background: hsla(0, 0%, 100%, 0.1);
}

.mbsc-ios-dark.mbsc-scroller-wheel-item {
  color: #9e9e9e;
}

.mbsc-ios-dark.mbsc-scroller-wheel-item.mbsc-active,
.mbsc-ios-dark.mbsc-scroller-wheel-item.mbsc-focus,
.mbsc-ios-dark.mbsc-scroller-wheel-item.mbsc-hover {
  background: rgba(255, 159, 10, 0.15);
}

.mbsc-ios-dark.mbsc-scroller-wheel-item-2d,
.mbsc-ios-dark.mbsc-scroller-wheel-item.mbsc-selected {
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-scroller-wheel-cont-3d {
  background: var(--ion-color-base);
}

.mbsc-ios-dark.mbsc-scroller-wheel-item-3d {
  color: #666;
}

.mbsc-ios-dark.mbsc-scroller-wheel-header,
.mbsc-ios-dark.mbsc-scroller-wheel-item-3d.mbsc-wheel-item-multi {
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-scroller-wheel-item-3d.mbsc-wheel-item-multi.mbsc-selected-3d {
  color: var(--ion-color-primary-shade);
}

.mbsc-ios-dark.mbsc-scroller-pointer.mbsc-scroller,
.mbsc-ios-dark.mbsc-scroller-pointer.mbsc-scroller-inline,
.mbsc-ios-dark.mbsc-scroller-wheel-cont-bottom.mbsc-scroller-wheel-cont-3d,
.mbsc-ios-dark.mbsc-scroller-wheel-cont-inline.mbsc-scroller-wheel-cont-3d,
.mbsc-ios-dark.mbsc-scroller-wheel-cont-top.mbsc-scroller-wheel-cont-3d {
  background: var(--ion-color-base);
}

.mbsc-ios-dark.mbsc-scroller-pointer .mbsc-scroller-wheel-item {
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-scroller-pointer .mbsc-scroller-wheel-item.mbsc-selected {
  color: var(--ion-color-primary-shade);
}

.mbsc-scroller {
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mbsc-scroller-wheel-group-cont {
  position: relative;
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
}

.mbsc-scroller-wheel-group-cont:first-child:last-child {
  display: block;
}

.mbsc-scroller-wheel-group {
  margin: 0 auto;
  position: relative;
  display: -moz-box;
  display: flex;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  -moz-box-pack: center;
  justify-content: center;
}

.mbsc-scroller-wheel-group-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.mbsc-scroller-wheel-wrapper {
  display: block;
  max-width: 100%;
  position: relative;
  touch-action: none;
  min-width: 80px;
}

.mbsc-scroller-pointer .mbsc-scroller-wheel-wrapper-0:last-child {
  -moz-box-flex: 1;
  flex: 1 1 auto;
}

.mbsc-scroller-wheel-line {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mbsc-scroller-wheel-line,
.mbsc-scroller-wheel-overlay {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.mbsc-scroller-wheel-overlay {
  z-index: 2;
  top: 0;
  bottom: 0;
}

.mbsc-scroller-wheel {
  display: block;
  overflow: hidden;
  margin: -1px 0;
}

.mbsc-scroller-wheel,
.mbsc-scroller-wheel-cont {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.mbsc-scroller-wheel-cont {
  position: relative;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mbsc-scroller-wheel-cont-3d {
  overflow: hidden;
  border: 0;
}

.mbsc-scroller-wheel-cont-3d>div {
  position: relative;
  top: -1px;
}

.mbsc-scroller-items-3d {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mbsc-scroller .mbsc-scroller-wheel,
.mbsc-scroller .mbsc-scroller-wheel-cont {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.mbsc-scroller-wheel-item {
  display: block;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mbsc-scroller-wheel-item:focus {
  outline: 0;
}

.mbsc-scroller-wheel-item-3d {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mbsc-scroller-wheel-item.mbsc-disabled {
  opacity: 0.3;
}

.mbsc-scroller-wheel-header {
  display: block;
  padding: 0 0.5em;
}

.mbsc-scroller-wheel-header.mbsc-ltr {
  text-align: left;
}

.mbsc-scroller-wheel-header.mbsc-rtl {
  text-align: right;
}

.mbsc-scroller-bar-cont {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: 10px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.05);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: opacity 0.2s;
}

.mbsc-scroller-bar-cont.mbsc-ltr {
  right: 0;
}

.mbsc-scroller-bar-cont.mbsc-rtl {
  left: 0;
}

.mbsc-scroller-bar-hidden {
  display: none;
}

.mbsc-scroller-bar-started,
.mbsc-scroller-wheel:hover .mbsc-scroller-bar-cont {
  opacity: 1;
}

.mbsc-scroller-bar {
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
}

.mbsc-scroller-bar:after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
}

.mbsc-ios.mbsc-datetime-year-wheel .mbsc-scroller-wheel-item {
  min-width: 3.8em;
}

.mbsc-ios.mbsc-datetime-month-wheel .mbsc-scroller-wheel-item {
  text-align: left;
}

.mbsc-ios.mbsc-datetime-date-wheel .mbsc-scroller-wheel-item,
.mbsc-ios.mbsc-datetime-day-wheel .mbsc-scroller-wheel-item,
.mbsc-ios.mbsc-datetime-hour-wheel .mbsc-scroller-wheel-item {
  text-align: right;
}

.mbsc-ios.mbsc-segmented {
  margin: 0.75em;
  padding: 0.0625em;
  position: relative;
  border-radius: 0.5625em;
}

.mbsc-ios.mbsc-segmented-item:before {
  content: "";
  position: absolute;
  border-left: 1px solid;
  top: 0.3125em;
  bottom: 0.3125em;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.mbsc-ios.mbsc-segmented-item.mbsc-ltr:before {
  left: 0;
}

.mbsc-ios.mbsc-segmented-item.mbsc-rtl:before {
  right: 0;
}

.mbsc-ios.mbsc-segmented-item-selected+.mbsc-segmented-item:before,
.mbsc-ios.mbsc-segmented-item-selected:before,
.mbsc-ios.mbsc-segmented-item:first-child:before {
  opacity: 0;
}

.mbsc-ios.mbsc-segmented-selectbox {
  position: absolute;
  padding: 0.0625em;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 0.4375em;
}

.mbsc-ios.mbsc-segmented-selectbox-animate {
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition:
    transform 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
}

.mbsc-ios.mbsc-segmented-selectbox-inner {
  height: 100%;
  border-radius: 0.4375em;
  transition: -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out;
  transition:
    transform 0.1s ease-in-out,
    -webkit-transform 0.1s ease-in-out;
  visibility: hidden;
}

.mbsc-ios.mbsc-segmented-selectbox-inner-visible {
  visibility: visible;
}

.mbsc-ios.mbsc-segmented-item:first-child .mbsc-segmented-selectbox-inner {
  -webkit-transform-origin: left;
  transform-origin: left;
}

.mbsc-ios.mbsc-segmented-item:last-child .mbsc-segmented-selectbox-inner {
  -webkit-transform-origin: right;
  transform-origin: right;
}

.mbsc-ios.mbsc-segmented-dragging .mbsc-segmented-selectbox-inner {
  -webkit-transform: scale(0.97, 0.95);
  transform: scale(0.97, 0.95);
}

.mbsc-ios.mbsc-segmented-dragging .mbsc-segmented-item:first-child .mbsc-segmented-selectbox-inner {
  -webkit-transform: scale(0.97, 0.95) translateX(0.0625em);
  transform: scale(0.97, 0.95) translateX(0.0625em);
}

.mbsc-ios.mbsc-segmented-dragging .mbsc-segmented-item:last-child .mbsc-segmented-selectbox-inner {
  -webkit-transform: scale(0.97, 0.95) translateX(-0.0625em);
  transform: scale(0.97, 0.95) translateX(-0.0625em);
}

.mbsc-ios.mbsc-segmented-button.mbsc-icon-button {
  height: 2.307693em;
}

.mbsc-ios.mbsc-segmented-button.mbsc-button {
  margin: 0;
  padding: 0 0.615385em;
  border-radius: 0;
  font-size: 0.8125em;
  line-height: 2.307693em;
  transition:
    opacity 0.1s ease-out,
    background-color 0.1s ease-out,
    -webkit-transform 0.1s ease-in-out;
  transition:
    opacity 0.1s ease-out,
    background-color 0.1s ease-out,
    transform 0.1s ease-in-out;
  transition:
    opacity 0.1s ease-out,
    background-color 0.1s ease-out,
    transform 0.1s ease-in-out,
    -webkit-transform 0.1s ease-in-out;
  -webkit-font-smoothing: subpixel-antialiased;
}

.mbsc-ios.mbsc-segmented-button.mbsc-button.mbsc-active,
.mbsc-ios.mbsc-segmented-button.mbsc-button.mbsc-hover {
  opacity: 1;
}

.mbsc-ios.mbsc-segmented-dragging .mbsc-segmented-item-selected .mbsc-segmented-button {
  -webkit-transform: scale(0.97, 0.95);
  transform: scale(0.97, 0.95);
}

.mbsc-ios.mbsc-segmented-item-selected:first-child .mbsc-segmented-button {
  -webkit-transform-origin: left;
  transform-origin: left;
}

.mbsc-ios.mbsc-segmented-item-selected:last-child .mbsc-segmented-button {
  -webkit-transform-origin: right;
  transform-origin: right;
}

.mbsc-ios.mbsc-segmented {
  background: #dedede;
}

.mbsc-ios.mbsc-segmented-item:before {
  border-color: rgba(0, 0, 0, 0.2);
}

.mbsc-ios.mbsc-segmented-item.mbsc-focus .mbsc-segmented-selectbox {
  box-shadow: inset 0 0 0 0.0625em rgba(0, 0, 0, 0.5);
}

.mbsc-ios.mbsc-segmented-selectbox-inner {
  background: var(--background-color);
}

.mbsc-ios.mbsc-segmented-selectbox-inner.mbsc-selected {
  box-shadow: 3px 3px 8px -4px #bababa;
}

.mbsc-ios.mbsc-segmented-button.mbsc-button {
  background: transparent;
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-segmented-primary {
  background: var(--ion-color-primary);
}

.mbsc-ios.mbsc-segmented-secondary {
  background: var(--ion-color-medium);
}

.mbsc-ios.mbsc-segmented-success {
  background: var(--ion-color-success);
}

.mbsc-ios.mbsc-segmented-warning {
  background: var(--ion-color-warning);
}

.mbsc-ios.mbsc-segmented-danger {
  background: var(--ion-color-danger);
}

.mbsc-ios.mbsc-segmented-info {
  background: var(--ion-color-tertiary);
}

.mbsc-ios.mbsc-segmented-light {
  background: var(--background-color);
}

.mbsc-ios.mbsc-segmented-dark {
  background: #47494a;
}

.mbsc-ios-dark.mbsc-segmented {
  background: var(--ion-color-base);
}

.mbsc-ios-dark.mbsc-segmented-item:before {
  border-color: hsla(0, 0%, 100%, 0.2);
}

.mbsc-ios-dark.mbsc-segmented-item.mbsc-focus .mbsc-segmented-selectbox {
  box-shadow: inset 0 0 0 0.0625em hsla(0, 0%, 100%, 0.5);
}

.mbsc-ios-dark.mbsc-segmented-selectbox-inner {
  background: #5a5a5a;
}

.mbsc-ios-dark.mbsc-segmented-selectbox-inner.mbsc-selected {
  box-shadow: 3px 3px 8px -4px #000;
}

.mbsc-ios-dark.mbsc-segmented-button.mbsc-button {
  background: transparent;
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-segmented,
.mbsc-ios-dark.mbsc-datepicker .mbsc-segmented,
.mbsc-ios-dark.mbsc-popup .mbsc-ios-dark.mbsc-segmented {
  background: #2b2b2b;
}

.mbsc-ios-dark.mbsc-segmented-primary {
  background: var(--ion-color-primary);
}

.mbsc-ios-dark.mbsc-segmented-secondary {
  background: var(--ion-color-medium);
}

.mbsc-ios-dark.mbsc-segmented-success {
  background: var(--ion-color-success);
}

.mbsc-ios-dark.mbsc-segmented-warning {
  background: var(--ion-color-warning);
}

.mbsc-ios-dark.mbsc-segmented-danger {
  background: var(--ion-color-danger);
}

.mbsc-ios-dark.mbsc-segmented-info {
  background: var(--ion-color-tertiary);
}

.mbsc-ios-dark.mbsc-segmented-light {
  background: var(--background-color);
}

.mbsc-ios-dark.mbsc-segmented-dark {
  background: #47494a;
}

.mbsc-material.mbsc-segmented {
  padding: 0.75em;
}

.mbsc-material.mbsc-segmented-selectbox {
  display: none;
}

.mbsc-material.mbsc-segmented-item:first-child .mbsc-segmented-button {
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
}

.mbsc-material.mbsc-segmented-item:first-child .mbsc-segmented-button.mbsc-rtl {
  border-radius: 0 0.25em 0.25em 0;
  border-right-width: 0.142858em;
}

.mbsc-material.mbsc-segmented-item:last-child .mbsc-segmented-button {
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
  border-right-width: 0.142858em;
}

.mbsc-material.mbsc-segmented-item:last-child .mbsc-segmented-button.mbsc-rtl {
  border-radius: 0.25em 0 0 0.25em;
  border-right-width: 0;
}

.mbsc-material.mbsc-segmented-button.mbsc-button {
  margin: 0;
  padding: 0.285715em 1.142858em;
  border: 0.142858em solid transparent;
  border-right-width: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  min-width: auto;
  font-size: 0.875em;
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-active,
.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-hover {
  box-shadow: none;
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-focus:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-primary {
  color: var(--ion-color-primary);
  border-color: var(--ion-color-primary);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-primary.mbsc-active,
.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-primary.mbsc-hover {
  background: rgba(63, 151, 246, 0.2);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-primary.mbsc-selected {
  background: var(--ion-color-primary);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-secondary {
  color: var(--ion-color-medium);
  border-color: var(--ion-color-medium);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-secondary.mbsc-active,
.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-secondary.mbsc-hover {
  background: rgba(144, 151, 158, 0.2);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-secondary.mbsc-selected {
  background: var(--ion-color-medium);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-success {
  color: var(--ion-color-success);
  border-color: var(--ion-color-success);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-success.mbsc-active,
.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-success.mbsc-hover {
  background: rgba(67, 190, 95, 0.2);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-success.mbsc-selected {
  background: var(--ion-color-success);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-danger {
  color: var(--ion-color-danger);
  border-color: var(--ion-color-danger);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-danger.mbsc-active,
.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-danger.mbsc-hover {
  background: rgba(245, 80, 78, 0.2);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-danger.mbsc-selected {
  background: var(--ion-color-danger);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-warning {
  color: var(--ion-color-warning);
  border-color: var(--ion-color-warning);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-warning.mbsc-active,
.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-warning.mbsc-hover {
  background: rgba(248, 176, 66, 0.2);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-warning.mbsc-selected {
  background: var(--ion-color-warning);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-info {
  color: var(--ion-color-tertiary);
  border-color: var(--ion-color-tertiary);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-info.mbsc-active,
.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-info.mbsc-hover {
  background: rgba(91, 183, 197, 0.2);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-button-info.mbsc-selected {
  background: var(--ion-color-tertiary);
}

.mbsc-material.mbsc-segmented-button.mbsc-button {
  border-color: #1a73e8;
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-active,
.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-hover {
  background: rgba(0, 0, 0, 0.2);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-selected {
  background: #1a73e8;
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-segmented-button.mbsc-button.mbsc-focus:after {
  background: rgba(0, 0, 0, 0.2);
}

.mbsc-material-dark.mbsc-segmented-button.mbsc-button {
  border-color: var(--ion-color-primary-tint);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-segmented-button.mbsc-button.mbsc-active,
.mbsc-material-dark.mbsc-segmented-button.mbsc-button.mbsc-hover {
  background: hsla(0, 0%, 100%, 0.2);
}

.mbsc-material-dark.mbsc-segmented-button.mbsc-button.mbsc-selected {
  background: var(--ion-color-primary-tint);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-segmented-button.mbsc-button.mbsc-focus:after {
  background: hsla(0, 0%, 100%, 0.2);
}

.mbsc-segmented {
  display: -moz-box;
  display: flex;
  overflow: hidden;
}

.mbsc-segmented-item {
  margin: 0;
  position: relative;
  vertical-align: top;
  text-align: center;
  font-size: 1em;
  -moz-box-flex: 1;
  flex: 1 1 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-width: 0;
}

.mbsc-segmented-label {
  display: block;
  margin: 0;
  padding: 0;
}

.mbsc-segmented-input {
  width: 1px;
  height: 0;
  opacity: 0;
  position: absolute;
}

.mbsc-segmented-button.mbsc-button {
  width: 100%;
}

.mbsc-ios.mbsc-timegrid-item {
  line-height: 2em;
  margin: 0.5em 0.625em;
  border-radius: 2em;
  font-size: 0.875em;
}

.mbsc-ios.mbsc-timegrid-item.mbsc-selected,
.mbsc-ios.mbsc-timegrid-item:focus,
.mbsc-ios.mbsc-timegrid-item:hover {
  font-size: 1em;
  margin: 0 0.25em;
  outline: none;
}

.mbsc-ios.mbsc-timegrid-item:focus,
.mbsc-ios.mbsc-timegrid-item:hover {
  background: rgba(0, 122, 255, 0.3);
}

.mbsc-ios.mbsc-timegrid-item.mbsc-selected {
  background: var(--ion-color-primary);
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-timegrid-item:focus,
.mbsc-ios-dark.mbsc-timegrid-item:hover {
  background: rgba(255, 159, 10, 0.3);
}

.mbsc-ios-dark.mbsc-timegrid-item.mbsc-selected {
  background: var(--ion-color-primary-shade);
  color: var(--ion-text-color);
}

.mbsc-material.mbsc-timegrid-item {
  line-height: 2em;
  margin: 0.5em 0.625em;
  border-radius: 2em;
  font-size: 0.875em;
}

.mbsc-material.mbsc-timegrid-item.mbsc-selected,
.mbsc-material.mbsc-timegrid-item:focus,
.mbsc-material.mbsc-timegrid-item:hover {
  margin: 0 0.25em;
  outline: none;
}

.mbsc-material.mbsc-timegrid-item:focus,
.mbsc-material.mbsc-timegrid-item:hover {
  background: rgba(48, 48, 48, 0.1);
}

.mbsc-material.mbsc-timegrid-item.mbsc-selected {
  background: #1a73e8;
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-timegrid-item:focus,
.mbsc-material-dark.mbsc-timegrid-item:hover {
  background: hsla(0, 0%, 100%, 0.1);
}

.mbsc-material-dark.mbsc-timegrid-item.mbsc-selected {
  background: var(--ion-color-primary-tint);
  color: var(--ion-text-color);
}

.mbsc-windows.mbsc-timegrid-item.mbsc-selected {
  background: rgba(0, 120, 215, 0.25);
  color: #333;
}

.mbsc-windows.mbsc-timegrid-item:focus,
.mbsc-windows.mbsc-timegrid-item:hover {
  background: rgba(51, 51, 51, 0.1);
}

.mbsc-windows.mbsc-timegrid-item.mbsc-selected:focus,
.mbsc-windows.mbsc-timegrid-item.mbsc-selected:hover {
  background: rgba(18, 96, 158, 0.35);
}

.mbsc-windows-dark.mbsc-timegrid-item.mbsc-selected {
  background: rgba(0, 120, 215, 0.25);
  color: var(--ion-text-color);
}

.mbsc-windows-dark.mbsc-timegrid-item:focus,
.mbsc-windows-dark.mbsc-timegrid-item:hover {
  background: hsla(0, 0%, 100%, 0.1);
}

.mbsc-windows-dark.mbsc-timegrid-item.mbsc-selected:focus,
.mbsc-windows-dark.mbsc-timegrid-item.mbsc-selected:hover {
  background: rgba(89, 167, 229, 0.35);
}

.mbsc-datepicker-control-calendar .mbsc-datepicker-tab-timegrid {
  min-height: 10em;
}

.mbsc-datepicker-tab-timegrid {
  min-height: 19em;
}

.mbsc-timegrid-item.mbsc-disabled {
  pointer-events: none;
  opacity: 0.2;
}

.mbsc-datepicker-tab-timegrid.mbsc-datepicker-tab {
  position: relative;
  overflow: auto;
  -moz-box-align: start;
  align-items: flex-start;
  width: 18.5em;
}

.mbsc-timegrid-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
}

.mbsc-timegrid-row {
  display: table-row;
}

.mbsc-timegrid-cell {
  display: table-cell;
  position: relative;
}

.mbsc-timegrid-cell.mbsc-disabled {
  cursor: not-allowed;
}

.mbsc-timegrid-item {
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mbsc-ios.mbsc-picker .mbsc-popup-overlay-bottom,
.mbsc-ios.mbsc-picker .mbsc-popup-overlay-top {
  background: none;
}

.mbsc-ios.mbsc-datepicker-inline {
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 2;
  position: relative;
}

.mbsc-ios.mbsc-datepicker .mbsc-calendar-cell,
.mbsc-ios.mbsc-datepicker .mbsc-calendar-cell-inner,
.mbsc-ios.mbsc-datepicker .mbsc-calendar-grid {
  border-color: transparent;
}

.mbsc-ios.mbsc-datepicker .mbsc-highlighted .mbsc-calendar-day-text,
.mbsc-ios.mbsc-datepicker .mbsc-hover .mbsc-calendar-day-text,
.mbsc-ios.mbsc-datepicker .mbsc-range-hover-end .mbsc-calendar-day-text,
.mbsc-ios.mbsc-datepicker .mbsc-range-hover-start .mbsc-calendar-day-text,
.mbsc-ios.mbsc-datepicker .mbsc-selected .mbsc-calendar-day-text {
  width: 1.444445em;
  height: 1.444445em;
  margin: 0.16667em;
  font-size: 1.125em;
  line-height: 1.444445em;
}

.mbsc-ios.mbsc-picker-header {
  line-height: 1.25em;
  padding: 0.75em 4.375em;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid;
}

.mbsc-ios.mbsc-range-control-wrapper {
  padding: 0 0.75em;
  overflow: hidden;
}

.mbsc-ios.mbsc-range-control-wrapper .mbsc-segmented {
  width: 17em;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mbsc-ios.mbsc-datepicker-control-calendar.mbsc-datepicker-control-time .mbsc-range-control-wrapper .mbsc-segmented,
.mbsc-ios.mbsc-datepicker-control-calendar.mbsc-datepicker-control-timegrid .mbsc-range-control-wrapper .mbsc-segmented,
.mbsc-ios.mbsc-datepicker-control-date.mbsc-datepicker-control-time .mbsc-range-control-wrapper .mbsc-segmented,
.mbsc-ios.mbsc-datepicker-control-datetime .mbsc-range-control-wrapper .mbsc-segmented {
  width: 25em;
}

.mbsc-ios.mbsc-range-control-wrapper .mbsc-segmented-button {
  display: block;
  padding: 0 0.5em;
}

.mbsc-ios.mbsc-range-control-wrapper .mbsc-range-value-nonempty .mbsc-segmented-button {
  padding: 0 2.0625em 0 0.5em;
}

.mbsc-ios.mbsc-range-control-wrapper .mbsc-range-value-nonempty .mbsc-segmented-button.mbsc-rtl {
  padding: 0 0.5em 0 2.0625em;
}

.mbsc-ios.mbsc-range-control-label,
.mbsc-ios.mbsc-range-control-value {
  text-align: left;
  line-height: 1.538462em;
}

.mbsc-ios.mbsc-range-control-label.active,
.mbsc-ios.mbsc-range-control-value.active {
  font-weight: 600;
}

.mbsc-ios.mbsc-range-control-label.mbsc-rtl,
.mbsc-ios.mbsc-range-control-value.mbsc-rtl {
  text-align: right;
}

.mbsc-ios.mbsc-range-control-label {
  padding: 0.615385em 0.615385em 0;
}

.mbsc-ios.mbsc-range-control-value {
  padding: 0 0.615385em 0.615385em;
  text-overflow: ellipsis;
  overflow: hidden;
}

.mbsc-ios.mbsc-range-control-value.active {
  padding: 0 0.571429em 0.571429em;
  font-size: 1.076923em;
  line-height: 1.428572em;
}

.mbsc-ios.mbsc-range-label-clear {
  margin-top: -0.692308em;
  width: 1.307693em;
  height: 1.307693em;
}

.mbsc-ios.mbsc-range-label-clear.mbsc-ltr {
  right: 1em;
}

.mbsc-ios.mbsc-range-label-clear.mbsc-rtl {
  left: 1em;
}

.mbsc-ios.mbsc-picker .mbsc-popup-arrow,
.mbsc-ios.mbsc-picker .mbsc-popup-body {
  background: var(--background-color);
}

.mbsc-ios.mbsc-picker-header {
  border-color: #ccc;
}

.mbsc-ios.mbsc-datepicker .mbsc-calendar,
.mbsc-ios.mbsc-datepicker .mbsc-calendar-cell,
.mbsc-ios.mbsc-datepicker .mbsc-calendar-slide {
  background: var(--background-color);
}

.mbsc-ios.mbsc-datepicker-bottom.mbsc-datepicker-control-date,
.mbsc-ios.mbsc-datepicker-top.mbsc-datepicker-control-date {
  background: #d1d5db;
}

.mbsc-ios.mbsc-datepicker-inline {
  background: var(--background-color);
  border-color: #ccc;
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-range-control-value.active {
  color: var(--ion-color-primary);
}

.mbsc-ios.mbsc-range-control-text-empty,
.mbsc-ios.mbsc-range-control-text-empty.active {
  color: rgba(0, 0, 0, 0.4);
}

.mbsc-ios.mbsc-range-label-clear {
  color: #ccc;
}

.mbsc-ios.mbsc-range-label-clear:hover {
  color: #b2b2b2;
}

.mbsc-ios-dark.mbsc-picker .mbsc-popup-arrow,
.mbsc-ios-dark.mbsc-picker .mbsc-popup-body {
  background: var(--ion-color-base);
}

.mbsc-ios-dark.mbsc-picker-header {
  border-color: #333;
}

.mbsc-ios-dark.mbsc-datepicker-bottom.mbsc-datepicker-control-date,
.mbsc-ios-dark.mbsc-datepicker-top.mbsc-datepicker-control-date,
.mbsc-ios-dark.mbsc-datepicker .mbsc-calendar,
.mbsc-ios-dark.mbsc-datepicker .mbsc-calendar-cell,
.mbsc-ios-dark.mbsc-datepicker .mbsc-calendar-slide {
  background: var(--ion-color-base);
}

.mbsc-ios-dark.mbsc-datepicker-inline {
  background: var(--ion-color-base);
  border-color: #333;
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-range-control-value.active {
  color: var(--ion-color-primary-shade);
}

.mbsc-ios-dark.mbsc-range-control-text-empty,
.mbsc-ios-dark.mbsc-range-control-text-empty.active {
  color: hsla(0, 0%, 100%, 0.4);
}

.mbsc-ios-dark.mbsc-range-label-clear {
  color: #333;
}

.mbsc-ios-dark.mbsc-range-label-clear:hover {
  color: #4d4d4d;
}

.mbsc-material.mbsc-picker-header {
  font-size: 1.25em;
  font-weight: 500;
  padding: 0.8em 0.8em 0;
  line-height: 1.4em;
  text-align: center;
}

.mbsc-material.mbsc-range-control-wrapper .mbsc-segmented {
  padding: 0;
  max-width: 100%;
  width: 18.5em;
}

.mbsc-material.mbsc-range-control-wrapper .mbsc-segmented-button.mbsc-button.mbsc-font {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 0.8571422em 1.142857em;
  display: block;
}

.mbsc-material.mbsc-range-control-wrapper .mbsc-segmented-button.mbsc-ltr {
  text-align: left;
}

.mbsc-material.mbsc-range-control-wrapper .mbsc-segmented-button.mbsc-rtl {
  text-align: right;
}

.mbsc-material.mbsc-range-control-wrapper .mbsc-range-value-nonempty .mbsc-segmented-button.mbsc-ltr {
  padding-right: 2.642857em;
}

.mbsc-material.mbsc-range-control-wrapper .mbsc-range-value-nonempty .mbsc-segmented-button.mbsc-rtl {
  padding-left: 2.642857em;
}

.mbsc-material.mbsc-datepicker-control-calendar.mbsc-datepicker-control-time .mbsc-range-control-wrapper .mbsc-segmented,
.mbsc-material.mbsc-datepicker-control-calendar.mbsc-datepicker-control-timegrid .mbsc-range-control-wrapper .mbsc-segmented,
.mbsc-material.mbsc-datepicker-control-date.mbsc-datepicker-control-time .mbsc-range-control-wrapper .mbsc-segmented,
.mbsc-material.mbsc-datepicker-control-datetime .mbsc-range-control-wrapper .mbsc-segmented {
  width: 25em;
}

.mbsc-material.mbsc-range-control-label {
  text-transform: uppercase;
}

.mbsc-material.mbsc-range-control-value {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mbsc-material.mbsc-range-label-clear {
  margin-top: -0.625em;
  right: 0.75em;
  width: 1.3125em;
  height: 1.3125em;
}

.mbsc-material.mbsc-range-label-clear.mbsc-ltr {
  right: 0.75em;
}

.mbsc-material.mbsc-range-label-clear.mbsc-rtl {
  left: 0.75em;
}

.mbsc-material.mbsc-datepicker .mbsc-calendar-title {
  font-size: 1.142858em;
  line-height: 1.75em;
}

.mbsc-material.mbsc-calendar-grid .mbsc-calendar-title {
  font-size: 1.428572em;
  line-height: 1.4em;
}

.mbsc-material.mbsc-datepicker .mbsc-calendar-slide {
  background: var(--background-color);
}

.mbsc-material.mbsc-datepicker-inline {
  background: var(--background-color);
  color: #303030;
}

.mbsc-material.mbsc-datepicker-inline .mbsc-calendar-slide {
  background: var(--background-color);
}

.mbsc-material.mbsc-range-control-wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.mbsc-material.mbsc-range-control-wrapper .mbsc-material.mbsc-segmented-button.mbsc-selected {
  border-bottom-color: #1a73e8;
}

.mbsc-material.mbsc-range-control-label.active,
.mbsc-material.mbsc-range-control-value.active {
  color: #1a73e8;
}

.mbsc-material.mbsc-range-control-text-empty,
.mbsc-material.mbsc-range-control-text-empty.active {
  color: rgba(48, 48, 48, 0.4);
}

.mbsc-material.mbsc-range-label-clear {
  color: #b0b0b0;
}

.mbsc-material.mbsc-range-label-clear:hover {
  color: #7d7d7d;
}

.mbsc-material-dark.mbsc-datepicker .mbsc-calendar-slide {
  background: #303030;
}

.mbsc-material-dark.mbsc-datepicker-inline {
  background: var(--background-color);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-datepicker-inline .mbsc-calendar-slide {
  background: var(--background-color);
}

.mbsc-material-dark.mbsc-range-control-wrapper {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}

.mbsc-material-dark.mbsc-range-control-wrapper .mbsc-material-dark.mbsc-segmented-button.mbsc-selected {
  border-bottom-color: var(--ion-color-primary-tint);
}

.mbsc-material-dark.mbsc-range-control-label.active,
.mbsc-material-dark.mbsc-range-control-value.active {
  color: var(--ion-color-primary-tint);
}

.mbsc-material-dark.mbsc-range-control-text-empty,
.mbsc-material-dark.mbsc-range-control-text-empty.active {
  color: hsla(0, 0%, 100%, 0.4);
}

.mbsc-material-dark.mbsc-range-label-clear {
  color: grey;
}

.mbsc-material-dark.mbsc-range-label-clear:hover {
  color: #b3b3b3;
}

mbsc-datetime {
  display: block;
  width: 100%;
}

.mbsc-datepicker-inline {
  height: 100%;
}

.mbsc-datepicker .mbsc-calendar {
  height: 100%;
  max-width: 100%;
  padding-bottom: 0.5em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}

.mbsc-datepicker .mbsc-calendar-week-days {
  padding: 0 0.5em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: -1px;
}

.mbsc-range-control-wrapper .mbsc-segmented-input {
  width: 1px;
}

.mbsc-range-label-clear {
  position: absolute;
  top: 50%;
}

.mbsc-datepicker-tab-wrapper {
  position: relative;
  flex-wrap: wrap;
  overflow: hidden;
}

.mbsc-datepicker-tab,
.mbsc-datepicker-tab-wrapper {
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
}

.mbsc-datepicker-tab {
  visibility: hidden;
  max-width: 100%;
  -moz-box-align: center;
  align-items: center;
}

.mbsc-datepicker-tab-expand {
  -moz-box-flex: 1;
  flex: 1 1 auto;
  height: 100%;
}

.mbsc-datepicker-tab-active {
  visibility: visible;
}

.mbsc-datepicker-time-modal {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  max-width: none;
  height: 100%;
}

.mbsc-datepicker .mbsc-calendar-slide {
  padding: 0 0.5em;
}

.mbsc-ios.mbsc-select-scroller-inline {
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin-top: -1px;
  margin-bottom: -1px;
}

.mbsc-ios.mbsc-select-group-wheel-multi .mbsc-scroller-wheel-cont-3d {
  visibility: hidden;
}

.mbsc-ios.mbsc-select-scroller.mbsc-scroller-pointer .mbsc-scroller-wheel-group,
.mbsc-ios.mbsc-select-scroller.mbsc-scroller-pointer .mbsc-scroller-wheel-group-cont {
  padding: 0;
}

.mbsc-ios.mbsc-select-scroller.mbsc-scroller-pointer .mbsc-scroller-bar-cont {
  margin: -0.1875em 0;
}

.mbsc-ios.mbsc-select-scroller.mbsc-scroller-pointer .mbsc-scroller-wheel-wrapper {
  padding: 0.1875em 0;
}

.mbsc-ios.mbsc-select-scroller.mbsc-scroller-pointer .mbsc-scroller-wheel-item {
  margin: 0 0.1875em;
}

.mbsc-ios.mbsc-select-scroller.mbsc-scroller-pointer .mbsc-select-group-wheel.mbsc-ltr {
  border-right-width: 1px;
  border-right-style: solid;
}

.mbsc-ios.mbsc-select-scroller.mbsc-scroller-pointer .mbsc-select-group-wheel.mbsc-rtl {
  border-left-width: 1px;
  border-left-style: solid;
}

.mbsc-ios.mbsc-select-filter-cont {
  padding: 0.5em;
}

.mbsc-ios.mbsc-select-filter {
  margin: 0;
}

.mbsc-ios.mbsc-select-filter-input {
  height: 2em;
}

.mbsc-ios.mbsc-select-empty-text {
  font-size: 1.25em;
}

.mbsc-ios.mbsc-select-scroller-inline {
  border-color: #ccc;
}

.mbsc-ios.mbsc-select-filter-cont {
  background-color: #f2f2f7;
}

.mbsc-ios.mbsc-select-filter-clear {
  color: #ccc;
}

.mbsc-ios.mbsc-select-filter-clear:hover {
  color: #b2b2b2;
}

.mbsc-ios.mbsc-select-empty-text {
  color: #9e9e9e;
}

.mbsc-ios.mbsc-select-group-wheel {
  border-color: #ccc;
}

.mbsc-ios.mbsc-select-group-wheel-multi .mbsc-scroller-wheel-item-3d {
  color: var(--ion-text-color);
}

.mbsc-ios.mbsc-select-group-wheel-multi .mbsc-selected-3d {
  color: var(--ion-color-primary);
}

.mbsc-ios-dark.mbsc-select-scroller-inline {
  border-color: #333;
}

.mbsc-ios-dark.mbsc-select-filter-cont {
  background-color: var(--ion-color-base);
}

.mbsc-ios-dark.mbsc-select-filter-clear {
  color: #404040;
}

.mbsc-ios-dark.mbsc-select-filter-clear:hover {
  color: #4d4d4d;
}

.mbsc-ios-dark.mbsc-select-empty-text {
  color: #9e9e9e;
}

.mbsc-ios-dark.mbsc-select-group-wheel {
  border-color: #333;
}

.mbsc-ios-dark.mbsc-select-group-wheel-multi .mbsc-scroller-wheel-item-3d {
  color: var(--ion-text-color);
}

.mbsc-ios-dark.mbsc-select-group-wheel-multi .mbsc-selected-3d {
  color: var(--ion-color-primary-shade);
}

.mbsc-material.mbsc-select-scroller.mbsc-scroller-pointer .mbsc-scroller-wheel-group {
  padding: 0;
}

.mbsc-material.mbsc-select-filter {
  margin: 0;
}

.mbsc-material.mbsc-select-empty-text {
  font-size: 1.375em;
  opacity: 0.5;
}

.mbsc-material.mbsc-select-scroller-inline {
  background-color: var(--ion-text-color);
  color: #303030;
}

.mbsc-material.mbsc-select-filter-clear {
  color: #b0b0b0;
}

.mbsc-material.mbsc-select-filter-clear:hover {
  color: #7d7d7d;
}

.mbsc-material.mbsc-select-scroller.mbsc-scroller-pointer .mbsc-scroller-wheel-item.mbsc-selected {
  color: #1a73e8;
  background: rgba(0, 0, 0, 0.15);
}

.mbsc-material.mbsc-select-group-wheel-multi .mbsc-selected {
  color: #1a73e8;
}

.mbsc-material-dark.mbsc-select-scroller-inline {
  background-color: var(--ion-text-color);
  color: var(--ion-text-color);
}

.mbsc-material-dark.mbsc-select-filter-clear {
  color: grey;
}

.mbsc-material-dark.mbsc-select-filter-clear:hover {
  color: #b3b3b3;
}

.mbsc-material-dark.mbsc-select-scroller.mbsc-scroller-pointer .mbsc-scroller-wheel-item.mbsc-selected {
  color: var(--ion-color-primary-tint);
  background: rgba(0, 0, 0, 0.15);
}

.mbsc-material-dark.mbsc-select-group-wheel-multi .mbsc-selected {
  color: var(--ion-color-primary-tint);
}

.mbsc-select-scroller .mbsc-scroller-wheel-wrapper {
  -moz-box-flex: 1;
  flex: 1 1 auto;
}

.mbsc-select-filter-cont {
  position: relative;
}

.mbsc-select-filter-clear {
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  margin-top: -1em;
  padding: 0.5em;
  cursor: pointer;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.mbsc-select-filter-clear.mbsc-rtl {
  left: 0.5em;
  right: auto;
}

.mbsc-select-filter-clear.mbsc-ltr {
  right: 0.5em;
  left: auto;
}

.mbsc-select-empty .mbsc-scroller-wheel-group-cont {
  visibility: hidden;
}

.mbsc-select-empty-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
}

.mbsc-select-scroller.mbsc-scroller-pointer .mbsc-scroller-wheel-item.mbsc-ltr {
  text-align: left;
}

.mbsc-select-scroller.mbsc-scroller-pointer .mbsc-scroller-wheel-item.mbsc-rtl {
  text-align: right;
}