.page:not(.in-iframe) {
  width: 100%;
  min-height: 100%;
  margin: auto;
}

.page:not(.active) {
  display: none;
}

.page-wrapper {
  height: 100%;
  background-color: var(--background-color);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.page-wrapper.modal-active {
  filter: blur(2px) grayscale(0.4) brightness(0.8);
}

.page-content {
  width: 100%;
}

.page-with-receipt {
  display: grid;
  grid-template-columns: auto 330px;
  grid-gap: 30px;
  position: relative;
}
.page-with-receipt .receipt-panel {
  position: sticky;
  top: 0px;
}

.modal, .modal-xl, .modal-l, .modal-m, .modal-s, .modal-xs {
  display: flex;
  flex-direction: column;
  background-color: var(--content-body-background-color);
  border-radius: 5px;
  width: 600px;
  max-width: calc(100% - 20px);
  max-height: calc(100% - 160px);
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  margin: auto;
  top: 250px;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.modal .modal-header, .modal-xl .modal-header, .modal-l .modal-header, .modal-m .modal-header, .modal-s .modal-header, .modal-xs .modal-header {
  background-color: var(--content-header-background-color);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 20px;
}
.modal .modal-header h3, .modal-xl .modal-header h3, .modal-l .modal-header h3, .modal-m .modal-header h3, .modal-s .modal-header h3, .modal-xs .modal-header h3 {
  margin: 0;
  color: var(--content-header-text-color);
}
.modal .modal-header .btn-close-modal, .modal-xl .modal-header .btn-close-modal, .modal-l .modal-header .btn-close-modal, .modal-m .modal-header .btn-close-modal, .modal-s .modal-header .btn-close-modal, .modal-xs .modal-header .btn-close-modal {
  background-color: transparent;
  color: var(--core-color);
  font-size: 0.9em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 5px;
  background-position: center;
  transition: all 0.8s;
  position: absolute;
  color: white;
  top: 12px;
  right: 0px;
  font-size: 20px;
}
.modal .modal-header .btn-close-modal:before, .modal-xl .modal-header .btn-close-modal:before, .modal-l .modal-header .btn-close-modal:before, .modal-m .modal-header .btn-close-modal:before, .modal-s .modal-header .btn-close-modal:before, .modal-xs .modal-header .btn-close-modal:before {
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f00d";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.modal .modal-body, .modal-xl .modal-body, .modal-l .modal-body, .modal-m .modal-body, .modal-s .modal-body, .modal-xs .modal-body {
  max-width: 100%;
  background-color: white;
  padding: 20px;
  overflow-y: auto;
}
.modal .modal-footer, .modal-xl .modal-footer, .modal-l .modal-footer, .modal-m .modal-footer, .modal-s .modal-footer, .modal-xs .modal-footer {
  top: 0px;
  display: flex;
  background-color: whitesmoke;
  padding: 10px 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.modal-xs {
  width: 400px;
}

.modal-s {
  width: 600px;
}

.modal-m {
  width: 800px;
}

.modal-l {
  width: 1000px;
}

.modal-xl {
  width: 1200px;
}

.modal.active, .active.modal-xs, .active.modal-s, .active.modal-m, .active.modal-l, .active.modal-xl {
  pointer-events: all;
  opacity: 1;
  top: 80px;
}

.modal-backdrop {
  background-color: #2b2b2b;
  pointer-events: none;
  opacity: 0;
  z-index: 199;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.5s;
}

.modal-backdrop.active {
  opacity: 0.4;
}

.collapsible-button::after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Pro";
  margin-left: 5px;
}

.collapsible-button.active::after {
  content: "\f0d8";
  font-family: "Font Awesome 5 Pro";
  margin-left: 5px;
}

.collapsible-content {
  padding: 0 18px;
  display: none;
}

.collapsible-content.active {
  display: block;
}

@media only screen and (max-width: 900px) {
  .page-with-receipt {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=views.css.map */