:root {
  --max-content-width: 1280px;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

body {
  background-color: rgb(245, 245, 247);
  font-family: "Inter", sans-serif;
  color: #333;
  font-size: 16px;
  scrollbar-gutter: stable both-edges;
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: optimizeLegibility;
}

.image {
  display: inline-flex;
  width: 100%;
}
.image--circle {
  border-radius: 50%;
}

.topbar {
  display: flex;
  width: 100%;
  padding: 0em 0.5em;
  place-items: center;
  background-color: white;
}
.topbar .topbar__inner {
  max-width: var(--max-content-width);
  place-items: center;
  display: flex;
  width: 100%;
  flex: 1 0 0;
}
.topbar .topbar__middle, .topbar .topbar__left, .topbar .topbar__right {
  display: flex;
}
.topbar .topbar__right {
  gap: 2em;
}
.topbar .topbar__middle {
  place-content: center;
  flex: 1 1 0;
}

.form.is-validated .control:invalid {
  border-color: #FA4143 !important;
}

.control {
  display: inline-flex;
  justify-content: stretch;
  border: none;
}
.control.control--checkbox {
  margin: 0.25em;
  width: 2em;
  height: 2em;
  border-radius: 0px;
}
.control.control--text {
  min-height: 2.5em;
  width: 100%;
  max-width: 100%;
  outline: none;
  border: 2px solid #999;
  border-radius: 1px;
}
.control.control--text > input:not(.control) {
  border: none;
  outline: none;
  padding: 0em 0.5em;
  font-family: inherit;
  color: inherit;
  font-size: inherit;
}
.control.control--text:focus-within, .control.control--text:focus {
  border-color: #159CD4;
}
.control.control--text:focus-within:read-only:not(select), .control.control--text:focus:read-only:not(select) {
  border-color: #0f6083;
}
.control.control--text:disabled {
  color: gray;
  cursor: not-allowed;
}
.control.control--text:read-only:not(select) {
  color: gray;
}
.control.control--text:user-invalid {
  border-color: #FA4143 !important;
}
div .control {
  max-width: 100%;
  min-width: 0px;
  flex-shrink: 1;
  border: 2px solid #333;
  max-height: calc(2.5em - 4px);
}
div .control > input:not(.control) {
  min-width: 1px;
  width: 100%;
  max-width: 100%;
}
div .control > .button, div .list .control > .list__item, .list div .control > .list__item {
  max-height: calc(2.5em - 4px);
}
div .control > .button.button--icon, div .list .control > .button--icon.list__item, .list div .control > .button--icon.list__item {
  max-width: calc(2.5em - 4px);
}

input.control.control--text, select.control.control--text, textarea.control.control--text {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  padding: 0em 0.5em;
  min-width: 1px;
  width: 100%;
  max-width: 100%;
}

select.control.control--text {
  padding: 0.5em;
  background-color: white;
}

.button, .list .list__item {
  --color-text: inherit;
  --color-background: transparent;
  --color-outline: currentColor;
  --color-background-hover: rgba(0, 0, 0, 0.1);
  --color-text-outline: var(--color-text);
  height: 2.5em;
  display: inline-flex;
  place-items: center;
  place-content: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-text);
  font-size: inherit;
  font-family: inherit;
  border: none;
  background: none;
  background-color: var(--color-background);
  padding: 0em 2em;
  border-radius: 2px;
  outline: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  transition: transform 50ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transform-style: preserve-3d;
}
.button > *:not(:last-child), .list .list__item > *:not(:last-child) {
  margin-inline-end: 0.25em;
}
.button.button--disabled, .list .button--disabled.list__item, .button:disabled, .list .list__item:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
.button:not(.button--icon), .list .list__item:not(.button--icon) {
  min-width: 4em;
  flex-shrink: 0;
}
.button.button--icon, .list .button--icon.list__item {
  width: 2.5em;
  min-width: 2.5em;
  padding: 0;
}
.button:focus, .list .list__item:focus {
  outline: 1px solid lightgray;
}
.button.button--link, .list .list__item {
  background-color: transparent;
  color: var(--color-text-outline);
  transition: background-color 100ms ease, transform 50ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.button.button--link:not(:disabled):not(.button--disabled):hover, .list .list__item:not(:disabled):not(.button--disabled):hover, .button.button--link:not(:disabled):not(.button--disabled):focus, .list .list__item:not(:disabled):not(.button--disabled):focus, .button.button--link:not(:disabled):not(.button--disabled):active, .list .list__item:not(:disabled):not(.button--disabled):active {
  background-color: var(--color-background-hover);
}
.button.button--outline, .list .button--outline.list__item {
  background-color: transparent;
  color: var(--color-outline);
  border: 2px solid var(--color-outline);
}
.button.button--primary, .list .button--primary.list__item {
  --color-text: #f9fffd;
  --color-background: var(--color-primary);
  --color-background-hover: rgba(67, 171, 140, 0.1);
  --color-outline: var(--color-primary);
  --color-text-outline: var(--color-primary);
}
.button.button--secondary, .list .button--secondary.list__item {
  --color-text: #3f2e18;
  --color-background: #cebca4;
  --color-background-hover: rgba(61, 56, 49, 0.1);
  --color-outline: #cebca4;
  --color-text-outline: #cebca4;
}
.button.button--danger, .list .button--danger.list__item {
  --color-text: #f9fffd;
  --color-background: #FA4143;
  --color-background-hover: rgba(250, 65, 68, 0.1);
  --color-outline: #FA4143;
  --color-text-outline: #FA4143;
}
.button.button--warning, .list .button--warning.list__item {
  --color-text: #3f2e18;
  --color-background: #fdb353;
  --color-background-hover: rgba(253, 179, 83, 0.1);
  --color-outline: #fdb353;
  --color-text-outline: #fdb353;
}
.button:active:not(:disabled):not(.button--disabled), .list .list__item:active:not(:disabled):not(.button--disabled) {
  transform: scale(0.9);
}

.message {
  padding: 1em;
  padding-left: 2em;
  background-color: white;
  border-radius: 3px;
  position: relative;
  display: flex;
  place-items: center;
  overflow: hidden;
}
.message__featured {
  display: flex;
  place-items: center;
  place-content: center;
  position: absolute;
  left: -0.25em;
  bottom: -0.25em;
  transform-origin: bottom left;
  opacity: 0.25;
  pointer-events: none;
  font-size: 6em;
}
.message__featured + .message__content {
  margin-left: 3em;
}
.message__content {
  flex-grow: 1;
}
.message__content h1, .message__content h2, .message__content h3 {
  margin: 0;
}
.message__content p {
  margin: 0;
}
.message--success {
  color: white;
  --color-text: white;
  background-color: var(--color-success);
}
.message--success .message__featured > i::after {
  content: "\f00c";
}
.message--success .message__tail > .button, .message--success .list .message__tail > .list__item, .list .message--success .message__tail > .list__item {
  --color-text: white;
}
.message--information, .message--info {
  color: white;
  --color-text: white;
  background-color: var(--color-info);
}
.message--information .message__featured > i::after, .message--info .message__featured > i::after {
  content: "\f05a";
}
.message--information .message__tail > .button, .message--information .list .message__tail > .list__item, .list .message--information .message__tail > .list__item, .message--info .message__tail > .button, .message--info .list .message__tail > .list__item, .list .message--info .message__tail > .list__item {
  --color-text: white;
}
.message--danger, .message--error {
  color: white;
  --color-text: white;
  background-color: var(--color-danger);
}
.message--danger .message__featured > i::after, .message--error .message__featured > i::after {
  content: "\f00d";
}
.message--danger .message__tail > .button, .message--danger .list .message__tail > .list__item, .list .message--danger .message__tail > .list__item, .message--error .message__tail > .button, .message--error .list .message__tail > .list__item, .list .message--error .message__tail > .list__item {
  --color-text: white;
}
.message--alert, .message--warning, .message--warn {
  color: white;
  --color-text: white;
  background-color: var(--color-alert);
}
.message--alert .message__featured > i::after, .message--warning .message__featured > i::after, .message--warn .message__featured > i::after {
  content: "\f071";
}
.message--alert .message__tail > .button, .message--alert .list .message__tail > .list__item, .list .message--alert .message__tail > .list__item, .message--warning .message__tail > .button, .message--warning .list .message__tail > .list__item, .list .message--warning .message__tail > .list__item, .message--warn .message__tail > .button, .message--warn .list .message__tail > .list__item, .list .message--warn .message__tail > .list__item {
  --color-text: white;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 15;
  transition: background-color 250ms ease;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
}
.modal-overlay[data-modals-active=true] {
  background-color: rgba(0, 0, 0, 0.75);
  pointer-events: all;
}
.modal-overlay > .modal {
  position: fixed;
}

.modal {
  transition: transform 250ms ease, opacity 250ms ease;
}
.modal--default {
  padding: 2em;
  background-color: white;
  border-radius: 3px;
  width: 100%;
  max-width: 40em;
}
.modal--default.modal--right {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  max-width: 30em;
}
.modal--default.modal--left {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  max-width: 30em;
}
.modal--popup {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  pointer-events: none;
}
.modal--popup[data-modal-open="1"] {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}
.modal--right {
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transform: translateX(100%);
}
.modal--right[data-modal-open="1"] {
  transform: translateX(0%);
}
.modal--left {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: translateX(-100%);
}
.modal--left[data-modal-open="1"] {
  transform: translateX(0%);
}

.card {
  display: flex;
  background-color: white;
  border-radius: 3px;
  gap: 0.5em;
  --max-width: 100%;
  --max-height: 100%;
}
.card > .card__featured {
  position: relative;
  display: flex;
}
.card > .card__body {
  display: flex;
  flex: 1 0 0;
}
.card--vertical {
  --space: 1em;
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.table {
  display: grid;
}

.table .table__row, .table > .table__body, .table > .table__header {
  display: contents;
}

.table {
  max-width: 100%;
}

.table__data {
  padding: 0.75em;
}

.table__row:nth-child(odd) .table__data {
  background-color: rgba(0, 0, 0, 0.025);
}

:root {
  --color-primary: #303952;
  --color-success: #6ab04c;
  --color-good: var(--color-success);
  --color-info: #2d98da;
  --color-info-dark: #1e6089;
  --color-information: #2d98da;
  --color-notice: #2d98da;
  --color-alert: #fdb353;
  --color-warning: #fdb353;
  --color-warning-dark: #8b5b14;
  --color-danger: #FA4143;
  --color-danger-dark: #94282a;
  --color-error: var(--color-danger);
  --color-error-dark: var(--color-danger-dark);
}

.logo {
  display: block;
  height: auto;
  object-fit: contain;
}

.is-circle {
  border-radius: 50%;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.marginless {
  margin: 0 !important;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.list .list__item {
  place-content: start;
  height: auto;
  min-height: 2.5em;
  padding: 0.25em 0.5em;
}
.list .list__item > i {
  min-width: 1.5em;
  text-align: center;
}
.list .list__item.is-active {
  background-color: rgba(0, 0, 0, 0.1);
}
.list .list__item:active {
  transform: scale(1) !important;
}

.dropdown {
  z-index: 10;
  min-width: 10em;
  display: inline-flex;
  position: absolute;
  background-color: white;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 2px;
  user-select: none;
}

.page {
  flex-grow: 1;
  height: 100%;
  padding-bottom: 2em;
}

.flex {
  display: flex;
}

.f-wrap {
  flex-wrap: wrap;
}

.column {
  flex-direction: column;
}

.f-gap-75 {
  gap: 0.75em;
}

.f-gap-50 {
  gap: 0.5em;
}

.f-gap-25 {
  gap: 0.25em;
}

.f-gap-100 {
  gap: 1em;
}

.f-grow-1, .f-grow {
  flex-grow: 1;
}

.f-content-center {
  place-content: center;
}

.f-items-center {
  place-items: center;
}

.f-items-stretch {
  place-items: stretch;
}

.f-items-start {
  place-items: start;
}

.f-items-end {
  place-items: end;
}

.f-content-center {
  place-content: center;
}

.f-all-center {
  place-items: center;
  place-content: center;
}

.f-place-items-start {
  place-items: start;
}

.f-end {
  justify-content: end;
}

.p-100 {
  padding: 1em;
}

.p-75 {
  padding: 0.75em;
}

.p-50 {
  padding: 0.5em;
}

.p-25 {
  padding: 0.25em;
}

.t-left {
  text-align: left;
}

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

.t-muted {
  color: gray;
}

.t-upper {
  text-transform: uppercase;
}

.t-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stack {
  --space: 1em;
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.badge {
  display: inline-flex;
  place-items: center;
  place-content: center;
  border-radius: 2px;
  background-color: #333;
  color: white;
  font-size: 0.75em;
  padding: 0em 0.5em;
  height: 1rem;
  min-height: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge--large {
  padding: 1em 0.75em;
}
.badge--larger {
  padding: 1.5em 1em;
}
.badge--default {
  background-color: lightgray;
  color: #333;
}
.badge--primary {
  background-color: var(--color-primary);
  color: white;
}
.badge--secondary {
  background-color: #159CD4;
  color: white;
}
.badge--danger, .badge--error {
  background-color: #FA4143;
  color: white;
}
.badge--warning {
  background-color: #fdb353;
  color: white;
}
.badge--success {
  background-color: var(--color-success);
  color: white;
}

.aspect-ratio-box {
  height: 0;
  overflow: hidden;
  padding-top: 100%;
  background: white;
  position: relative;
}
.aspect-ratio-box > .aspect-ratio-box__inside {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.only-desktop {
  display: none !important;
}

@media all and (min-width: 700px) {
  .only-desktop {
    display: inherit !important;
  }
  .only-mobile {
    display: none;
  }
}
.carrousel {
  overflow: hidden;
  position: relative;
}

.carrousel__inner {
  display: flex;
  position: absolute;
  height: 100%;
  width: 100%;
}

.carrousel-item {
  flex: 1 1 0;
}

/*# sourceMappingURL=redux.css.map */
