﻿breezer-page,
.br-page {
  --max-page-width: 1500px;
  width: 100%;
  display: grid;
  grid-template-areas: 'header-left-gutter header header-right-gutter' 'left-gutter content right-gutter' 'left-gutter footer right-gutter';
  grid-template-columns: auto min(96%, var(--max-page-width)) auto;
  grid-template-rows: auto 1fr min-content;
}
breezer-page.br-display,
.br-page.br-display,
breezer-page.br-edit,
.br-page.br-edit {
  --max-form-width: 800px;
  grid-template-columns: auto min(96%, var(--max-form-width)) auto;
}
breezer-page.br-display > content,
.br-page.br-display > content,
breezer-page.br-edit > content,
.br-page.br-edit > content {
  border-radius: 2px;
  background-color: var(--white, #FFFFFF);
  padding: 15px 25px 20px 25px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width : 1401px) {
  breezer-page,
  .br-page {
    margin-top: 40px;
  }
}
@media only screen and (min-width : 601px) and (max-width : 1400px) {
  breezer-page,
  .br-page {
    margin-top: 25px;
  }
}
breezer-page > header,
.br-page > header {
  grid-area: header;
  display: grid;
  grid-template-areas: 'title actions';
  grid-template-columns: auto auto;
  position: sticky;
  top: 0;
  z-index: 4;
  margin: 10px 0;
  padding: 5px 0;
  background-color: var(--background-colour, #FAFAFA);
  box-shadow: var(--background-colour, #FAFAFA) 0 0 8px 8px;
}
breezer-page > header > h1,
.br-page > header > h1 {
  grid-area: title;
  margin: 0;
}
breezer-page > header > auto-actions,
.br-page > header > auto-actions {
  grid-area: actions;
}
breezer-page > content,
.br-page > content {
  grid-area: content;
  display: flex;
  flex-direction: column;
}
breezer-page > content > *,
.br-page > content > * {
  margin-bottom: 7px;
}
breezer-page > footer,
.br-page > footer {
  grid-area: footer;
}
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}
/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}
/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}
/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}
/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}
/**
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}
html {
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
  background-color: var(--background-colour, #FAFAFA);
  color: var(--text-colour, #282120);
  height: 100%;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  display: flex;
  flex-direction: column;
  margin: 0;
  height: 100%;
}
#app {
  height: inherit;
}
h1,
h2,
h2 {
  font-weight: 300;
}
main {
  flex: 1 0 auto;
}
a {
  text-decoration: none;
  color: var(--primary-colour, #5799CC);
}
button:not(.inline),
.button:not(.inline) {
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9rem;
  position: relative;
}
button:not(.inline, .secondary, .danger),
.button:not(.inline, .secondary, .danger) {
  background-color: var(--primary-colour, #5799CC);
  color: var(--white, #FFFFFF);
  border: 1px solid var(--primary-colour, #5799CC);
}
button:not(.inline, .secondary, .danger):hover,
.button:not(.inline, .secondary, .danger):hover {
  opacity: 0.8;
}
button.secondary,
.button.secondary {
  padding: 8px 16px;
  border: 1px solid var(--border-colour, #CDCBCB);
  background-color: transparent;
  color: var(--text-colour, #282120);
}
button.secondary:hover,
.button.secondary:hover {
  border-color: var(--text-colour, #282120);
}
button.inline,
.button.inline {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
  margin: 0;
}
button.inline:hover,
.button.inline:hover {
  color: var(--primary-colour, #5799CC);
}
button.danger,
.button.danger {
  padding: 8px 16px;
  background-color: var(--warning-colour, #C92C10);
  color: var(--white, #FFFFFF);
  border: none;
}
button.danger:hover,
.button.danger:hover {
  opacity: 0.8;
}
button[loading],
.button[loading] {
  position: relative;
  opacity: 0.5;
}
button[loading]::after,
.button[loading]::after {
  margin: auto;
  content: " ";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid var(--text-colour, #282120);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s ease infinite;
  opacity: 0.4;
}
button.widget {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
  margin: 0;
  font-size: 22px;
  color: var(--primary-colour, #5799CC);
  margin: 0 7px;
  transition: 0.3s;
}
button.widget:hover {
  color: var(--primary-colour, #5799CC);
}
button.widget:hover {
  color: var(--secondary-text-colour, #433D3C);
}
a {
  text-decoration: none;
}
.popup-content {
  display: block;
  background-color: var(--white, #FFFFFF);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
input:not([type="color"]),
select,
textarea {
  padding: 8px 10px;
  background-color: var(--white, #FFFFFF);
  border: 1px solid var(--border-colour, #CDCBCB);
  border-radius: 3px;
  outline: none;
  font-size: 14px;
  box-sizing: border-box;
  color: var(--text-colour, #282120);
  font-family: 'Roboto', sans-serif;
}
input:not([type="color"]):focus,
select:focus,
textarea:focus,
input:not([type="color"]):hover,
select:hover,
textarea:hover {
  outline: none;
  border: 1px solid var(--primary-colour, #5799CC);
}
input[type="text"],
input[type="password"] {
  min-width: 350px;
}
input[type="checkbox"] {
  width: auto;
}
.invalid input,
.invalid textarea,
.invalid radio,
.invalid dropdown-selected {
  border: 1px solid var(--warning-colour, #C92C10);
  box-shadow: var(--warning-colour, #C92C10) 0px 0px 3px 0px inset;
}
editor-for[display=checkbox].invalid {
  border: 1px solid var(--warning-colour, #C92C10);
  box-shadow: var(--warning-colour, #C92C10) 0px 0px 3px 0px inset;
}
.blazored-modal-container {
  z-index: 3000;
  overflow-y: scroll;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  padding: 30px;
}
.blazored-modal-overlay {
  backdrop-filter: blur(3px);
  background-color: rgba(var(--text-colour, #282120), 0.2);
}
.blazored-modal {
  min-width: 60vw;
  padding: 0.8rem 1.5rem 1.5rem 1.5rem;
  background-color: var(--white, #FFFFFF);
  border-radius: 5px;
  box-shadow: 0 5px 10px 0 rgb(0 0 0%);
  margin: auto;
}
.blazored-modal-header {
  padding: 0;
  position: relative;
}
.blazored-modal-header > button.blazored-modal-close {
  top: 0;
  right: 0;
  position: absolute;
  color: var(--secondary-text-colour, #433D3C);
  font-size: 20px;
}
.blazored-modal-header > button.blazored-modal-close:hover {
  color: var(--text-colour, #282120);
}
#blazor-error-ui {
  background: var(--warning-colour, #C92C10);
  color: var(--white, #FFFFFF);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: none;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
}
#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}
.app-loading {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--background-colour, #FAFAFA);
}
.app-loading > img {
  max-width: 300px;
  max-height: 300px;
  animation: loading 3s linear infinite;
}
dropdown[type="tag-summary-model"] dropdown-select-chosen-options[breezer-dropdown-select-chosen-options] {
  flex-direction: row;
}
dropdown[type="tag-summary-model"] dropdown-select-chosen-options[breezer-dropdown-select-chosen-options] > chosen-option {
  padding: 0;
  min-width: unset;
  position: relative;
  border: none;
}
dropdown[type="tag-summary-model"] dropdown-select-chosen-options[breezer-dropdown-select-chosen-options] > chosen-option summary-for[type="tag"] {
  padding-right: 40px;
  border: 1px solid var(--border-colour, #CDCBCB);
}
dropdown[type="tag-summary-model"] dropdown-select-chosen-options[breezer-dropdown-select-chosen-options] > chosen-option button.inline.remove-option {
  position: absolute;
  right: 5px;
  border-radius: 10px;
  background-color: var(--background-colour, #FAFAFA);
  color: var(--text-colour, #282120);
}
summary-for[type="list-tag-summary-model"] > .list-item-container {
  display: inline-block;
}
display-for[type="list-tag-summary-model"] > .list-items {
  flex-direction: row;
}
display-for[type="list-tag-summary-model"] > .list-items > summary-for {
  margin-right: 3px;
}
button.ql-attachment::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  content: "\f0c6";
  font-weight: 900;
  font-family: var(--font-awesome-family, "Font Awesome 6 Free");
  margin: 0;
}
a.ql-attachment[uploading] {
  opacity: 0.5;
}
a.ql-attachment[uploading]:before {
  animation: spin 1s ease-in-out infinite;
}
a.ql-attachment::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  content: "\f0c6";
  font-weight: 900;
  font-family: var(--font-awesome-family, "Font Awesome 6 Free");
  margin: 5px;
}
.ql-formats > button {
  color: #4e4e4e;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
body {
  background: var(--background-colour, #FAFAFA);
}
.auth-body-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
  min-height: 200px;
  min-width: 400px;
  background: var(--white, #FFFFFF);
  border-radius: 10px;
  padding: 40px 50px;
}
.auth-body-container button,
.auth-body-container .button {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  display: block;
}
.auth-body-container .validation-summary-errors {
  color: var(--warning-colour, #C92C10);
}
.auth-body-container .validation-summary-errors ul {
  list-style-type: none;
}
.auth-body-container .form-group {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
.auth-body-container .form-group input:not([type="checkbox"]) {
  width: 100%;
  line-height: 1.5;
  border-radius: 5px;
}
.auth-body-container .form-group input:not([type="checkbox"]).input-validation-error {
  border: 1px solid var(--warning-colour, #C92C10);
}
.auth-body-container .form-group label {
  font-size: 12px;
  margin-bottom: 5px;
}
.auth-body-container .form-group .field-validation-error {
  position: absolute;
  top: 100%;
  left: 10px;
  font-size: 14px;
  color: var(--warning-colour, #C92C10);
}
.auth-body-container .logo-container {
  text-align: center;
}
.auth-body-container .logo-container img {
  max-width: 200px;
}
.auth-body-container .auth-page .lead {
  text-align: center;
  padding-bottom: 20px;
}
.auth-body-container .auth-page .section-separator {
  margin: 20px 0;
  border-bottom: 1px solid var(--border-colour, #CDCBCB);
  height: 0.5px;
}
.auth-body-container .auth-page .external-provider-auth {
  margin-top: 20px;
}
.auth-body-container .auth-page .external-provider-auth .provider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  height: 40px;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 5px 0;
  text-align: center;
  font-size: 14px;
  border-radius: 5px;
}
.auth-body-container .auth-page .external-provider-auth .provider img {
  max-width: 30px;
  padding-right: 5px;
}
.auth-body-container .auth-page .external-provider-auth .provider:hover {
  background-color: #fafafa;
  cursor: pointer;
}
.auth-body-container .auth-page .external-provider-auth .provider login-caption {
  display: inline-block;
}
.auth-body-container .auth-page .auth-links .redir-link {
  padding-bottom: 5px;
}
.auth-body-container .login-page .continue-as-container {
  text-align: center;
}
.auth-body-container .terms-page form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.auth-body-container .terms-page form .terms {
  max-height: 400px;
  overflow-y: scroll;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-colour, #CDCBCB);
}
.auth-body-container .enable-authenticator .mfa-description {
  text-align: center;
}
.auth-body-container .enable-authenticator img {
  margin: 0 auto 10px;
}
.auth-body-container .enable-authenticator .text-danger {
  color: var(--warning-colour, #C92C10);
}
.auth-body-container .enable-authenticator form:first-of-type {
  padding-top: 15px;
}
.auth-body-container .enable-authenticator form:first-of-type input {
  font-size: 20px;
  letter-spacing: 20px;
  text-align: center;
}
.auth-body-container .enable-authenticator form:last-of-type button {
  width: max-content;
  background: none;
  border: none;
  color: var(--primary-colour, #5799CC);
  margin: auto;
}
.auth-body-container .recovery-codes form {
  gap: 0;
}
.auth-body-container .recovery-codes form ul {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-around;
  padding-left: 0;
  row-gap: 15px;
}
.auth-body-container .recovery-codes form button {
  margin-top: 15px;
}
.auth-body-container .verify-2fa form {
  padding-top: 15px;
}
.auth-body-container .verify-2fa form input {
  font-size: 20px;
  letter-spacing: 20px;
  text-align: center;
}
span.seperator {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 16px 0;
  font-size: 12px;
  color: grey;
}
.tenant-invite,
.tenant-option {
  display: block;
  text-align: center;
  margin-bottom: 12px;
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 5px 0;
  border-radius: 5px;
  color: var(--primary-colour, #5799CC);
}
.tenant-invite h3,
.tenant-option h3 {
  color: var(--primary-colour, #5799CC);
  text-align: center;
}
.tenant-invite .invite-response {
  display: grid;
  grid-template-columns: auto auto;
}
.tenant-invite .invite-response label.response-option {
  color: var(--secondary-colour, #21394C);
  transition: opacity 0.2s;
}