/* src/styles.scss */
.button {
  align-items: center;
  border-radius: 40px;
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  gap: 8px;
  justify-content: center;
  line-height: 2em;
  transition: all 200ms linear;
}
.button-sm {
  padding: 0 1rem;
  font-size: 0.875rem;
}
.button-md {
  padding: 0 1.5rem;
  font-size: 1rem;
}
.button-lg {
  padding: 0 2rem;
  font-size: 1.125rem;
}
.button-primary {
  background-color: #0080a6;
  color: #ffffff;
}
.button-primary:not([disabled]):hover {
  background-color: #005779;
}
.button-primary:not([disabled]):active {
  background-color: #a5d2df;
}
.button-primary:not([disabled]):focus {
  border-color: #0080a6;
}
.button-primary:not([disabled]):focus:hover {
  border-color: #005779;
}
.button-primary:not([disabled]):focus:active {
  border-color: #a5d2df;
}
.button-secondary {
  background-color: #03304d;
  color: #ffffff;
}
.button-secondary:not([disabled]):hover {
  background-color: #011623;
}
.button-secondary:not([disabled]):active {
  background-color: #9aacb8;
}
.button-secondary:not([disabled]):focus {
  border-color: #03304d;
}
.button-secondary:not([disabled]):focus:hover {
  border-color: #011623;
}
.button-secondary:not([disabled]):focus:active {
  border-color: #9aacb8;
}
.button-success {
  background-color: #0c7a3a;
  color: #ffffff;
}
.button-success:not([disabled]):hover {
  background-color: #074923;
}
.button-success:not([disabled]):active {
  background-color: #9ecab0;
}
.button-success:not([disabled]):focus {
  border-color: #0c7a3a;
}
.button-success:not([disabled]):focus:hover {
  border-color: #074923;
}
.button-success:not([disabled]):focus:active {
  border-color: #9ecab0;
}
.button-warning {
  background-color: #c63500;
  color: #ffffff;
}
.button-warning:not([disabled]):hover {
  background-color: #5e2c1f;
}
.button-warning:not([disabled]):active {
  background-color: #f7c5b8;
}
.button-warning:not([disabled]):focus {
  border-color: #c63500;
}
.button-warning:not([disabled]):focus:hover {
  border-color: #5e2c1f;
}
.button-warning:not([disabled]):focus:active {
  border-color: #f7c5b8;
}
.button-danger {
  background-color: #c9025f;
  color: #ffffff;
}
.button-danger:not([disabled]):hover {
  background-color: #500126;
}
.button-danger:not([disabled]):active {
  background-color: #e99abf;
}
.button-danger:not([disabled]):focus {
  border-color: #c9025f;
}
.button-danger:not([disabled]):focus:hover {
  border-color: #500126;
}
.button-danger:not([disabled]):focus:active {
  border-color: #e99abf;
}
.button-info {
  background-color: #1746dc;
  color: #ffffff;
}
.button-info:not([disabled]):hover {
  background-color: #0e2a84;
}
.button-info:not([disabled]):active {
  background-color: #e8edfc;
}
.button-info:not([disabled]):focus {
  border-color: #1746dc;
}
.button-info:not([disabled]):focus:hover {
  border-color: #0e2a84;
}
.button-info:not([disabled]):focus:active {
  border-color: #e8edfc;
}
.button-note {
  background-color: #f3ca40;
  color: #03304d;
}
.button-note:not([disabled]):hover {
  background-color: #61511a;
}
.button-note:not([disabled]):active {
  background-color: #fdf4d9;
}
.button-note:not([disabled]):focus {
  border-color: #f3ca40;
}
.button-note:not([disabled]):focus:hover {
  border-color: #61511a;
}
.button-note:not([disabled]):focus:active {
  border-color: #fdf4d9;
}
.button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.button:focus:not([disabled]) {
  box-shadow: inset white 0px 0px 0px 2px;
  outline: none;
}
.callout {
  padding: 1rem;
  border-radius: 0.25rem;
}
.callout-default {
  background-color: #f3f5f9;
  color: #03304d;
}
.callout-primary {
  background-color: #a5d2df;
  color: #03304d;
}
.callout-secondary {
  background-color: #9aacb8;
  color: #03304d;
}
.callout-success {
  background-color: #9ecab0;
  color: #03304d;
}
.callout-warning {
  background-color: #f7c5b8;
  color: #03304d;
}
.callout-danger {
  background-color: #e99abf;
  color: #03304d;
}
.callout-info {
  background-color: #e8edfc;
  color: #03304d;
}
.callout-note {
  background-color: #fdf4d9;
  color: #03304d;
}
.user-input {
  align-items: center;
  border-radius: 4px;
  border: 1px solid #ced4e2;
  display: flex;
  gap: 8px;
  justify-content: center;
  line-height: normal;
  transition: all 200ms linear;
}
.user-input-sm {
  font-size: 1rem;
}
.user-input-md {
  font-size: 1rem;
}
.user-input-lg {
  padding: 0.75rem;
  font-size: 1rem;
  width: 100%;
}
.user-input-primary {
  border-color: #ced4e2;
  color: #03304d;
}
.user-input-primary:not([disabled]):hover {
  border-color: #03304d;
}
.user-input-primary:not([disabled]):focus {
  border-color: #03304d;
}
.user-input-primary:not([disabled]):focus:hover {
  border-color: #03304d;
}
.user-input-primary:not([disabled]):focus:active {
  border-color: #03304d;
}
.user-input[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.user-input:focus:not([disabled]) {
  box-shadow: inset white 0px 0px 0px 2px;
  outline: none;
}
.loading-spinner {
  animation: rotation 1s linear infinite;
  border-radius: 50%;
  display: inline-block;
}
.loading-spinner-sm {
  height: 1rem;
  width: 1rem;
  font-size: 1rem;
}
.loading-spinner-md {
  height: 2rem;
  width: 2rem;
  font-size: 2rem;
}
.loading-spinner-lg {
  height: 4rem;
  width: 4rem;
  font-size: 4rem;
}
.loading-spinner-primary {
  border: 0.1875em solid #0080a6;
  border-bottom-color: transparent;
}
.loading-spinner-secondary {
  border: 0.1875em solid #03304d;
  border-bottom-color: transparent;
}
.loading-spinner-light {
  border: 0.1875em solid #ffffff;
  border-bottom-color: transparent;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@font-face {
  font-family: "Inter";
  src: url("./media/Inter-Light-R2IJJU4I.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("./media/Inter-Regular-GS5EHSMB.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("./media/Inter-Medium-5IRUMIHZ.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("./media/Inter-Bold-UGVMS3V6.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Granary";
  src: url("./media/granary-light-NVMD36ME.woff2") format("woff2"), url("./media/granary-light-DY5OKDMN.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Granary";
  src: url("./media/granary-regular-R7ZNZOL3.woff2") format("woff2"), url("./media/granary-regular-5BGYNE2K.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Granary";
  src: url("./media/granary-medium-EPNO42MZ.woff2") format("woff2"), url("./media/granary-medium-WAOOK5EB.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Granary";
  src: url("./media/granary-bold-A2KYE4VU.woff2") format("woff2"), url("./media/granary-bold-POERETYA.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
}
.text-align-center {
  text-align: center;
}
:root {
  color: #03304d;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
}
h1 {
  font-family: "Granary", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1rem;
}
h2 {
  font-family: "Granary", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1rem;
}
h3 {
  font-family: "Granary", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1rem;
}
h4 {
  font-family: "Granary", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.text-light {
  font-weight: 300;
}
.text-regular {
  font-weight: 400;
}
.text-medium {
  font-weight: 500;
}
.text-bold,
strong {
  font-weight: 700;
}
.text-h1 {
  font-size: 1.75rem;
}
.text-h2 {
  font-size: 1.5rem;
}
.text-h3 {
  font-size: 1.25rem;
}
.text-h4 {
  font-size: 1.125rem;
}
.text-body {
  font-size: 1rem;
}
.text-sm,
small {
  font-size: 0.875rem;
}
.text-xs {
  font-size: 0.75rem;
}
.display-visible {
  display: inherit !important;
}
.display-hidden {
  display: none !important;
}
@media (min-width: 0px) {
  .display-sm-visible {
    display: inherit !important;
  }
  .display-sm-hidden {
    display: none !important;
  }
}
@media (min-width: 600px) {
  .display-md-visible {
    display: inherit !important;
  }
  .display-md-hidden {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .display-lg-visible {
    display: inherit !important;
  }
  .display-lg-hidden {
    display: none !important;
  }
}
@media (min-width: 1800px) {
  .display-xl-visible {
    display: inherit !important;
  }
  .display-xl-hidden {
    display: none !important;
  }
}
.bg-primary-main {
  background-color: #0080a6;
}
.bg-primary-light {
  background-color: #a5d2df;
}
.bg-primary-dark {
  background-color: #005779;
}
.bg-secondary-main {
  background-color: #03304d;
}
.bg-secondary-light {
  background-color: #9aacb8;
}
.bg-secondary-dark {
  background-color: #011623;
}
.bg-flats-white {
  background-color: #ffffff;
}
.bg-flats-black {
  background-color: #222222;
}
.bg-brand-primary {
  background-color: #0184fd;
}
.bg-brand-secondary {
  background-color: #01dbc6;
}
.bg-success-main {
  background-color: #0c7a3a;
}
.bg-success-light {
  background-color: #9ecab0;
}
.bg-success-dark {
  background-color: #074923;
}
.bg-warning-main {
  background-color: #c63500;
}
.bg-warning-light {
  background-color: #f7c5b8;
}
.bg-warning-dark {
  background-color: #5e2c1f;
}
.bg-danger-main {
  background-color: #c9025f;
}
.bg-danger-light {
  background-color: #e99abf;
}
.bg-danger-dark {
  background-color: #500126;
}
.bg-info-main {
  background-color: #1746dc;
}
.bg-info-light {
  background-color: #e8edfc;
}
.bg-info-dark {
  background-color: #0e2a84;
}
.bg-note-main {
  background-color: #f3ca40;
}
.bg-note-light {
  background-color: #fdf4d9;
}
.bg-note-dark {
  background-color: #61511a;
}
.bg-border-main {
  background-color: #ced4e2;
}
.bg-border-dark {
  background-color: #03304d;
}
.bg-background-main {
  background-color: #ffffff;
}
.bg-background-light {
  background-color: #f3f5f9;
}
.bg-background-dark {
  background-color: #c0cbd3;
}
.bg-highlight-main {
  background-color: #e8edfc;
}
.bg-text-main {
  background-color: #03304d;
}
.bg-text-light {
  background-color: #4f6e82;
}
.bg-text-dark {
  background-color: #011623;
}
.b-primary-main {
  border: 1px solid #0080a6;
}
.b-t-primary-main {
  border-top: 1px solid #0080a6;
}
.b-r-primary-main {
  border-right: 1px solid #0080a6;
}
.b-b-primary-main {
  border-bottom: 1px solid #0080a6;
}
.b-l-primary-main {
  border-left: 1px solid #0080a6;
}
.b-primary-light {
  border: 1px solid #a5d2df;
}
.b-t-primary-light {
  border-top: 1px solid #a5d2df;
}
.b-r-primary-light {
  border-right: 1px solid #a5d2df;
}
.b-b-primary-light {
  border-bottom: 1px solid #a5d2df;
}
.b-l-primary-light {
  border-left: 1px solid #a5d2df;
}
.b-primary-dark {
  border: 1px solid #005779;
}
.b-t-primary-dark {
  border-top: 1px solid #005779;
}
.b-r-primary-dark {
  border-right: 1px solid #005779;
}
.b-b-primary-dark {
  border-bottom: 1px solid #005779;
}
.b-l-primary-dark {
  border-left: 1px solid #005779;
}
.b-secondary-main {
  border: 1px solid #03304d;
}
.b-t-secondary-main {
  border-top: 1px solid #03304d;
}
.b-r-secondary-main {
  border-right: 1px solid #03304d;
}
.b-b-secondary-main {
  border-bottom: 1px solid #03304d;
}
.b-l-secondary-main {
  border-left: 1px solid #03304d;
}
.b-secondary-light {
  border: 1px solid #9aacb8;
}
.b-t-secondary-light {
  border-top: 1px solid #9aacb8;
}
.b-r-secondary-light {
  border-right: 1px solid #9aacb8;
}
.b-b-secondary-light {
  border-bottom: 1px solid #9aacb8;
}
.b-l-secondary-light {
  border-left: 1px solid #9aacb8;
}
.b-secondary-dark {
  border: 1px solid #011623;
}
.b-t-secondary-dark {
  border-top: 1px solid #011623;
}
.b-r-secondary-dark {
  border-right: 1px solid #011623;
}
.b-b-secondary-dark {
  border-bottom: 1px solid #011623;
}
.b-l-secondary-dark {
  border-left: 1px solid #011623;
}
.b-flats-white {
  border: 1px solid #ffffff;
}
.b-t-flats-white {
  border-top: 1px solid #ffffff;
}
.b-r-flats-white {
  border-right: 1px solid #ffffff;
}
.b-b-flats-white {
  border-bottom: 1px solid #ffffff;
}
.b-l-flats-white {
  border-left: 1px solid #ffffff;
}
.b-flats-black {
  border: 1px solid #222222;
}
.b-t-flats-black {
  border-top: 1px solid #222222;
}
.b-r-flats-black {
  border-right: 1px solid #222222;
}
.b-b-flats-black {
  border-bottom: 1px solid #222222;
}
.b-l-flats-black {
  border-left: 1px solid #222222;
}
.b-brand-primary {
  border: 1px solid #0184fd;
}
.b-t-brand-primary {
  border-top: 1px solid #0184fd;
}
.b-r-brand-primary {
  border-right: 1px solid #0184fd;
}
.b-b-brand-primary {
  border-bottom: 1px solid #0184fd;
}
.b-l-brand-primary {
  border-left: 1px solid #0184fd;
}
.b-brand-secondary {
  border: 1px solid #01dbc6;
}
.b-t-brand-secondary {
  border-top: 1px solid #01dbc6;
}
.b-r-brand-secondary {
  border-right: 1px solid #01dbc6;
}
.b-b-brand-secondary {
  border-bottom: 1px solid #01dbc6;
}
.b-l-brand-secondary {
  border-left: 1px solid #01dbc6;
}
.b-success-main {
  border: 1px solid #0c7a3a;
}
.b-t-success-main {
  border-top: 1px solid #0c7a3a;
}
.b-r-success-main {
  border-right: 1px solid #0c7a3a;
}
.b-b-success-main {
  border-bottom: 1px solid #0c7a3a;
}
.b-l-success-main {
  border-left: 1px solid #0c7a3a;
}
.b-success-light {
  border: 1px solid #9ecab0;
}
.b-t-success-light {
  border-top: 1px solid #9ecab0;
}
.b-r-success-light {
  border-right: 1px solid #9ecab0;
}
.b-b-success-light {
  border-bottom: 1px solid #9ecab0;
}
.b-l-success-light {
  border-left: 1px solid #9ecab0;
}
.b-success-dark {
  border: 1px solid #074923;
}
.b-t-success-dark {
  border-top: 1px solid #074923;
}
.b-r-success-dark {
  border-right: 1px solid #074923;
}
.b-b-success-dark {
  border-bottom: 1px solid #074923;
}
.b-l-success-dark {
  border-left: 1px solid #074923;
}
.b-warning-main {
  border: 1px solid #c63500;
}
.b-t-warning-main {
  border-top: 1px solid #c63500;
}
.b-r-warning-main {
  border-right: 1px solid #c63500;
}
.b-b-warning-main {
  border-bottom: 1px solid #c63500;
}
.b-l-warning-main {
  border-left: 1px solid #c63500;
}
.b-warning-light {
  border: 1px solid #f7c5b8;
}
.b-t-warning-light {
  border-top: 1px solid #f7c5b8;
}
.b-r-warning-light {
  border-right: 1px solid #f7c5b8;
}
.b-b-warning-light {
  border-bottom: 1px solid #f7c5b8;
}
.b-l-warning-light {
  border-left: 1px solid #f7c5b8;
}
.b-warning-dark {
  border: 1px solid #5e2c1f;
}
.b-t-warning-dark {
  border-top: 1px solid #5e2c1f;
}
.b-r-warning-dark {
  border-right: 1px solid #5e2c1f;
}
.b-b-warning-dark {
  border-bottom: 1px solid #5e2c1f;
}
.b-l-warning-dark {
  border-left: 1px solid #5e2c1f;
}
.b-danger-main {
  border: 1px solid #c9025f;
}
.b-t-danger-main {
  border-top: 1px solid #c9025f;
}
.b-r-danger-main {
  border-right: 1px solid #c9025f;
}
.b-b-danger-main {
  border-bottom: 1px solid #c9025f;
}
.b-l-danger-main {
  border-left: 1px solid #c9025f;
}
.b-danger-light {
  border: 1px solid #e99abf;
}
.b-t-danger-light {
  border-top: 1px solid #e99abf;
}
.b-r-danger-light {
  border-right: 1px solid #e99abf;
}
.b-b-danger-light {
  border-bottom: 1px solid #e99abf;
}
.b-l-danger-light {
  border-left: 1px solid #e99abf;
}
.b-danger-dark {
  border: 1px solid #500126;
}
.b-t-danger-dark {
  border-top: 1px solid #500126;
}
.b-r-danger-dark {
  border-right: 1px solid #500126;
}
.b-b-danger-dark {
  border-bottom: 1px solid #500126;
}
.b-l-danger-dark {
  border-left: 1px solid #500126;
}
.b-info-main {
  border: 1px solid #1746dc;
}
.b-t-info-main {
  border-top: 1px solid #1746dc;
}
.b-r-info-main {
  border-right: 1px solid #1746dc;
}
.b-b-info-main {
  border-bottom: 1px solid #1746dc;
}
.b-l-info-main {
  border-left: 1px solid #1746dc;
}
.b-info-light {
  border: 1px solid #e8edfc;
}
.b-t-info-light {
  border-top: 1px solid #e8edfc;
}
.b-r-info-light {
  border-right: 1px solid #e8edfc;
}
.b-b-info-light {
  border-bottom: 1px solid #e8edfc;
}
.b-l-info-light {
  border-left: 1px solid #e8edfc;
}
.b-info-dark {
  border: 1px solid #0e2a84;
}
.b-t-info-dark {
  border-top: 1px solid #0e2a84;
}
.b-r-info-dark {
  border-right: 1px solid #0e2a84;
}
.b-b-info-dark {
  border-bottom: 1px solid #0e2a84;
}
.b-l-info-dark {
  border-left: 1px solid #0e2a84;
}
.b-note-main {
  border: 1px solid #f3ca40;
}
.b-t-note-main {
  border-top: 1px solid #f3ca40;
}
.b-r-note-main {
  border-right: 1px solid #f3ca40;
}
.b-b-note-main {
  border-bottom: 1px solid #f3ca40;
}
.b-l-note-main {
  border-left: 1px solid #f3ca40;
}
.b-note-light {
  border: 1px solid #fdf4d9;
}
.b-t-note-light {
  border-top: 1px solid #fdf4d9;
}
.b-r-note-light {
  border-right: 1px solid #fdf4d9;
}
.b-b-note-light {
  border-bottom: 1px solid #fdf4d9;
}
.b-l-note-light {
  border-left: 1px solid #fdf4d9;
}
.b-note-dark {
  border: 1px solid #61511a;
}
.b-t-note-dark {
  border-top: 1px solid #61511a;
}
.b-r-note-dark {
  border-right: 1px solid #61511a;
}
.b-b-note-dark {
  border-bottom: 1px solid #61511a;
}
.b-l-note-dark {
  border-left: 1px solid #61511a;
}
.b-border-main {
  border: 1px solid #ced4e2;
}
.b-t-border-main {
  border-top: 1px solid #ced4e2;
}
.b-r-border-main {
  border-right: 1px solid #ced4e2;
}
.b-b-border-main {
  border-bottom: 1px solid #ced4e2;
}
.b-l-border-main {
  border-left: 1px solid #ced4e2;
}
.b-border-dark {
  border: 1px solid #03304d;
}
.b-t-border-dark {
  border-top: 1px solid #03304d;
}
.b-r-border-dark {
  border-right: 1px solid #03304d;
}
.b-b-border-dark {
  border-bottom: 1px solid #03304d;
}
.b-l-border-dark {
  border-left: 1px solid #03304d;
}
.b-background-main {
  border: 1px solid #ffffff;
}
.b-t-background-main {
  border-top: 1px solid #ffffff;
}
.b-r-background-main {
  border-right: 1px solid #ffffff;
}
.b-b-background-main {
  border-bottom: 1px solid #ffffff;
}
.b-l-background-main {
  border-left: 1px solid #ffffff;
}
.b-background-light {
  border: 1px solid #f3f5f9;
}
.b-t-background-light {
  border-top: 1px solid #f3f5f9;
}
.b-r-background-light {
  border-right: 1px solid #f3f5f9;
}
.b-b-background-light {
  border-bottom: 1px solid #f3f5f9;
}
.b-l-background-light {
  border-left: 1px solid #f3f5f9;
}
.b-background-dark {
  border: 1px solid #c0cbd3;
}
.b-t-background-dark {
  border-top: 1px solid #c0cbd3;
}
.b-r-background-dark {
  border-right: 1px solid #c0cbd3;
}
.b-b-background-dark {
  border-bottom: 1px solid #c0cbd3;
}
.b-l-background-dark {
  border-left: 1px solid #c0cbd3;
}
.b-highlight-main {
  border: 1px solid #e8edfc;
}
.b-t-highlight-main {
  border-top: 1px solid #e8edfc;
}
.b-r-highlight-main {
  border-right: 1px solid #e8edfc;
}
.b-b-highlight-main {
  border-bottom: 1px solid #e8edfc;
}
.b-l-highlight-main {
  border-left: 1px solid #e8edfc;
}
.b-text-main {
  border: 1px solid #03304d;
}
.b-t-text-main {
  border-top: 1px solid #03304d;
}
.b-r-text-main {
  border-right: 1px solid #03304d;
}
.b-b-text-main {
  border-bottom: 1px solid #03304d;
}
.b-l-text-main {
  border-left: 1px solid #03304d;
}
.b-text-light {
  border: 1px solid #4f6e82;
}
.b-t-text-light {
  border-top: 1px solid #4f6e82;
}
.b-r-text-light {
  border-right: 1px solid #4f6e82;
}
.b-b-text-light {
  border-bottom: 1px solid #4f6e82;
}
.b-l-text-light {
  border-left: 1px solid #4f6e82;
}
.b-text-dark {
  border: 1px solid #011623;
}
.b-t-text-dark {
  border-top: 1px solid #011623;
}
.b-r-text-dark {
  border-right: 1px solid #011623;
}
.b-b-text-dark {
  border-bottom: 1px solid #011623;
}
.b-l-text-dark {
  border-left: 1px solid #011623;
}
.m-t-0,
.m-y-0 {
  margin-top: 0;
}
.p-t-0,
.p-y-0 {
  padding-top: 0;
}
.m-r-0,
.m-x-0 {
  margin-right: 0;
}
.p-r-0,
.p-x-0 {
  padding-right: 0;
}
.m-b-0,
.m-y-0 {
  margin-bottom: 0;
}
.p-b-0,
.p-y-0 {
  padding-bottom: 0;
}
.m-l-0,
.m-x-0 {
  margin-left: 0;
}
.p-l-0,
.p-x-0 {
  padding-left: 0;
}
.m-0 {
  margin: 0;
}
.p-0 {
  padding: 0;
}
.m-t-1,
.m-y-1 {
  margin-top: 0.5rem;
}
.p-t-1,
.p-y-1 {
  padding-top: 0.5rem;
}
.m-r-1,
.m-x-1 {
  margin-right: 0.5rem;
}
.p-r-1,
.p-x-1 {
  padding-right: 0.5rem;
}
.m-b-1,
.m-y-1 {
  margin-bottom: 0.5rem;
}
.p-b-1,
.p-y-1 {
  padding-bottom: 0.5rem;
}
.m-l-1,
.m-x-1 {
  margin-left: 0.5rem;
}
.p-l-1,
.p-x-1 {
  padding-left: 0.5rem;
}
.m-1 {
  margin: 0.5rem;
}
.p-1 {
  padding: 0.5rem;
}
.m-t-2,
.m-y-2 {
  margin-top: 1rem;
}
.p-t-2,
.p-y-2 {
  padding-top: 1rem;
}
.m-r-2,
.m-x-2 {
  margin-right: 1rem;
}
.p-r-2,
.p-x-2 {
  padding-right: 1rem;
}
.m-b-2,
.m-y-2 {
  margin-bottom: 1rem;
}
.p-b-2,
.p-y-2 {
  padding-bottom: 1rem;
}
.m-l-2,
.m-x-2 {
  margin-left: 1rem;
}
.p-l-2,
.p-x-2 {
  padding-left: 1rem;
}
.m-2 {
  margin: 1rem;
}
.p-2 {
  padding: 1rem;
}
.m-t-3,
.m-y-3 {
  margin-top: 1.5rem;
}
.p-t-3,
.p-y-3 {
  padding-top: 1.5rem;
}
.m-r-3,
.m-x-3 {
  margin-right: 1.5rem;
}
.p-r-3,
.p-x-3 {
  padding-right: 1.5rem;
}
.m-b-3,
.m-y-3 {
  margin-bottom: 1.5rem;
}
.p-b-3,
.p-y-3 {
  padding-bottom: 1.5rem;
}
.m-l-3,
.m-x-3 {
  margin-left: 1.5rem;
}
.p-l-3,
.p-x-3 {
  padding-left: 1.5rem;
}
.m-3 {
  margin: 1.5rem;
}
.p-3 {
  padding: 1.5rem;
}
.m-t-4,
.m-y-4 {
  margin-top: 2rem;
}
.p-t-4,
.p-y-4 {
  padding-top: 2rem;
}
.m-r-4,
.m-x-4 {
  margin-right: 2rem;
}
.p-r-4,
.p-x-4 {
  padding-right: 2rem;
}
.m-b-4,
.m-y-4 {
  margin-bottom: 2rem;
}
.p-b-4,
.p-y-4 {
  padding-bottom: 2rem;
}
.m-l-4,
.m-x-4 {
  margin-left: 2rem;
}
.p-l-4,
.p-x-4 {
  padding-left: 2rem;
}
.m-4 {
  margin: 2rem;
}
.p-4 {
  padding: 2rem;
}
.m-t-5,
.m-y-5 {
  margin-top: 2.5rem;
}
.p-t-5,
.p-y-5 {
  padding-top: 2.5rem;
}
.m-r-5,
.m-x-5 {
  margin-right: 2.5rem;
}
.p-r-5,
.p-x-5 {
  padding-right: 2.5rem;
}
.m-b-5,
.m-y-5 {
  margin-bottom: 2.5rem;
}
.p-b-5,
.p-y-5 {
  padding-bottom: 2.5rem;
}
.m-l-5,
.m-x-5 {
  margin-left: 2.5rem;
}
.p-l-5,
.p-x-5 {
  padding-left: 2.5rem;
}
.m-5 {
  margin: 2.5rem;
}
.p-5 {
  padding: 2.5rem;
}
.text-primary-main {
  color: #0080a6;
}
.text-primary-light {
  color: #a5d2df;
}
.text-primary-dark {
  color: #005779;
}
.text-secondary-main {
  color: #03304d;
}
.text-secondary-light {
  color: #9aacb8;
}
.text-secondary-dark {
  color: #011623;
}
.text-flats-white {
  color: #ffffff;
}
.text-flats-black {
  color: #222222;
}
.text-brand-primary {
  color: #0184fd;
}
.text-brand-secondary {
  color: #01dbc6;
}
.text-success-main {
  color: #0c7a3a;
}
.text-success-light {
  color: #9ecab0;
}
.text-success-dark {
  color: #074923;
}
.text-warning-main {
  color: #c63500;
}
.text-warning-light {
  color: #f7c5b8;
}
.text-warning-dark {
  color: #5e2c1f;
}
.text-danger-main {
  color: #c9025f;
}
.text-danger-light {
  color: #e99abf;
}
.text-danger-dark {
  color: #500126;
}
.text-info-main {
  color: #1746dc;
}
.text-info-light {
  color: #e8edfc;
}
.text-info-dark {
  color: #0e2a84;
}
.text-note-main {
  color: #f3ca40;
}
.text-note-light {
  color: #fdf4d9;
}
.text-note-dark {
  color: #61511a;
}
.text-border-main {
  color: #ced4e2;
}
.text-border-dark {
  color: #03304d;
}
.text-background-main {
  color: #ffffff;
}
.text-background-light {
  color: #f3f5f9;
}
.text-background-dark {
  color: #c0cbd3;
}
.text-highlight-main {
  color: #e8edfc;
}
.text-text-main {
  color: #03304d;
}
.text-text-light {
  color: #4f6e82;
}
.text-text-dark {
  color: #011623;
}
.action-button-block-sm-end-md {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 600px) {
  .action-button-block-sm-end-md {
    flex-direction: row;
    justify-content: end;
  }
}
.action-button-block-sm-center-md {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 600px) {
  .action-button-block-sm-center-md {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .action-button-block-sm-center-md {
    flex-direction: row;
    justify-content: center;
  }
}
.content-layout-column {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.content-layout-column-sm-row-lg {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1200px) {
  .content-layout-column-sm-row-lg {
    flex-direction: row;
  }
}
svg-icon.override-center-icon {
  align-items: center;
  display: flex;
  justify-content: center;
}
h1 {
  font-weight: 700;
  font-size: 1.75rem;
  color: #03304d;
}
h2 {
  font-weight: 700;
  font-size: 1.5rem;
  color: #03304d;
}
h4 {
  font-weight: 700;
  font-size: 1.125rem;
  color: #03304d;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-WHXPLTTW.css.map */
