﻿form-field[breezer-form-field] {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
form-field > label[breezer-form-field] {
  font-size: 14px;
  margin: 5px 0;
}
form-field > p[breezer-form-field] {
  margin: 0 0 4px;
  font-size: 12px;
  color: grey;
  white-space: pre-wrap;
}
editor-for[display="checkbox"][breezer-editor-for-bool] {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  border: 1px solid #E5E5E5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Pro';
  transition: 0.2s;
}
editor-for[display="checkbox"][checked][breezer-editor-for-bool] {
  border: 1px solid var(--website-primary-colour, #4D849D);
  color: var(--primary-colour, #5799CC);
  background-color: var(--background-highlight-colour, #D2E2EF);
}
editor-for[display="checkbox"][checked][breezer-editor-for-bool]::before {
  content: "\f00c";
  font-weight: 400;
}
editor-for[display="checkbox"] > input[type="checkbox"][breezer-editor-for-bool] {
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
editor-for[display="checkbox"]:focus-within[breezer-editor-for-bool] {
  border: 1px solid var(--website-primary-colour, #4D849D);
}
editor-for[display="toggle"][breezer-editor-for-bool] {
  position: relative;
  width: 40px;
  height: 20px;
  display: flex;
  transition: 0.2s;
  border: 1px solid var(--border-colour, #CDCBCB);
  border-radius: calc(20px / 2);
}
editor-for[display="toggle"][breezer-editor-for-bool]::after {
  z-index: 1;
  transition: 0.2s;
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  content: ' ';
  background-color: var(--border-colour, #CDCBCB);
  width: 20px;
  height: 20px;
  border-radius: 10px;
  cursor: pointer;
}
editor-for[display="toggle"][checked][breezer-editor-for-bool] {
  border: 1px solid var(--primary-colour, #5799CC);
  background-color: var(--background-highlight-colour, #D2E2EF);
}
editor-for[display="toggle"][checked][breezer-editor-for-bool]::after {
  background-color: var(--primary-colour, #5799CC);
  left: calc(100% - 20px + 1px);
}
editor-for[display="toggle"] > input[type="checkbox"][breezer-editor-for-bool] {
  width: 40px;
  height: 20px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
dropdown-selected[breezer-dropdown] {
  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;
  min-width: min(250px, 100%);
  display: flex;
  align-items: center;
  cursor: pointer;
}
dropdown-selected:focus[breezer-dropdown],
dropdown-selected:hover[breezer-dropdown] {
  outline: none;
  border: 1px solid var(--primary-colour, #5799CC);
}
dropdown-indicator[breezer-dropdown] {
  margin-left: auto;
}
dropdown-indicator[opened][breezer-dropdown]::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  content: "\f106";
  font-weight: 900;
  font-family: 'Font Awesome 6 Pro';
  margin: 0;
}
dropdown-indicator[closed][breezer-dropdown]::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  content: "\f107";
  font-weight: 900;
  font-family: 'Font Awesome 6 Pro';
  margin: 0;
}
dropdown-indicator:hover[breezer-dropdown] {
  color: var(--primary-colour, #5799CC);
}
dropdown-options[breezer-dropdown] {
  min-width: 250px;
  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);
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow-y: auto;
}
select-for-filter[breezer-select-for-filter] {
  border-bottom: 1px solid var(--website-primary-colour, #4D849D);
  display: flex;
}
input[breezer-select-for-filter] {
  border: none;
  background-image: none;
  background-color: transparent;
  box-shadow: none;
  margin: 0;
  padding: 10px 7px;
  border-radius: 0;
  width: 100%;
}
input:hover[breezer-select-for-filter],
input:focus[breezer-select-for-filter] {
  border: none;
  outline: none;
}
/* Breezer/Components/Forms/EntitySelect/SelectForFooter.razor.rz.scp.css */
select-for-footer .select-footer-container[breezer-select-for-footer] {
  padding: 8px 10px;
  display: block;
  border-top: 1px solid var(--border-colour, #CDCBCB);
}
select-for-footer .select-footer-container .default-text[breezer-select-for-footer] {
  font-size: 13px;
  color: var(--secondary-text-colour, #433D3C);
}
/* Breezer/Components/Forms/EntitySelect/SelectForOptions.razor.rz.scp.css */
select-for-options[breezer-select-for-options] {
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow-y: auto;
}
select-for-options[breezer-select-for-options] loading-spinner {
  margin: 25px 0;
  width: 100%;
  justify-content: center;
}
/* Breezer/Components/Select/SelectOption.razor.rz.scp.css */
select-option[breezer-select-option] {
  padding: 7px;
  cursor: pointer;
  transition: all 0.1s;
}
select-option:hover[breezer-select-option],
select-option[selected][breezer-select-option] {
  background-color: var(--background-highlight-colour, #D2E2EF);
}
input:not([type="color"]),
select,
textarea {
  padding: 8px 10px;
  background-color: #FFF;
  border: 1px solid #E5E5E5;
  border-radius: 3px;
  outline: none;
  font-size: 14px;
  box-sizing: border-box;
  color: #232323;
}
input:not([type="color"]):focus,
select:focus,
textarea:focus,
input:not([type="color"]):hover,
select:hover,
textarea:hover {
  outline: none;
  border: 1px solid var(--website-primary-colour, #4D849D);
}
input[type="text"],
input[type="password"] {
  min-width: 350px;
}
.invalid input,
.invalid textarea,
.invalid radio,
.invalid dropdown-selected {
  border: 1px solid #E60200;
  box-shadow: #E60200 0px 0px 3px 0px inset;
}
editor-for[display=checkbox].invalid {
  border: 1px solid #E60200;
  box-shadow: #E60200 0px 0px 3px 0px inset;
}
validation-for {
  position: absolute;
  bottom: -18px;
  left: 5px;
}
validation-for span {
  color: #E60200;
  font-size: 14px;
  margin-left: 10px;
}
body {
  display: block;
  height: unset;
}
chosen-option[breezer-dropdown-select-chosen-options],
dropdown[select] > dropdown-trigger[breezer-dropdown][breezer-dropdown],
dropdown-select-chosen-options[breezer-dropdown-select-chosen-options] {
  flex: 1 auto;
}
dropdown-options[breezer-dropdown] {
  overflow-y: auto;
}
editor-for[breezer-editor-for-enum] {
  margin: 0;
}
dropdown[select] > dropdown-content[breezer-dropdown] {
  width: 100%;
}
select-for-filter input[type="text"] {
  min-width: 100%;
}
input::placeholder {
  color: #AFB1B1;
}
textarea[breezer-editor-for-string-expandable] {
  resize: vertical;
}
auto-action[breezer-auto-action] {
  margin-top: 0;
  margin-left: auto;
}
auto-action[breezer-auto-action].hero-button button {
  display: inline-block;
  border: 2px solid;
  transition: box-shadow 0.2s;
  font-weight: 500;
  border-radius: 44px;
  text-align: center;
  cursor: pointer;
  padding: 12px 18px;
  font-size: 14px;
  font-family: 'Biennale';
}
auto-action[breezer-auto-action] button:not(.inline, .danger) {
  display: inline-block;
  border: 2px solid;
  transition: box-shadow 0.2s;
  font-weight: 500;
  border-radius: 44px;
  text-align: center;
  cursor: pointer;
  padding: 12px 18px;
  font-size: 14px;
  font-family: 'Biennale';
  background-color: var(--website-primary-colour, #4D849D);
  border-color: var(--website-primary-colour, #4D849D);
  color: #FFF;
  font-size: 17px;
  padding: 17px 40px;
  margin-left: 20px;
}
auto-action[breezer-auto-action] button:not(.inline, .danger):hover,
auto-action[breezer-auto-action] button:not(.inline, .danger):active {
  box-shadow: rgba(from var(--website-primary-colour, #4D849D) r g b / 20%) 0px 0px 0px 8px;
}
auto-action[breezer-auto-action] button.cancel,
auto-action[breezer-auto-action] button.close {
  background-color: #FFF;
  border-color: var(--website-secondary-colour, #37869F);
  color: var(--website-secondary-colour, #37869F);
}
auto-action[breezer-auto-action] button.cancel:hover,
auto-action[breezer-auto-action] button.close:hover,
auto-action[breezer-auto-action] button.cancel:active,
auto-action[breezer-auto-action] button.close:active {
  box-shadow: rgba(from var(--website-secondary-colour, #37869F) r g b / 20%) 0px 0px 0px 8px;
}
auto-action[breezer-auto-action] button.cancel:hover,
auto-action[breezer-auto-action] button.close:hover {
  background: #FFF;
}
auto-action[breezer-auto-action] button.delete {
  border-color: #E60200;
  color: #E60200;
}
auto-action[breezer-auto-action] button.delete:not(.inline) {
  background-color: #FFF;
}
auto-action[breezer-auto-action] button.delete:not(.inline):hover,
auto-action[breezer-auto-action] button.delete:not(.inline):active {
  box-shadow: rgba(from #E60200 r g b / 20%) 0px 0px 0px 8px;
}
form-field[breezer-form-field] {
  max-width: 24em;
  position: relative;
  margin: 20px 0 10px;
}
form-field[breezer-form-field].is-template {
  visibility: hidden;
}
form-field html-editor {
  max-width: 800px;
}
i[breezer-auto-action] {
  margin: 5px;
}
select-option:hover[breezer-select-option],
select-option[selected][breezer-select-option] {
  background-color: unset;
}
avatar {
  margin: 0 5px 0 0;
  height: var(--avatar-size, 50px);
  width: var(--avatar-size, 50px);
  display: flex;
  border-radius: 50%;
  overflow: hidden;
}
avatar span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 42px;
  min-width: 42px;
  height: 100%;
  width: 100%;
  position: relative;
}