﻿:root {
  --background-colour: #f7f5f7;
  --primary-colour: #ed1c24;
  --font-awesome-family: "Font Awesome 6 Pro";
}
@font-face {
  font-family: 'apercu mono';
  font-weight: 400;
  src: url("/fonts/Apercu Pro Mono.otf") format("opentype");
  font-style: normal;
}
@font-face {
  font-family: 'apercu';
  font-weight: 400;
  src: url("/fonts/Apercu Pro Light.otf") format("opentype");
  font-style: normal;
}
@font-face {
  font-family: 'apercu';
  font-weight: normal;
  src: url("/fonts/Apercu Pro Regular.otf") format("opentype");
  font-style: normal;
}
@font-face {
  font-family: 'apercu';
  font-weight: 900;
  src: url("/fonts/Apercu Pro Bold.otf") format("opentype");
  font-style: normal;
}
body {
  font-family: apercu;
  line-height: 1em;
}
body,
html {
  min-height: 100vh;
  color: #363636;
  background: url("/images/background-tile.png") repeat 0 140px / 40px var(--background-colour, #f7f5f7);
}
@media only screen and (max-width: 1700px) {
  body,
  html {
    background-position-y: 115px;
  }
}
h1,
h2,
h3 {
  line-height: normal;
  font-weight: bold;
  margin: 0;
}
h2 {
  font-size: 20px;
}
p {
  font-size: 16px;
}
button.secondary,
.button.secondary {
  background: var(--white, #FFFFFF);
}
dropdown-selected[breezer-dropdown],
search-bar[breezer-search-bar] {
  border: 2px solid #ded5d1;
  border-radius: 0;
  font-size: 16px;
  gap: 10px;
}
dropdown-selected[breezer-dropdown]:hover,
search-bar[breezer-search-bar]:hover,
dropdown-selected[breezer-dropdown]:focus,
search-bar[breezer-search-bar]:focus {
  border-width: 2px;
}
search-bar[breezer-search-bar] input {
  border: none;
}
button:not(.inline),
.button:not(.inline) {
  display: inline-block;
  border-radius: 0;
  border: none;
  font-size: 16px;
}
button:not(.inline):hover,
.button:not(.inline):hover {
  border-color: #ed1c24;
}
button.primary,
.button.primary {
  border: 2px solid #ed1c24;
}
button.secondary,
.button.secondary {
  border: 2px solid #ebe7e8;
  color: var(--text-colour, #282120);
  background: var(--white, #FFFFFF);
}
button.inline,
.button.inline {
  color: #ed1c24;
}
button[disabled],
.button[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
button[disabled]:hover,
.button[disabled]:hover {
  opacity: 0.4;
}
.page {
  max-width: 1500px;
  margin: 40px auto;
}
.page-section {
  padding: 30px 40px;
  background: var(--white, #FFFFFF);
  margin-bottom: 40px;
}
tag,
.pill,
.tag {
  --color: green;
  display: inline-block;
  padding: 5px 10px;
  color: var(--color);
  background: color-mix(in srgb, var(--color) 20%, transparent);
  font-size: 14px;
  text-transform: uppercase;
}
input[type="checkbox"] {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  appearance: none;
  color: var(--text-colour, #282120);
  background-color: var(--white, #FFFFFF);
  border: solid 1px var(--border-colour, #CDCBCB);
  border-radius: 0;
  margin: 0;
  padding: 0;
  height: 24px;
  min-width: 24px;
  width: 24px;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}
input[type="checkbox"]:checked {
  background-color: rgba(41, 128, 185, 0.2);
}
input[type="checkbox"]:checked::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: "\f00c";
  font-weight: 400;
  font-family: 'Font Awesome 6 Pro';
  margin: 0;
}
input[type="checkbox"]:hover,
input[type="checkbox"]:focus {
  border-color: var(--text-colour, #282120);
}
input[type="checkbox"][disabled] {
  background: #ded5d1;
  border-color: #ded5d1;
}