/**
** STYLESHEETS
** Name: App
***********************************************************************************/
/**
** RESET
****************************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
** BASE
****************************************/
/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** HELPERS
** Name: Rem
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** FUNCTIONS
****************************************/
/**
** SETTINGS
** Name: Colors
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** DESCRIPTIVES
****************************************/
/**
** FUNCTIONALS
****************************************/
/**
** ALL
****************************************/
/**
** FUNCTION
** Name: Get
****************************************/
/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Responsive
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** BREAKPOINTS
****************************************/
/**
** MAP
****************************************/
/**
** MIXINS
****************************************/
/**
** CONTAINER
****************************************/
/**
** GUTTER
****************************************/
/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Fonts
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** FONT FACE HELPERS
****************************************/
/**
** FAMILIES
****************************************/
/**
** TEXT SIZES
****************************************/
/**
** WEIGHTS
****************************************/
/**
** TEXTS
****************************************/
/**
** TITLES
****************************************/
/**
** FONT FACES
****************************************/
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("../fonts/Rubik-VariableFont_wght-BvvDcLh.woff2") format("woff2-variations");
}
@font-face {
  font-family: "Rubik";
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url("../fonts/Rubik-Italic-VariableFont_wght-yaCk5aT.woff2") format("woff2-variations");
}
/**
** STYLES
****************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

*[hidden] {
  display: none !important;
}

*:focus-visible {
  outline: 0.25rem solid var(--color-outline, #ffc943);
  outline-offset: 0.125rem;
  border-radius: 0.25rem;
}

@-ms-viewport {
  width: device-width;
}
html {
  display: flex;
  min-height: 100%; /* [3] */
  overflow-y: scroll; /* [2] */
  font-family: "Rubik", "Arial", sans-serif;
  font-size: 100%; /* [1] */
  line-height: 1.7; /* [1] */
  color: var(--color-foreground, #000);
  background: var(--color-background, #fff) none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth; /* [4] */
  scroll-padding-top: 1.25rem;
}

body {
  width: 100%;
  margin: 0;
  font-family: "Rubik", "Arial", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  text-size-adjust: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

strong,
b {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}

/**
** LAYOUTS
****************************************/
/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** LAYOUTS
** Name: Page
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** VARIABLES
****************************************/
/**
** STYLES
****************************************/
.l-page {
  min-height: 100%;
}
@media only screen and (min-width: 1220px) {
  .l-page {
    padding-left: 17.5rem;
  }
}
.l-page:before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  opacity: 0;
  z-index: 8;
  transition: opacity 0.3s ease;
}
html.is-overlayed .l-page:before {
  pointer-events: all;
  opacity: 1;
}
html.has-headband .l-page {
  padding-top: 3.75rem;
}

/**
** Pre
****************************************/
.l-page__pre {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 3.75rem;
  z-index: 9;
}

/**
** Head
****************************************/
@media only screen and (min-width: 1220px) {
  .l-page__head {
    position: fixed;
    width: 17.5rem;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  html.has-headband .l-page__head {
    top: 3.75rem;
  }
}

/**
** Body
****************************************/
.l-page__body {
  min-height: 100vh;
  background-color: var(--color-greyblue-light, #f7f8fb);
}
html.page-suspended .l-page__body {
  background-color: var(--color-orange-light, #fff9f3);
}
@media only screen and (max-width: 719px) {
  .l-page__body {
    padding-top: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1219px) {
  .l-page__body {
    padding-top: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 1219px) {
  .l-page__body {
    min-height: calc(100vh - 5rem);
  }
}
@media only screen and (min-width: 1220px) {
  .l-page__body {
    min-height: 100vh;
    padding-top: 3rem;
    padding-right: 3.5rem;
    padding-bottom: 3rem;
    padding-left: 3.5rem;
  }
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** LAYOUTS
** Name: Main
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
/**
** Head
****************************************/
/**
** Back
****************************************/
.l-main__back {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

/**
** Heading
****************************************/
.l-main__heading {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
}
.l-main__heading:not(:first-child) {
  margin-top: 1.5rem;
}
.l-main__heading > *:not(:first-child) {
  margin-left: 1.5rem;
}

/**
** Actions
****************************************/
.l-main__actions {
  display: flex;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 719px) {
  .l-main__actions {
    flex-direction: column;
  }
  html.page-user-edit .l-main__head .l-main__actions {
    display: none;
  }
  html:not(.page-user-edit) .l-main__foot .l-main__actions {
    display: none;
  }
  .l-main__foot .l-main__actions > * {
    flex: 0 0 100%;
  }
  html.page-user-edit .l-main__foot .l-main__actions > *:first-child {
    order: 2;
  }
  html.page-user-edit .l-main__foot .l-main__actions > *:first-child,
  html.page-user-edit .l-main__foot .l-main__actions > *:nth-child(n+3) {
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 720px) {
  .l-main__actions {
    flex-direction: row;
    align-items: flex-start;
  }
  .l-main__foot .l-main__actions {
    display: none;
  }
  .l-main__actions > *:not(:first-child) {
    margin-left: 1rem;
  }
}

/**
** Body
****************************************/
.l-main__body:not(:first-child) {
  margin-top: 1.5rem;
}

/**
** Messages
****************************************/
.l-main__messages {
  position: fixed;
  width: 21.25rem;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 1;
}

/**
** Message
****************************************/
.l-main__message:not(:first-child) {
  margin-top: 1rem;
}

/**
** Content
****************************************/
/**
** Foot
****************************************/
.l-main__foot:not(:first-child) {
  margin-top: 1rem;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** LAYOUT
** Name: Container
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.l-container {
  max-width: 45.75rem;
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
.l-container .l-container {
  max-width: 43.75rem;
  padding-right: 0;
  padding-left: 0;
}

.l-container--small {
  max-width: 38.5rem;
}
.l-container .l-container--small {
  max-width: 1rem;
  padding-right: 0;
  padding-left: 0;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** LAYOUTS
** Name: Stack
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
/**
** Container
****************************************/
.l-stack__container:not(:first-child) {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 1220px) {
  .l-stack__container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
  }
}

/**
** Main
****************************************/
@media only screen and (min-width: 1220px) {
  .l-stack__main {
    flex: 0 0 65%;
    width: 65%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

/**
** Aside
****************************************/
@media only screen and (max-width: 1219px) {
  .l-stack__aside:not(:first-child) {
    margin-top: 1.5rem;
  }
}
@media only screen and (min-width: 1220px) {
  .l-stack__aside {
    flex: 0 0 35%;
    width: 35%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

/**
** Item
****************************************/
.l-stack__item:not(:first-child) {
  margin-top: 1.5rem;
}

/**
** SCOPES
****************************************/
/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** COMPONENTS
** Name: Richtext
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.s-richtext {
  /**
  ** Headings
  ****************************************/
  /**
  ** Paragraphs
  ****************************************/
  /**
  ** Lists
  ****************************************/
  /**
  ** Inline
  ****************************************/
}
.s-richtext h2,
.s-richtext h3,
.s-richtext h4,
.s-richtext h5,
.s-richtext h6 {
  font-weight: 600;
}
.s-richtext p {
  color: var(--color-grey-darker, #333333);
}
.s-richtext p:not(:first-child) {
  margin-top: 0.5rem;
}
.s-richtext ul:not(:first-child),
.s-richtext ol:not(:first-child) {
  margin-top: 0.5rem;
}
.s-richtext ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}
.s-richtext ol {
  counter-reset: orderedlist;
}
.s-richtext ol li {
  counter-increment: orderedlist;
}
.s-richtext ol li:before {
  content: counter(orderedlist) ".";
  display: block;
  width: 1.25rem;
  font-weight: 600;
  text-align: right;
}
.s-richtext strong {
  font-weight: 600;
}

/**
** MOLECULES
****************************************/
/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** HELPERS
** Name: Appearance
***********************************************************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.m-header {
  background-color: var(--color-background, #fff);
  overflow-x: hidden;
  overflow-y: auto;
}
@media only screen and (max-width: 1219px) {
  .m-header {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-right: 0.75rem;
    padding-bottom: 1rem;
    padding-left: 0.75rem;
  }
}
@media only screen and (min-width: 1220px) {
  .m-header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100%;
    padding-top: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
  }
  .m-header > *:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

/**
** Menu
****************************************/
@media only screen and (max-width: 1219px) {
  .m-header__menu {
    appearance: none;
    display: inline-block;
    width: auto;
    padding: 0;
    margin: 0;
    font: inherit;
    line-height: inherit;
    text-align: inherit;
    vertical-align: top;
    color: inherit;
    background: none;
    border: 0;
    border-radius: 0;
  }
}
@media only screen and (min-width: 1220px) {
  .m-header__menu {
    display: none;
  }
}

/**
** Home
****************************************/
.m-header__home {
  color: var(--color-green, #0c3c2b);
}
@media only screen and (max-width: 1219px) {
  .m-header__home {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: 1;
  }
}

/**
** Logo
****************************************/
@media only screen and (max-width: 719px) {
  .m-header__logo {
    width: 7.75rem;
    height: 3rem;
  }
}

/**
** Wrapper
****************************************/
.m-header__wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 1219px) {
  .m-header__wrapper {
    position: fixed;
    width: 20.9375rem;
    max-width: 89.3333%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding-top: 2rem;
    padding-right: 1.5rem;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
    background: var(--color-background, #fff);
    overflow-x: hidden;
    overflow-y: auto;
    transform: translate3d(-101%, 0, 0);
    z-index: 9;
    transition: transform 0.2s ease;
  }
  .m-header__wrapper:not([inert]) {
    transform: translate3d(0, 0, 0);
  }
  .m-header__wrapper > *:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 1220px) {
  .m-header__wrapper {
    flex: 1 0 auto;
  }
  .m-header__wrapper > *:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

/**
** Close
****************************************/
@media only screen and (max-width: 1219px) {
  .m-header__close {
    appearance: none;
    display: inline-block;
    width: auto;
    padding: 0;
    margin: 0;
    font: inherit;
    line-height: inherit;
    text-align: inherit;
    vertical-align: top;
    color: inherit;
    background: none;
    border: 0;
    border-radius: 0;
  }
}
@media only screen and (min-width: 1220px) {
  .m-header__close {
    display: none;
  }
}

/**
** Search
****************************************/
/**
** Navigation
****************************************/
/**
** User
****************************************/
.m-header__user {
  margin-top: auto;
  margin-bottom: 0;
}

/**
** Button
****************************************/
.m-header__button {
  width: 100% !important;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Navigation
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
/**
** Items
****************************************/
/**
** Item
****************************************/
.m-navigation__item:not(:first-child) {
  margin-top: 2rem;
}

/**
** Title
****************************************/
.m-navigation__title {
  text-transform: uppercase;
  color: var(--color-grey-dark, #808080);
}

/**
** Subitems
****************************************/
.m-navigation__subitems:not(:first-child) {
  margin-top: 0.5rem;
}

/**
** Subitem
****************************************/
.m-navigation__subitem:not(:first-child) {
  margin-top: 0.5rem;
}

/**
** Link
****************************************/
.m-navigation__link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  padding-right: 1rem;
  padding-bottom: 0.875rem;
  padding-left: 1rem;
  border-radius: 0.5rem;
  color: var(--color-grey-darker, #333333);
  transition: background-color 0.15s ease;
}
.m-navigation__link:hover {
  text-decoration: none;
  background-color: var(--color-secondary, #f2f4f8);
}
.m-navigation__subitem--active .m-navigation__link {
  background-color: var(--color-secondary, #f2f4f8);
}

/**
** Icon
****************************************/
.m-navigation__icon {
  flex: 0 0 auto;
}

/**
** Label
****************************************/
.m-navigation__label {
  flex: 1 1 auto;
}
.m-navigation__label:not(:first-child) {
  margin-left: 0.5rem;
}

/**
** Chevron
****************************************/
.m-navigation__chevron {
  flex: 0 0 auto;
  margin-left: 0.5rem;
}
.m-navigation__subitem--active .m-navigation__chevron, .m-navigation__subitem--subactive .m-navigation__chevron {
  transform: scaleY(-1);
}

/**
** Subsubitems
****************************************/
.m-navigation__subsubitems {
  margin-top: 0.25rem;
}
.m-navigation__subsubitems[inert] {
  display: none;
}

/**
** Subsubitem
****************************************/
.m-navigation__subsubitem:not(:first-child) {
  margin-top: 0.25rem;
}

/**
** Sublink
****************************************/
.m-navigation__sublink {
  position: relative;
  display: block;
  padding-top: 0.5rem;
  padding-right: 2.25rem;
  padding-bottom: 0.5rem;
  padding-left: 2.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--color-grey-dark, #808080);
  border-radius: 0.5rem;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.m-navigation__sublink:before, .m-navigation__subsubitem:not(:first-child) .m-navigation__sublink:after {
  content: "";
  position: absolute;
  background-color: var(--color-grey-dark, #808080);
  pointer-events: none;
}
.m-navigation__sublink:before {
  width: 0.25rem;
  height: 0.25rem;
  top: 50%;
  left: 1rem;
  border-radius: 0.125rem;
  transform: translate3d(-50%, -50%, 0);
}
.m-navigation__subsubitem:not(:first-child) .m-navigation__sublink:after {
  width: 0.0625rem;
  top: -1.25rem;
  bottom: 50%;
  left: 1rem;
  transform: translateX(-50%);
}
.m-navigation__sublink:hover {
  text-decoration: none;
  background-color: var(--color-secondary, #f2f4f8);
}
.m-navigation__subsubitem--active .m-navigation__sublink {
  color: var(--color-foreground, #000);
  background-color: var(--color-secondary, #f2f4f8);
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Panel
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.m-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  min-height: 100%;
  background-color: var(--color-greyblue-light, #f7f8fb);
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 479px) {
  .m-panel {
    padding-bottom: 3.5rem;
  }
}
@media only screen and (min-width: 480px) and (max-width: 959px) {
  .m-panel {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width: 960px) {
  .m-panel {
    padding-bottom: 8.75rem;
  }
}

/**
** Illustration
****************************************/
.m-panel__illustration {
  position: absolute;
  height: auto;
  z-index: -1;
}
@media only screen and (max-width: 479px) {
  .m-panel__illustration {
    max-width: 23.4375rem;
    right: -10rem;
    bottom: -5rem;
  }
}
@media only screen and (min-width: 480px) and (max-width: 719px) {
  .m-panel__illustration {
    max-width: 30rem;
    right: -10rem;
    bottom: -5rem;
  }
}
@media only screen and (min-width: 720px) {
  .m-panel__illustration {
    width: auto;
    max-height: 100%;
    top: 0;
  }
}
@media only screen and (min-width: 720px) and (max-width: 959px) {
  .m-panel__illustration {
    right: -25%;
  }
}
@media only screen and (min-width: 960px) {
  .m-panel__illustration {
    right: -11.5%;
  }
}

/**
** Head
****************************************/
.m-panel__head {
  flex: 0 0 auto;
}
@media only screen and (max-width: 479px) {
  .m-panel__head {
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
@media only screen and (min-width: 480px) and (max-width: 959px) {
  .m-panel__head {
    padding-top: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media only screen and (min-width: 960px) {
  .m-panel__head {
    padding-top: 3.75rem;
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }
}

/**
** Logo
****************************************/
.m-panel__logo {
  color: var(--color-green, #0c3c2b);
}
@media only screen and (max-width: 959px) {
  .m-panel__logo {
    width: 7.75rem;
    height: 3rem;
  }
}

/**
** Body
****************************************/
.m-panel__body {
  flex: 1 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 479px) {
  .m-panel__body {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
@media only screen and (min-width: 480px) {
  .m-panel__body {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.m-panel__body--wide {
  flex-direction: column;
}
.m-panel__body--wide:not(:first-child) {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 960px) {
  .m-panel__body--wide {
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }
}

/**
** Container
****************************************/
.m-panel__container {
  width: 100%;
  max-width: 35.5rem;
}
.m-panel__body--wide .m-panel__container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex: 1 0 100%;
  max-width: none;
}

/**
** Inner
****************************************/
.m-panel__inner {
  padding: 2rem;
  background-color: var(--color-background, #fff);
  border: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
  border-radius: 0.75rem;
}
.m-panel__body--wide .m-panel__inner {
  flex: 1 0 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

/**
** Content
****************************************/
.m-panel__content {
  text-align: center;
}

/**
** Picture
****************************************/
/**
** Title
****************************************/
.m-panel__title:not(:first-child) {
  margin-top: 2.5rem;
}

/**
** Description
****************************************/
/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: User
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.m-user {
  position: relative;
}
.m-user:not(:first-child) {
  margin-top: 1rem;
}

/**
** Button
****************************************/
.m-user__button {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  padding-top: 0.75rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  color: var(--color-foreground, #000);
  background-color: var(--color-greyblue-light, #f7f8fb);
  border-radius: 0.5rem;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.15s ease;
}
.m-user__button:hover, .m-user__button[aria-expanded=true] {
  background-color: var(--color-grey-lighter, #e6e8e8);
}
.m-user__button .m-user__icon {
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.m-user__button .m-user__icon:not(:first-child) {
  margin-left: 0.5rem;
}
@media only screen and (max-width: 1219px) {
  .m-user__button[aria-expanded=true] .m-user__icon {
    transform: scaleY(-1);
  }
}
@media only screen and (min-width: 1220px) {
  .m-user__button .m-user__icon {
    transform: scaleY(-1);
  }
  .m-user__button[aria-expanded=true] .m-user__icon {
    transform: scaleY(1);
  }
}

/**
** Thumbnail
****************************************/
.m-user__thumbnail {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-background, #fff);
  background-color: var(--color-primary, #0f5039);
  border-radius: 0.75rem;
}

/**
** Letter
****************************************/
.m-user__letter {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
}

/**
** Name
****************************************/
.m-user__name {
  flex: 1 1 auto;
  min-width: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.m-user__name:not(:first-child) {
  margin-left: 0.5rem;
}

/**
** Menu
****************************************/
.m-user__menu {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  margin-bottom: 0.5rem;
  background-color: var(--color-background, #fff);
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  transform: translate3d(0, 2.5rem, 0);
  opacity: 0;
  z-index: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.m-user__menu:not([inert]) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/**
** Items
****************************************/
/**
** Item
****************************************/
.m-user__item {
  position: relative;
}
.m-user__item:not(:first-child):before {
  content: "";
  position: absolute;
  height: 0.0625rem;
  top: 0;
  right: 0.5rem;
  left: 0.5rem;
  padding-top: 0.0625rem;
  background-color: var(--color-greyblue-light, #f7f8fb);
  z-index: 1;
}

/**
** Link
****************************************/
.m-user__link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  font-weight: 600;
  background-color: var(--color-background, #fff);
  transition: background-color 0.15s ease;
}
.m-user__link:hover {
  background-color: var(--color-greyblue-light, #f7f8fb);
}
.m-user__item:first-child .m-user__link {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.m-user__item:last-child .m-user__link {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.m-user__link .m-user__icon {
  flex: 0 0 auto;
}

/**
** Label
****************************************/
.m-user__label {
  flex: 1 1 auto;
}
.m-user__label:not(:first-child) {
  margin-left: 0.5rem;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Heading
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
/**
** Title
****************************************/
/**
** Description
****************************************/
.m-heading__description {
  color: var(--color-grey-dark, #808080);
}

/**
** Tag
****************************************/
.m-heading__tag:not(:first-child) {
  margin-top: 0.25rem;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Filters
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.m-filters:not(:first-child) {
  margin-top: 1.5rem;
}

/**
** Controllers
****************************************/
.m-filters__controllers {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
  padding-bottom: 0.5rem;
}

/**
** Controller
****************************************/
.m-filters__controller {
  position: relative;
  padding: 0.5rem;
}

.m-filters__controller--reinit {
  display: none;
}
.m-filters__controller--reinit:not([inert]) {
  display: block;
}

/**
** Button
****************************************/
.m-filters__button {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding-top: 0.75rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  white-space: nowrap;
  background-color: var(--color-secondary, #f2f4f8);
  border: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.m-filters__button:hover {
  border-color: var(--color-grey-light, #d5d5d5);
}
.m-filters__controller.has-value .m-filters__button {
  background-color: var(--color-green-pale, #b7cac4);
  border-color: var(--color-green-pale, #b7cac4);
}

/**
** Label
****************************************/
/**
** Icon
****************************************/
.m-filters__icon {
  flex: 0 0 auto;
  margin-left: 0.5rem;
}
.m-filters__controller.is-active .m-filters__icon {
  transform: scaleY(-1);
}

/**
** Menu
****************************************/
.m-filters__menu {
  position: absolute;
  display: none;
  top: 100%;
  left: 0.5rem;
  width: 15rem;
  max-width: calc(100vw - 2rem);
  background-color: var(--color-background, #fff);
  border-radius: 0.75rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  z-index: 4;
}
.m-filters__menu:not([inert]) {
  display: block;
}

/**
** Options
****************************************/
.m-filters__options {
  max-height: 15.75rem;
  padding-top: 0.75rem;
  padding-right: 0.75rem;
  padding-bottom: 1rem;
  padding-left: 0.75rem;
  overflow-x: hidden;
  overflow-y: auto;
}

/**
** Option
****************************************/
.m-filters__option:not(:first-child) {
  margin-top: 1rem;
}

.m-filters__option--all {
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
}

/**
** Checkbox
****************************************/
/**
** Action
****************************************/
.m-filters__action {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-right: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0.75rem;
}

/**
** Submit
****************************************/
.m-filters__submit {
  flex: 1 1 100%;
}
.m-filters__submit:not(:first-child) {
  margin-top: 1rem;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Table
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.m-table {
  background-color: var(--color-background, #fff);
  border: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
  border-radius: 0.75rem;
  overflow: hidden;
}

/**
** Wrapper
****************************************/
.m-table__wrapper {
  overflow-x: auto;
  overflow-y: hidden;
}

/**
** Container
****************************************/
.m-table__container {
  width: 100%;
}
.m-table:not(.m-table--error) .m-table__container {
  min-width: 60rem;
}

/**
** Head
****************************************/
.m-table__head {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
}

/**
** Body
****************************************/
/**
** Row
****************************************/
.m-table__head .m-table__row {
  border-bottom: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
}
.m-table__body .m-table__row {
  position: relative;
  background-color: var(--color-background, #fff);
  transition: background-color 0.15s ease;
}
.m-table__body .m-table__row.is-active {
  background-color: var(--color-secondary, #f2f4f8);
}
.m-table__body .m-table__row:not(:first-child) {
  border-top: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
}

/**
** Data
****************************************/
.m-table__data {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  text-align: left;
  vertical-align: middle;
}
.m-table__head .m-table__data {
  height: 3rem;
  background-color: var(--color-secondary, #f2f4f8);
}
.m-table__body .m-table__data {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.m-table__data--checkbox {
  position: sticky;
  width: 2.75rem;
  left: 0;
  transition: background-color 0.15s ease;
}
.m-table__head .m-table__data--checkbox {
  background-color: var(--color-secondary, #f2f4f8);
}
.m-table__body .m-table__data--checkbox {
  background-color: var(--color-background, #fff);
}
.m-table__body .m-table__row.is-active .m-table__data--checkbox {
  background-color: var(--color-secondary, #f2f4f8);
}

.m-table__data--actions {
  width: 5rem;
}

/**
** Flex
****************************************/
.m-table__flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.m-table__flex > * {
  flex: 0 0 auto;
}
.m-table__flex > *:not(:first-child) {
  margin-left: 0.5rem;
}

/**
** Highlight
****************************************/
.m-table__highlight {
  font-weight: 600;
}

/**
** Info
****************************************/
.m-table__info {
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--color-grey, #979797);
}

/**
** Longtext
****************************************/
.m-table__longtext {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

/**
** Actions
****************************************/
.m-table__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
}

/**
** Action
****************************************/
.m-table__action {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 0.375rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.m-table__action:not(:first-child) {
  margin-left: 0.375rem;
}

.m-table__action--edit {
  color: var(--color-primary, #0f5039);
}
.m-table__action--edit:hover {
  color: var(--color-background, #fff);
  background-color: var(--color-primary, #0f5039);
}

.m-table__action--delete {
  color: var(--color-red, #d93434);
}
.m-table__action--delete:hover {
  color: var(--color-background, #fff);
  background-color: var(--color-red, #d93434);
}

/**
** Empty
****************************************/
.m-table__empty {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  padding-top: 2.5rem;
  padding-right: 1.75rem;
  padding-bottom: 2.5rem;
  padding-left: 1.75rem;
}
@media only screen and (max-width: 719px) {
  .m-table__empty {
    max-width: calc(100vw - 3.625rem);
  }
}
@media only screen and (min-width: 720px) and (max-width: 1219px) {
  .m-table__empty {
    max-width: calc(100vw - 5.625rem);
  }
}
@media only screen and (min-width: 720px) {
  .m-table__empty {
    align-items: center;
    text-align: center;
  }
}
@media only screen and (min-width: 960px) {
  .m-table__empty {
    min-height: 58.5vh;
  }
}

/**
** Illustration
****************************************/
.m-table__illustration {
  flex: 0 0 auto;
}
@media only screen and (max-width: 959px) {
  .m-table__illustration {
    width: 5rem;
    height: 5rem;
  }
}

/**
** Title
****************************************/
@media only screen and (max-width: 959px) {
  .m-table__title:not(:first-child) {
    margin-top: 1.5rem;
  }
}
@media only screen and (min-width: 960px) {
  .m-table__title:not(:first-child) {
    margin-top: 2.5rem;
  }
}

/**
** Description
****************************************/
/**
** More
****************************************/
.m-table__more {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 959px) {
  .m-table__more:not(:first-child) {
    margin-top: 1.5rem;
  }
}
@media only screen and (min-width: 960px) {
  .m-table__more:not(:first-child) {
    margin-top: 2.5rem;
  }
}

/**
** Foot
****************************************/
.m-table__foot {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding-top: 0.5rem;
  background-color: var(--color-secondary, #f2f4f8);
  border-top: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
}
@media only screen and (max-width: 959px) {
  .m-table__foot {
    flex-direction: column;
    padding-bottom: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media only screen and (min-width: 960px) {
  .m-table__foot {
    flex-direction: row;
    padding-bottom: 0.5rem;
    padding-right: 10rem;
    padding-left: 10rem;
  }
}

/**
** Count
****************************************/
.m-table__count {
  font-size: 0.75rem;
  line-height: 1rem;
}
@media only screen and (max-width: 959px) {
  .m-table__count {
    order: 2;
    margin-top: 0.75rem;
  }
}
@media only screen and (min-width: 960px) {
  .m-table__count {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
  }
}

/**
** Pagination
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Form
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.m-form.is-hidden {
  display: none;
}

/**
** Head
****************************************/
/**
** Title
****************************************/
.m-form__title:not(:first-child) {
  margin-top: 1.5rem;
}
.m-modal__inner .m-form__title {
  padding-right: 2rem;
}

/**
** Description
****************************************/
.m-form__description {
  color: var(--color-grey, #979797);
}
.m-form__description:not(:first-child) {
  margin-top: 0.25rem;
}

/**
** Body
****************************************/
.m-form__body:not(:first-child) {
  margin-top: 1.5rem;
}

/**
** Messages
****************************************/
/**
** Message
****************************************/
.m-form__message:not(:first-child) {
  margin-top: 0.5rem;
}

/**
** Fieldset
****************************************/
.m-form__fieldset:not(:first-child) {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid var(--color-greyblue, #f2f4f8);
}

/**
** Subtitle
****************************************/
.m-form__subtitle {
  color: var(--color-grey-dark, #808080);
}

/**
** Fields
****************************************/
.m-form__fields {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: -0.375rem;
  margin-right: -0.375rem;
  margin-bottom: -0.375rem;
  margin-left: -0.375rem;
}
.m-form__fields:not(:first-child) {
  margin-top: 0.375rem;
}

/**
** Field
****************************************/
.m-form__field {
  flex: 0 0 100%;
  width: 100%;
  padding: 0.375rem;
  transition: opacity 0.15s ease;
}
.m-form__field.is-disabled {
  opacity: 0.3;
}

.m-form__field--half {
  flex: 0 0 50%;
  width: 50%;
}

.m-form__field--suggestion {
  position: relative;
}

.m-form__field--locked {
  position: relative;
}
.m-form__field--locked .m-form__icon {
  position: absolute;
  right: 1.125rem;
  bottom: 1.0625rem;
  color: var(--color-grey-dark, #808080);
  pointer-events: none;
  z-index: 1;
}

/**
** Label
****************************************/
.m-form__label:not(:last-child) {
  margin-bottom: 0.25rem;
}

/**
** Help
****************************************/
.m-form__help {
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--color-grey-dark, #808080);
}

/**
** Input
****************************************/
/**
** Select
****************************************/
/**
** Switcher
****************************************/
/**
** Suggestion
****************************************/
.m-form__suggestion {
  position: absolute !important;
  top: 100%;
  right: 0.375rem;
  left: 0.375rem;
  z-index: 1;
}

/**
** Error
****************************************/
.m-form__error {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--color-red, #d93434);
}

/**
** Foot
****************************************/
.m-form__foot:not(:first-child) {
  margin-top: 2rem;
}

/**
** Actions
****************************************/
.m-form__actions {
  display: flex;
  flex-wrap: nowrap;
}
.m-form__actions:not(:first-child) {
  margin-top: 2rem;
}
@media only screen and (max-width: 479px) {
  .m-form__actions {
    flex-direction: column;
  }
  .m-form__actions > *:not(:first-child) {
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 480px) {
  .m-form__actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  .m-form__actions > *:not(:first-child) {
    margin-left: 1rem;
  }
}

@media only screen and (min-width: 480px) {
  .m-form__actions--full {
    flex-direction: column;
  }
  .m-form__actions--full > *:not(:first-child) {
    margin-top: 1rem;
    margin-left: 0;
  }
}
.m-form__actions--full > * {
  flex: 0 0 100% !important;
  width: 100% !important;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Headband
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.m-headband {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  height: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: var(--color-warning, #ffe2c5);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media only screen and (max-width: 719px) {
  .m-headband {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
@media only screen and (min-width: 720px) {
  .m-headband {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/**
** Icon
****************************************/
@media only screen and (max-width: 719px) {
  .m-headband__icon {
    display: none;
  }
}
@media only screen and (min-width: 720px) {
  .m-headband__icon {
    flex: 0 0 auto;
  }
}

/**
** Content
****************************************/
.m-headband__content {
  flex: 1 1 auto;
}
@media only screen and (max-width: 719px) {
  .m-headband__content {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media only screen and (min-width: 720px) {
  .m-headband__content:not(:first-child) {
    margin-left: 0.75rem;
  }
}

/**
** Action
****************************************/
.m-headband__action {
  flex: 0 0 auto;
}
.m-headband__action:not(:first-child) {
  margin-left: 0.75rem;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Alert
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.m-alert {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: var(--color-greyblue-light, #f7f8fb);
  border-radius: 0.5rem;
}
.m-alert:not(.m-alert--alt) {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 719px) {
  .m-alert {
    flex-wrap: wrap;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
@media only screen and (min-width: 720px) {
  .m-alert {
    flex-wrap: nowrap;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/**
** TYPES
****************************************/
.m-alert--success {
  background-color: var(--color-success, #b7cac4);
}

.m-alert--warning,
.m-alert--danger {
  background-color: var(--color-warning, #ffe2c5);
}

.m-alert--error {
  background-color: var(--color-error, #f6c0ab);
}

/**
** Icon
****************************************/
.m-alert__icon {
  flex: 0 0 auto;
  margin-right: 0.75rem;
}

/**
** Content
****************************************/
.m-alert__content {
  flex: 1 1 auto;
}
@media only screen and (max-width: 719px) {
  .m-alert__content {
    max-width: calc(100% - 2.25rem);
  }
}

/**
** Title
****************************************/
/**
** Description
****************************************/
.m-alert__description {
  font-size: 0.75rem;
  line-height: 1rem;
}

/**
** Actions
****************************************/
.m-alert__actions {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 719px) {
  .m-alert__actions:not(:first-child) {
    margin-top: 0.25rem;
    margin-left: 2rem;
  }
}
@media only screen and (min-width: 720px) {
  .m-alert__actions:not(:first-child) {
    margin-left: 1.5rem;
  }
}
@media only screen and (min-width: 720px) and (max-width: 959px) {
  .m-alert__actions {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 959px) {
  .m-alert__actions {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 960px) {
  .m-alert__actions {
    flex-wrap: nowrap;
  }
}

/**
** Action
****************************************/
.m-alert__action {
  padding: 0.25rem;
  white-space: nowrap;
}
@media only screen and (min-width: 720px) {
  .m-alert__action:not(:first-child) {
    margin-left: 0.25rem;
  }
}

/**
** Button
****************************************/
.m-alert__button {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 0.75rem;
  padding-right: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0.75rem;
  cursor: pointer;
  z-index: 1;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Block
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.m-block {
  position: relative;
  background-color: var(--color-background, #fff);
  border: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
  border-radius: 0.75rem;
}
@media only screen and (max-width: 479px) {
  .m-block {
    padding-top: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media only screen and (min-width: 480px) {
  .m-block {
    padding-top: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
  }
}

/**
** Head
****************************************/
/**
** Title
****************************************/
/**
** Stamp
****************************************/
.m-block__stamp {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  color: var(--color-background, #fff);
  background-color: var(--color-primary, #0f5039);
  border-radius: 0.5rem;
}
@media only screen and (max-width: 479px) {
  .m-block__stamp {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .m-block__stamp:not(:first-child) {
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 480px) {
  .m-block__stamp {
    position: absolute;
    flex-direction: column;
    justify-content: center;
    top: 1.5rem;
    right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.m-block__stamp--alt {
  flex-direction: row;
  justify-content: center;
}
@media only screen and (min-width: 480px) and (max-width: 719px) {
  .m-block__stamp--alt {
    position: inherit;
    top: inherit;
    right: inherit;
  }
  .m-block__stamp--alt:not(:first-child) {
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 480px) {
  .m-block__stamp--alt {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.m-block__stamp--alt > *:not(:first-child) {
  margin-left: 0.5rem;
}

/**
** Body
****************************************/
.m-block__body:not(:first-child) {
  margin-top: 1.5rem;
}

/**
** Infos
****************************************/
@media only screen and (min-width: 480px) {
  .m-block__infos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: -0.375rem;
    margin-right: -0.375rem;
    margin-bottom: -0.375rem;
    margin-left: -0.375rem;
  }
}

/**
** Linked infos
****************************************/
.m-block__linked-infos {
  flex: 0 0 100%;
  width: 100%;
}
@media only screen and (min-width: 480px) {
  .m-block__linked-infos {
    padding: 0.375rem;
  }
}

/**
** Info
****************************************/
.m-block__linked-infos .m-block__info {
  position: relative;
}
@media only screen and (max-width: 479px) {
  .m-block__info:not(:first-child) {
    margin-top: 0.75rem;
  }
}
@media only screen and (min-width: 480px) {
  .m-block__info {
    flex: 0 0 50%;
    width: 50%;
    padding: 0.375rem;
  }
}

@media only screen and (min-width: 480px) {
  .m-block__info--full,
  .m-block__info--inline {
    flex: 0 0 100%;
    width: 100%;
  }
}

.m-block__info--inline {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
}

.m-block__info--boxed {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 479px) {
  .m-block__info--boxed {
    padding-top: 0.75rem;
    padding-right: 1rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    border: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
    border-radius: 1rem;
  }
}
@media only screen and (min-width: 480px) {
  .m-block__info--boxed {
    position: relative;
    padding-top: 1.125rem;
    padding-right: 1.375rem;
    padding-bottom: 1.125rem;
    padding-left: 1.375rem;
    z-index: 1;
  }
  .m-block__info--boxed:before {
    content: "";
    position: absolute;
    top: 0.375rem;
    right: 0.375rem;
    bottom: 0.375rem;
    left: 0.375rem;
    border: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
    border-radius: 1rem;
    pointer-events: none;
    z-index: -1;
  }
}

/**
** Linked icon
****************************************/
.m-block__linked-icon {
  position: absolute;
  color: var(--color-yellow, #ffc943);
  background-color: var(--color-white, #fff);
  border: 0.09375rem solid var(--color-yellow, #ffc943);
  border-radius: 1rem;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1;
}
@media only screen and (max-width: 479px) {
  .m-block__linked-icon {
    top: -0.4375rem;
    left: 50%;
  }
}
@media only screen and (min-width: 480px) {
  .m-block__linked-icon {
    top: 50%;
    left: 0;
  }
}

/**
** Label
****************************************/
.m-block__label {
  display: block;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  color: var(--color-grey, #979797);
}
.m-block__stamp .m-block__label {
  color: var(--color-yellow-light, #fff8e6);
}
.m-block__stamp--alt .m-block__label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}
.m-block__info--inline .m-block__label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-foreground, #000);
}

/**
** Value
****************************************/
.m-block__value {
  display: block;
}
.m-block__stamp--alt .m-block__value {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}
.m-block__info--inline .m-block__value {
  color: var(--color-grey-dark, #808080);
}
.m-block__info--boxed .m-block__value {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/**
** Items
****************************************/
/**
** Item
****************************************/
.m-block__item:not(:first-child) {
  margin-top: 1rem;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Farmer
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.m-farmer {
  padding-top: 1.75rem;
  padding-right: 1.25rem;
  padding-bottom: 1.75rem;
  padding-left: 1.25rem;
  background-color: var(--color-background, #fff);
  border: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
  border-radius: 0.75rem;
}

/**
** Heading
****************************************/
.m-farmer__heading {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

/**
** Title
****************************************/
/**
** Info
****************************************/
@media only screen and (min-width: 720px) {
  .m-farmer__info:not(:first-child) {
    margin-left: 0.5rem;
  }
}

@media only screen and (max-width: 719px) {
  .m-farmer__info--tag {
    order: 9;
    flex: 0 0 100%;
    margin-top: 0.5rem;
  }
}

@media only screen and (max-width: 719px) {
  .m-farmer__info--app:not(:first-child) {
    margin-left: 0.5rem;
  }
}

/**
** App
****************************************/
.m-farmer__app {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border-radius: 0.25rem;
  color: var(--color-grey-dark, #808080);
  background-color: var(--color-grey-lighter, #e6e8e8);
}

.m-farmer__app--active {
  color: var(--color-background, #fff);
  background-color: var(--color-primary, #0f5039);
}

/**
** Tooltip
****************************************/
.m-farmer__tooltip {
  position: absolute;
  bottom: 100%;
  padding-top: 0.25rem;
  padding-right: 0.75rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  white-space: nowrap;
  color: var(--color-background, #fff);
  background-color: var(--color-foreground, #000);
  border-radius: 0.5rem;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.15s ease;
}
.m-farmer__app:hover .m-farmer__tooltip {
  opacity: 1;
}
@media only screen and (max-width: 719px) {
  .m-farmer__tooltip {
    width: 10rem;
    right: -1.5rem;
    font-size: 0.75rem;
    line-height: 1rem;
    white-space: normal;
  }
}
@media only screen and (min-width: 720px) {
  .m-farmer__tooltip {
    left: -3rem;
  }
}

/**
** Description
****************************************/
.m-farmer__description {
  color: var(--color-grey-darker, #333333);
}
.m-farmer__description:not(:first-child) {
  margin-top: 0.5rem;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Pagination
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
/**
** Items
****************************************/
.m-pagination__items {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

/**
** Item
****************************************/
.m-pagination__item:not(:first-child) {
  margin-left: 0.5rem;
}
@media only screen and (max-width: 719px) {
  .m-pagination__item:not(.m-pagination__item--active, .m-pagination__item--control) {
    display: none;
  }
}

/**
** Link
****************************************/
.m-pagination__link:hover {
  text-decoration: none;
}

/**
** Label
****************************************/
.m-pagination__label {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--color-grey, #979797);
  border-radius: 0.5rem;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.m-pagination__item--active .m-pagination__label {
  font-weight: 600;
  color: var(--color-background, #fff);
  background-color: var(--color-primary, #0f5039);
}
.m-pagination__link:hover .m-pagination__label {
  color: var(--color-green-dark, #073021);
  background-color: var(--color-green-pale, #b7cac4);
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Modal
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.m-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  z-index: 99;
  transition: opacity 0.2s ease;
}
.m-modal:not([inert]) {
  opacity: 1;
}

/**
** TYPE: Spaced
****************************************/
@media only screen and (max-width: 1219px) {
  .m-modal--spaced {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media only screen and (min-width: 1220px) {
  .m-modal--spaced {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

/**
** Container
****************************************/
/**
** Inner
****************************************/
.m-modal__inner {
  position: relative;
  color: var(--color-foreground, #000);
  background-color: var(--color-background, #fff);
  border-radius: 1rem;
}
@media only screen and (max-width: 479px) {
  .m-modal__inner {
    padding: 1.25rem;
  }
}
@media only screen and (min-width: 480px) {
  .m-modal__inner {
    padding: 1.5rem;
  }
}

/**
** Button
****************************************/
.m-modal__button {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 1;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Impersonate
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.m-impersonate {
  position: fixed;
  width: 100%;
  max-width: 31.25rem;
  top: 0;
  right: 0;
  bottom: 0;
  padding-top: 2rem;
  padding-right: 1.5rem;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  background-color: var(--color-background, #fff);
  overflow-x: hidden;
  overflow-y: auto;
  transform: translate3d(101%, 0, 0);
  opacity: 0;
  z-index: 9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.m-impersonate:not([inert]) {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
html.has-headband .m-impersonate {
  top: 3.75rem;
}

/**
** Button
****************************************/
.m-impersonate__button {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 1;
}

/**
** Title
****************************************/
/**
** Description
****************************************/
.m-impersonate__description {
  color: var(--color-grey-dark, #808080);
}
.m-impersonate__description:not(:first-child) {
  margin-top: 0.5rem;
}

/**
** Field
****************************************/
.m-impersonate__field {
  position: relative;
}
.m-impersonate__field:not(:first-child) {
  margin-top: 1rem;
}
.m-impersonate__field .m-impersonate__icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--color-grey-dark, #808080);
  transform: translateY(-50%);
  z-index: 1;
}

/**
** Input
****************************************/
.m-impersonate__input {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  display: block;
  width: 100%;
  padding-top: 0.75rem;
  padding-right: 3rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  color: var(--color-foreground, #000);
  background-color: var(--color-secondary, #f2f4f8);
  border: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
  border-radius: 0.75rem;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.m-impersonate__input:hover {
  color: var(--color-grey-darker, #333333);
  border: 0.0625rem solid var(--color-grey-light, #d5d5d5);
}
@media only screen and (max-width: 1219px) {
  .m-impersonate__input {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

/**
** Items
****************************************/
.m-impersonate__items:not(:first-child) {
  margin-top: 1.5rem;
}

/**
** Item
****************************************/
.m-impersonate__item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.m-impersonate__item:not(:first-child) {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid var(--color-secondary, #f2f4f8);
}
.m-impersonate__item.is-hidden {
  display: none;
}

/**
** Content
****************************************/
.m-impersonate__content {
  flex: 1 1 auto;
}

/**
** Subtitle
****************************************/
/**
** Label
****************************************/
.m-impersonate__label {
  font-size: 0.75rem;
  line-height: 1rem;
}

/**
** Info
****************************************/
.m-impersonate__info {
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--color-grey, #979797);
}

/**
** Action
****************************************/
.m-impersonate__action {
  flex: 0 0 auto;
}
.m-impersonate__action:not(:first-child) {
  margin-left: 1rem;
}

/**
** Empty
****************************************/
.m-impersonate__empty {
  text-align: center;
  color: var(--color-grey-dark, #808080);
}
.m-impersonate__empty.is-hidden {
  display: none;
}

/**
** COMPONENTS
****************************************/
/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** COMPONENTS
** Name: Title
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.c-title {
  font-weight: 600;
}

.c-title--xlarge {
  font-size: 1.5rem;
  line-height: 2rem;
}

.c-title--large {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.c-title--regular {
  font-size: 1rem;
  line-height: 1.5rem;
}

.c-title--small {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.c-title--xsmall {
  font-size: 0.75rem;
  line-height: 1rem;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** COMPONENTS
** Name: Button
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.c-button {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding-top: 0.6875rem;
  padding-right: 1rem;
  padding-bottom: 0.6875rem;
  padding-left: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: var(--color-primary, #0f5039);
  border-width: 0.0625rem;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.c-button:hover {
  text-decoration: none;
  color: var(--color-green-dark, #073021);
}
.c-button[disabled], .c-button.is-disabled {
  pointer-events: none;
  opacity: 0.3;
  cursor: default;
}

/**
** TYPE: Primary
****************************************/
.c-button--primary {
  color: var(--color-background, #fff);
  background-color: var(--color-primary, #0f5039);
  border-color: var(--color-primary, #0f5039);
}
.c-button--primary:hover {
  color: var(--color-background, #fff);
  background-color: var(--color-green-dark, #073021);
}

/**
** TYPE: Secondary
****************************************/
.c-button--secondary {
  color: var(--color-green-dark, #073021);
  background-color: var(--color-greyblue, #f2f4f8);
  border-color: var(--color-grey-lighter, #e6e8e8);
}
.c-button--secondary:hover {
  background-color: var(--color-grey-lighter, #e6e8e8);
}

/**
** TYPE: Red
****************************************/
.c-button--red {
  color: var(--color-background, #fff);
  background-color: var(--color-red, #d93434);
  border-color: var(--color-red, #d93434);
}
.c-button--red:hover {
  color: var(--color-red, #d93434);
  background-color: var(--color-red-pale, #f6c0ab);
  border-color: var(--color-red-pale, #f6c0ab);
}

/**
** SIZE: Regular
****************************************/
.c-button:not(.c-button--small) > *:not(:first-child) {
  margin-left: 0.5rem;
}

/**
** SIZE: Small
****************************************/
.c-button--small {
  padding-top: 0.625rem;
  padding-right: 0.75rem;
  padding-bottom: 0.625rem;
  padding-left: 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  border-radius: 0.5rem;
}
.c-button--small > *:not(:first-child) {
  margin-left: 0.25rem;
}

/**
** SIZE: Wide
****************************************/
@media only screen and (min-width: 1440px) {
  .c-button--wide {
    min-width: 15.625rem;
  }
}

/**
** Label
****************************************/
/**
** Icon
****************************************/
.c-button__icon {
  flex: 0 0 auto;
}
.c-button--small .c-button__icon {
  width: 1rem;
  height: 1rem;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** COMPONENTS
** Name: Fakesearch
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
/**
** Button
****************************************/
.c-fakesearch__button {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 0.75rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  color: var(--color-grey-dark, #808080);
  background-color: var(--color-greyblue, #f2f4f8);
  border: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.c-fakesearch__button:hover {
  color: var(--color-grey-darker, #333333);
  border: 0.0625rem solid var(--color-grey-light, #d5d5d5);
}

/**
** Placeholder
****************************************/
/**
** Icon
****************************************/
/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** COMPONENTS
** Name: Checkbox
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.c-checkbox {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

/**
** Input
****************************************/
.c-checkbox__input {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  flex: 0 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  z-index: 1;
}

/**
** Fakebox
****************************************/
.c-checkbox__fakebox {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-background, #fff);
  background-color: var(--color-background, #fff);
  border: 0.0625rem solid var(--color-greyblue-dark, #bbbec3);
  border-radius: 0.25rem;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.c-checkbox__input:hover + .c-checkbox__fakebox {
  background-color: var(--color-green-pale, #b7cac4);
}
.c-checkbox__input:checked + .c-checkbox__fakebox {
  background-color: var(--color-primary, #0f5039);
  border-color: var(--color-primary, #0f5039);
}

/**
** Icon
****************************************/
.c-checkbox__icon {
  opacity: 1;
}

/**
** Label
****************************************/
.c-checkbox__label {
  flex: 1 1 auto;
}
.c-checkbox__label:not(:first-child) {
  margin-left: 0.5rem;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** COMPONENTS
** Name: Tag
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.c-tag {
  position: relative;
  display: inline-block;
  padding-top: 0.25rem;
  padding-right: 0.75rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  border-radius: 0.25rem;
}
.c-tag:not(.c-tag--large) {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
}

/**
** Type: Dark
****************************************/
.c-tag--dark {
  color: var(--color-foreground, #000);
}

/**
** Type: Light
****************************************/
.c-tag--light {
  color: var(--color-background, #fff);
}

/**
** Size: Large
****************************************/
.c-tag--large {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/**
** Inner
****************************************/
.c-tag__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.c-tag__inner > *:not(:first-child) {
  margin-left: 0.25rem;
}

/**
** Label
****************************************/
/**
** Icon
****************************************/
/**
** Tooltip
****************************************/
.c-tag__tooltip {
  padding-top: 0.25rem;
  padding-right: 0.75rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  font-weight: 400;
  white-space: nowrap;
  color: var(--color-background, #fff);
  background-color: var(--color-foreground, #000);
  border-radius: 0.5rem;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.15s ease;
}
.c-tag:hover .c-tag__tooltip {
  opacity: 1;
}
@media only screen and (max-width: 719px) {
  .c-tag__tooltip {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media only screen and (min-width: 720px) {
  .c-tag__tooltip {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.c-tag__tooltip:not(.c-tag__tooltip--fixed) {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 0.5rem;
  transform: translateX(-50%);
}

.c-tag__tooltip--fixed {
  position: fixed;
  max-width: calc(100% - 3rem);
  bottom: 1.5rem;
  right: 1.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** COMPONENTS
** Name: Search
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
/**
** Head
****************************************/
.c-search__head {
  position: relative;
}
.c-search__head .c-search__icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--color-grey-dark, #808080);
  transform: translateY(-50%);
  z-index: 1;
}

/**
** Input
****************************************/
.c-search__input {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  display: block;
  width: 100%;
  padding-top: 0.75rem;
  padding-right: 3rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  color: var(--color-foreground, #000);
  background-color: var(--color-secondary, #f2f4f8);
  border: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
  border-radius: 0.75rem;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.c-search__input:hover {
  color: var(--color-grey-darker, #333333);
  border: 0.0625rem solid var(--color-grey-light, #d5d5d5);
}
@media only screen and (max-width: 1219px) {
  .c-search__input {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
.c-search.has-farms .c-search__input, .c-search.has-farmers .c-search__input, .c-search.no-results .c-search__input {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/**
** Body
****************************************/
.c-search__body {
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  overflow: hidden;
}

/**
** Section
****************************************/
.c-search__section {
  display: none;
}

.c-search.has-farms .c-search__section--farms {
  display: block;
}

.c-search.has-farmers .c-search__section--farmers {
  display: block;
}

.c-search__section--empty {
  padding-top: 2rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  text-align: center;
  color: var(--color-grey-dark, #808080);
  background-color: var(--color-background, #fff);
}
.c-search.no-results .c-search__section--empty {
  display: block;
}

/**
** Title
****************************************/
.c-search__title {
  padding-top: 0.5rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-weight: 600;
  background-color: var(--color-greyblue-light, #f7f8fb);
  border-bottom: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
}
.c-search__title:not(:first-child) {
  border-top: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
}

/**
** Items
****************************************/
.c-search__items {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  background-color: var(--color-background, #fff);
  overflow-x: hidden;
  overflow-y: auto;
}
.c-search.has-farms .c-search__items, .c-search.has-farmers .c-search__items {
  max-height: 22.5rem;
}
.c-search.has-farms.has-farmers .c-search__items {
  max-height: 13.5rem;
}

/**
** Item
****************************************/
.c-search__item {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding-top: 0.375rem;
  padding-right: 1rem;
  padding-bottom: 0.375rem;
  padding-left: 1rem;
  background-color: var(--color-background, #fff);
  transition: background-color 0.15s ease;
}
.c-search__item:hover {
  background-color: var(--color-secondary, #f2f4f8);
}
.c-search__item > *:not(:first-child) {
  margin-left: 0.5rem;
}
.c-search__item .c-search__icon {
  flex: 0 0 auto;
}

/**
** Heading
****************************************/
.c-search__heading {
  flex: 1 1 auto;
}

/**
** Subtitle
****************************************/
.c-search__subtitle {
  font-weight: 600;
}

/**
** Link
****************************************/
.c-search__link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.c-search__link:hover {
  text-decoration: none;
}

/**
** Description
****************************************/
.c-search__description {
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--color-grey, #979797);
}

/**
** Info
****************************************/
.c-search__info {
  flex: 0 1 auto;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: right;
  color: var(--color-grey, #979797);
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** COMPONENTS
** Name: Label
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.c-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-grey-darker, #333333);
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** COMPONENTS
** Name: Input
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.c-input {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  display: block;
  width: 100%;
  height: 2.875rem;
  padding-right: 1rem;
  padding-left: 1rem;
  color: var(--color-grey-darker, #333333);
  background-color: var(--color-secondary, #f2f4f8);
  border: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
  border-radius: 0.75rem;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.c-input:not([disabled]):hover {
  color: var(--color-foreground, #000);
  border-color: var(--color-grey-light, #d5d5d5);
}
.c-input.has-error, .c-input.has-error:hover {
  background-color: var(--color-error, #f6c0ab);
  border-color: var(--color-red, #d93434);
}

/**
** TYPE: LOCKED
****************************************/
.c-input--locked {
  color: var(--color-grey-dark, #808080);
  background-color: var(--color-grey-lighter, #e6e8e8);
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** COMPONENTS
** Name: Select
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.c-select {
  position: relative;
}

/**
** Input
****************************************/
.c-select__input {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  display: block;
  width: 100%;
  height: 2.875rem;
  padding-right: 3rem;
  padding-left: 1rem;
  color: var(--color-grey-darker, #333333);
  background-color: var(--color-secondary, #f2f4f8);
  border: 0.0625rem solid var(--color-grey-lighter, #e6e8e8);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.c-select__input:not([disabled]):hover {
  color: var(--color-foreground, #000);
  border-color: var(--color-grey-light, #d5d5d5);
}
.c-select__input option.is-hidden {
  display: none;
}

/**
** Icon
****************************************/
.c-select__icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--color-grey, #979797);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  transition: color 0.15s ease;
}
.c-select:hover .c-select__icon {
  color: var(--color-foreground, #000);
}

/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** COMPONENTS
** Name: Switcher
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.c-switcher {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

/**
** Main
****************************************/
.c-switcher__main {
  flex: 1 1 auto;
}

/**
** Label
****************************************/
.c-switcher__label:not(:last-child) {
  margin-bottom: 0;
}

/**
** Help
****************************************/
/**
** Aside
****************************************/
.c-switcher__aside {
  flex: 0 0 auto;
}
.c-switcher__aside:not(:first-child) {
  margin-left: 1rem;
}

/**
** Control
****************************************/
.c-switcher__control {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  position: relative;
  width: 3rem;
  height: 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--color-grey-light, #d5d5d5);
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.c-switcher__control:before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  top: 0;
  bottom: 0;
  left: 0;
  margin: 0.125rem;
  background-color: var(--color-background, #fff);
  border-radius: 0.625rem;
  z-index: 1;
  transition: transform 0.15s ease;
}
.c-switcher.is-active .c-switcher__control {
  background-color: var(--color-primary, #0f5039);
}
.c-switcher.is-active .c-switcher__control:before {
  transform: translateX(calc(100% + 0.25rem));
}

/**
** Target
****************************************/
/**
** BASE
** Name: Core
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** MOLECULES
** Name: Header
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** SETTINGS
** Name: Layout
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** COMPONENTS
** Name: Suggestion
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** STYLES
****************************************/
.c-suggestion {
  position: relative;
  display: none;
  max-height: 15rem;
  margin-top: 0.25rem;
  background-color: var(--color-background, #fff);
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2;
}
.c-suggestion:not([inert]) {
  display: block;
}

/**
** Item
****************************************/
.c-suggestion__item {
  position: relative;
  overflow: hidden;
}
.c-suggestion__item:not(:first-child):before {
  content: "";
  position: absolute;
  height: 0.0625rem;
  top: 0;
  right: 1rem;
  left: 1rem;
  background-color: var(--color-secondary, #f2f4f8);
  z-index: 1;
}
.c-suggestion__item:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.c-suggestion__item:last-child {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

/**
** Button
****************************************/
.c-suggestion__button {
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: top;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  min-width: 0;
  padding-top: 0.5rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.c-suggestion__button:hover {
  background-color: var(--color-secondary, #f2f4f8);
}
.c-suggestion__button > * {
  flex: 0 0 auto;
}
.c-suggestion__button > *:not(:first-child) {
  margin-left: 0.5rem;
}

/**
** UTILS
****************************************/
/**
** UTILITIES
** Name: Colors
***********************************************************************************/
/**
** UTILS
****************************************/
/**
** VARIABLES
****************************************/
/**
** STYLES
****************************************/
.u-background-black {
  background-color: #000 !important;
}

.u-border-black {
  border-color: #000 !important;
}

.u-color-black {
  color: #000 !important;
}

.u-background-white {
  background-color: #fff !important;
}

.u-border-white {
  border-color: #fff !important;
}

.u-color-white {
  color: #fff !important;
}

.u-background-grey {
  background-color: #979797 !important;
}

.u-border-grey {
  border-color: #979797 !important;
}

.u-color-grey {
  color: #979797 !important;
}

.u-background-grey-dark {
  background-color: #808080 !important;
}

.u-border-grey-dark {
  border-color: #808080 !important;
}

.u-color-grey-dark {
  color: #808080 !important;
}

.u-background-grey-darker {
  background-color: #333333 !important;
}

.u-border-grey-darker {
  border-color: #333333 !important;
}

.u-color-grey-darker {
  color: #333333 !important;
}

.u-background-grey-light {
  background-color: #d5d5d5 !important;
}

.u-border-grey-light {
  border-color: #d5d5d5 !important;
}

.u-color-grey-light {
  color: #d5d5d5 !important;
}

.u-background-grey-lighter {
  background-color: #e6e8e8 !important;
}

.u-border-grey-lighter {
  border-color: #e6e8e8 !important;
}

.u-color-grey-lighter {
  color: #e6e8e8 !important;
}

.u-background-green {
  background-color: #0c3c2b !important;
}

.u-border-green {
  border-color: #0c3c2b !important;
}

.u-color-green {
  color: #0c3c2b !important;
}

.u-background-green-dark {
  background-color: #073021 !important;
}

.u-border-green-dark {
  border-color: #073021 !important;
}

.u-color-green-dark {
  color: #073021 !important;
}

.u-background-green-light {
  background-color: #0f5039 !important;
}

.u-border-green-light {
  border-color: #0f5039 !important;
}

.u-color-green-light {
  color: #0f5039 !important;
}

.u-background-green-pale {
  background-color: #b7cac4 !important;
}

.u-border-green-pale {
  border-color: #b7cac4 !important;
}

.u-color-green-pale {
  color: #b7cac4 !important;
}

.u-background-yellow {
  background-color: #ffc943 !important;
}

.u-border-yellow {
  border-color: #ffc943 !important;
}

.u-color-yellow {
  color: #ffc943 !important;
}

.u-background-yellow-dark {
  background-color: #e5b43c !important;
}

.u-border-yellow-dark {
  border-color: #e5b43c !important;
}

.u-color-yellow-dark {
  color: #e5b43c !important;
}

.u-background-yellow-light {
  background-color: #fff8e6 !important;
}

.u-border-yellow-light {
  border-color: #fff8e6 !important;
}

.u-color-yellow-light {
  color: #fff8e6 !important;
}

.u-background-red {
  background-color: #d93434 !important;
}

.u-border-red {
  border-color: #d93434 !important;
}

.u-color-red {
  color: #d93434 !important;
}

.u-background-red-pale {
  background-color: #f6c0ab !important;
}

.u-border-red-pale {
  border-color: #f6c0ab !important;
}

.u-color-red-pale {
  color: #f6c0ab !important;
}

.u-background-orangered {
  background-color: #e8612d !important;
}

.u-border-orangered {
  border-color: #e8612d !important;
}

.u-color-orangered {
  color: #e8612d !important;
}

.u-background-orange {
  background-color: #ff9e3e !important;
}

.u-border-orange {
  border-color: #ff9e3e !important;
}

.u-color-orange {
  color: #ff9e3e !important;
}

.u-background-orange-pale {
  background-color: #ffe2c5 !important;
}

.u-border-orange-pale {
  border-color: #ffe2c5 !important;
}

.u-color-orange-pale {
  color: #ffe2c5 !important;
}

.u-background-orange-light {
  background-color: #fff9f3 !important;
}

.u-border-orange-light {
  border-color: #fff9f3 !important;
}

.u-color-orange-light {
  color: #fff9f3 !important;
}

.u-background-blue {
  background-color: #9ebcdf !important;
}

.u-border-blue {
  border-color: #9ebcdf !important;
}

.u-color-blue {
  color: #9ebcdf !important;
}

.u-background-blue-pale {
  background-color: #f2f4f8 !important;
}

.u-border-blue-pale {
  border-color: #f2f4f8 !important;
}

.u-color-blue-pale {
  color: #f2f4f8 !important;
}

.u-background-greyblue {
  background-color: #f2f4f8 !important;
}

.u-border-greyblue {
  border-color: #f2f4f8 !important;
}

.u-color-greyblue {
  color: #f2f4f8 !important;
}

.u-background-greyblue-dark {
  background-color: #bbbec3 !important;
}

.u-border-greyblue-dark {
  border-color: #bbbec3 !important;
}

.u-color-greyblue-dark {
  color: #bbbec3 !important;
}

.u-background-greyblue-light {
  background-color: #f7f8fb !important;
}

.u-border-greyblue-light {
  border-color: #f7f8fb !important;
}

.u-color-greyblue-light {
  color: #f7f8fb !important;
}

.u-background-background {
  background-color: #fff !important;
}

.u-border-background {
  border-color: #fff !important;
}

.u-color-background {
  color: #fff !important;
}

.u-background-foreground {
  background-color: #000 !important;
}

.u-border-foreground {
  border-color: #000 !important;
}

.u-color-foreground {
  color: #000 !important;
}

.u-background-primary {
  background-color: #0f5039 !important;
}

.u-border-primary {
  border-color: #0f5039 !important;
}

.u-color-primary {
  color: #0f5039 !important;
}

.u-background-secondary {
  background-color: #f2f4f8 !important;
}

.u-border-secondary {
  border-color: #f2f4f8 !important;
}

.u-color-secondary {
  color: #f2f4f8 !important;
}

.u-background-outline {
  background-color: #ffc943 !important;
}

.u-border-outline {
  border-color: #ffc943 !important;
}

.u-color-outline {
  color: #ffc943 !important;
}

.u-background-success {
  background-color: #b7cac4 !important;
}

.u-border-success {
  border-color: #b7cac4 !important;
}

.u-color-success {
  color: #b7cac4 !important;
}

.u-background-warning {
  background-color: #ffe2c5 !important;
}

.u-border-warning {
  border-color: #ffe2c5 !important;
}

.u-color-warning {
  color: #ffe2c5 !important;
}

.u-background-error {
  background-color: #f6c0ab !important;
}

.u-border-error {
  border-color: #f6c0ab !important;
}

.u-color-error {
  color: #f6c0ab !important;
}

/**
** UTILITIES
** Name: Hidden
***********************************************************************************/
.u-hidden {
  display: none !important;
}

.u-visually-hidden {
  display: block;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(1px);
  visibility: hidden;
  white-space: nowrap;
  position: absolute;
}

/**
** UTILITIES
** Name: Text
***********************************************************************************/
.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-nowrap {
  white-space: nowrap;
}

/*# sourceMappingURL=app.output.css.map */
