@charset "UTF-8";
/* Let's UI Styles */
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, 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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

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;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

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

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

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

.flex-justify-start {
  justify-content: flex-start;
}

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

.flex-justify-center {
  justify-content: center;
}

.flex-justify-space-between {
  justify-content: space-between;
}

.flex-justify-space-around {
  justify-content: space-around;
}

.flex-justify-space-evenly {
  justify-content: space-evenly;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

.flex-align-stretch {
  align-items: stretch;
}

.flex-align-content-start {
  align-content: flex-start;
}

.flex-align-content-end {
  align-content: flex-end;
}

.flex-align-content-center {
  align-content: center;
}

.flex-align-content-space-between {
  align-content: space-between;
}

.flex-align-content-space-around {
  align-content: space-around;
}

.flex-align-content-stretch {
  align-content: stretch;
}

.flex-item-grow-0 {
  flex-grow: 0;
}

.flex-item-grow-1 {
  flex-grow: 1;
}

.flex-item-shrink-0 {
  flex-shrink: 0;
}

.flex-item-shrink-1 {
  flex-shrink: 1;
}

.flex-item-auto {
  flex: auto;
}

.flex-item-initial {
  flex: initial;
}

.flex-item-none {
  flex: none;
}

.flex-item-order-0 {
  order: 0;
}

.flex-item-order-1 {
  order: 1;
}

.flex-item-order-2 {
  order: 2;
}

.flex-item-order-negative {
  order: -1;
}

.flex-self-auto {
  align-self: auto;
}

.flex-self-start {
  align-self: flex-start;
}

.flex-self-end {
  align-self: flex-end;
}

.flex-self-center {
  align-self: center;
}

.flex-self-baseline {
  align-self: baseline;
}

.flex-self-stretch {
  align-self: stretch;
}

.bw-1 {
  border-width: 1px;
}

.bw-x-1 {
  border-left-width: 1px;
  border-right-width: 1px;
}

.bw-y-1 {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.bw-t-1 {
  border-top-width: 1px;
}

.bw-r-1 {
  border-right-width: 1px;
}

.bw-b-1 {
  border-bottom-width: 1px;
}

.bw-l-1 {
  border-left-width: 1px;
}

.bw-2 {
  border-width: 2px;
}

.bw-x-2 {
  border-left-width: 2px;
  border-right-width: 2px;
}

.bw-y-2 {
  border-top-width: 2px;
  border-bottom-width: 2px;
}

.bw-t-2 {
  border-top-width: 2px;
}

.bw-r-2 {
  border-right-width: 2px;
}

.bw-b-2 {
  border-bottom-width: 2px;
}

.bw-l-2 {
  border-left-width: 2px;
}

.bw-4 {
  border-width: 4px;
}

.bw-x-4 {
  border-left-width: 4px;
  border-right-width: 4px;
}

.bw-y-4 {
  border-top-width: 4px;
  border-bottom-width: 4px;
}

.bw-t-4 {
  border-top-width: 4px;
}

.bw-r-4 {
  border-right-width: 4px;
}

.bw-b-4 {
  border-bottom-width: 4px;
}

.bw-l-4 {
  border-left-width: 4px;
}

.br-2 {
  border-radius: 2px;
}

.br-4 {
  border-radius: 4px;
}

.br-8 {
  border-radius: 8px;
}

.br-12 {
  border-radius: 12px;
}

.br-16 {
  border-radius: 16px;
}

.br-circle {
  border-radius: 1000000px;
}

.layout, .grid {
  display: grid;
}

.grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: clamp(1rem, 2vw, 2rem);
  align-items: start;
}

.grid:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1279px) {
  .main-content {
    padding: 1rem;
  }
}
@media (max-width: 719px) {
  .col-sm-1 {
    grid-column: span 1;
  }
  .col-sm-2 {
    grid-column: span 2;
  }
  .col-sm-3 {
    grid-column: span 3;
  }
  .col-sm-4 {
    grid-column: span 4;
  }
}
@media (min-width: 720px) {
  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .col-md-1 {
    grid-column: span 1;
  }
  .col-md-2 {
    grid-column: span 2;
  }
  .col-md-3 {
    grid-column: span 3;
  }
  .col-md-4 {
    grid-column: span 4;
  }
  .col-md-5 {
    grid-column: span 5;
  }
  .col-md-6 {
    grid-column: span 6;
  }
}
@media (min-width: 1280px) {
  .layout {
    grid-template-areas: "header header" "sidebar content";
    grid-template-columns: 280px 1fr;
    grid-template-rows: 64px 1fr;
  }
  .header {
    grid-area: header;
    position: sticky;
    top: 0;
  }
  .navbar {
    margin-top: 64px;
    position: fixed;
  }
  .main-content {
    grid-area: content;
    padding: 2rem 5vw;
  }
  .col-lg-1 {
    grid-column: span 1;
  }
  .col-lg-2 {
    grid-column: span 2;
  }
  .col-lg-3 {
    grid-column: span 3;
  }
  .col-lg-4 {
    grid-column: span 4;
  }
  .col-lg-5 {
    grid-column: span 5;
  }
  .col-lg-6 {
    grid-column: span 6;
  }
  .col-lg-7 {
    grid-column: span 7;
  }
  .col-lg-8 {
    grid-column: span 8;
  }
  .col-lg-9 {
    grid-column: span 9;
  }
  .col-lg-10 {
    grid-column: span 10;
  }
  .col-lg-11 {
    grid-column: span 11;
  }
  .col-lg-12 {
    grid-column: span 12;
  }
}
.m-2 {
  margin: 2px 2px;
}

.my-2 {
  margin: 2px 0;
}

.mx-2 {
  margin: 0 2px;
}

.mt-2 {
  margin-top: 2px;
}

.mb-2 {
  margin-bottom: 2px;
}

.ml-2 {
  margin-left: 2px;
}

.mr-2 {
  margin-right: 2px;
}

.p-2 {
  padding: 2px 2px;
}

.py-2 {
  padding: 2px 0;
}

.px-2 {
  padding: 0 2px;
}

.pt-2 {
  padding-top: 2px;
}

.pb-2 {
  padding-bottom: 2px;
}

.pl-2 {
  padding-left: 2px;
}

.pr-2 {
  padding-right: 2px;
}

.g-2 {
  gap: 2px;
}

.gy-2 {
  row-gap: 2px;
}

.gx-2 {
  column-gap: 2px;
}

.w-2 {
  width: 2px;
}

.min-w-2 {
  min-width: 2px;
}

.max-w-2 {
  max-width: 2px;
}

.h-2 {
  height: 2px;
}

.min-h-2 {
  min-height: 2px;
}

.max-h-2 {
  max-height: 2px;
}

.top-2 {
  top: 2px;
}

.right-2 {
  right: 2px;
}

.bottom-2 {
  bottom: 2px;
}

.left-2 {
  left: 2px;
}

.m-4 {
  margin: 4px 4px;
}

.my-4 {
  margin: 4px 0;
}

.mx-4 {
  margin: 0 4px;
}

.mt-4 {
  margin-top: 4px;
}

.mb-4 {
  margin-bottom: 4px;
}

.ml-4 {
  margin-left: 4px;
}

.mr-4 {
  margin-right: 4px;
}

.p-4 {
  padding: 4px 4px;
}

.py-4 {
  padding: 4px 0;
}

.px-4 {
  padding: 0 4px;
}

.pt-4 {
  padding-top: 4px;
}

.pb-4 {
  padding-bottom: 4px;
}

.pl-4 {
  padding-left: 4px;
}

.pr-4 {
  padding-right: 4px;
}

.g-4 {
  gap: 4px;
}

.gy-4 {
  row-gap: 4px;
}

.gx-4 {
  column-gap: 4px;
}

.w-4 {
  width: 4px;
}

.min-w-4 {
  min-width: 4px;
}

.max-w-4 {
  max-width: 4px;
}

.h-4 {
  height: 4px;
}

.min-h-4 {
  min-height: 4px;
}

.max-h-4 {
  max-height: 4px;
}

.top-4 {
  top: 4px;
}

.right-4 {
  right: 4px;
}

.bottom-4 {
  bottom: 4px;
}

.left-4 {
  left: 4px;
}

.m-8 {
  margin: 8px 8px;
}

.my-8 {
  margin: 8px 0;
}

.mx-8 {
  margin: 0 8px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.p-8 {
  padding: 8px 8px;
}

.py-8 {
  padding: 8px 0;
}

.px-8 {
  padding: 0 8px;
}

.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.g-8 {
  gap: 8px;
}

.gy-8 {
  row-gap: 8px;
}

.gx-8 {
  column-gap: 8px;
}

.w-8 {
  width: 8px;
}

.min-w-8 {
  min-width: 8px;
}

.max-w-8 {
  max-width: 8px;
}

.h-8 {
  height: 8px;
}

.min-h-8 {
  min-height: 8px;
}

.max-h-8 {
  max-height: 8px;
}

.top-8 {
  top: 8px;
}

.right-8 {
  right: 8px;
}

.bottom-8 {
  bottom: 8px;
}

.left-8 {
  left: 8px;
}

.m-16 {
  margin: 16px 16px;
}

.my-16 {
  margin: 16px 0;
}

.mx-16 {
  margin: 0 16px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.p-16 {
  padding: 16px 16px;
}

.py-16 {
  padding: 16px 0;
}

.px-16 {
  padding: 0 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.g-16 {
  gap: 16px;
}

.gy-16 {
  row-gap: 16px;
}

.gx-16 {
  column-gap: 16px;
}

.w-16 {
  width: 16px;
}

.min-w-16 {
  min-width: 16px;
}

.max-w-16 {
  max-width: 16px;
}

.h-16 {
  height: 16px;
}

.min-h-16 {
  min-height: 16px;
}

.max-h-16 {
  max-height: 16px;
}

.top-16 {
  top: 16px;
}

.right-16 {
  right: 16px;
}

.bottom-16 {
  bottom: 16px;
}

.left-16 {
  left: 16px;
}

.m-20 {
  margin: 20px 20px;
}

.my-20 {
  margin: 20px 0;
}

.mx-20 {
  margin: 0 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.p-20 {
  padding: 20px 20px;
}

.py-20 {
  padding: 20px 0;
}

.px-20 {
  padding: 0 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.g-20 {
  gap: 20px;
}

.gy-20 {
  row-gap: 20px;
}

.gx-20 {
  column-gap: 20px;
}

.w-20 {
  width: 20px;
}

.min-w-20 {
  min-width: 20px;
}

.max-w-20 {
  max-width: 20px;
}

.h-20 {
  height: 20px;
}

.min-h-20 {
  min-height: 20px;
}

.max-h-20 {
  max-height: 20px;
}

.top-20 {
  top: 20px;
}

.right-20 {
  right: 20px;
}

.bottom-20 {
  bottom: 20px;
}

.left-20 {
  left: 20px;
}

.m-24 {
  margin: 24px 24px;
}

.my-24 {
  margin: 24px 0;
}

.mx-24 {
  margin: 0 24px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-24 {
  margin-left: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.p-24 {
  padding: 24px 24px;
}

.py-24 {
  padding: 24px 0;
}

.px-24 {
  padding: 0 24px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pl-24 {
  padding-left: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.g-24 {
  gap: 24px;
}

.gy-24 {
  row-gap: 24px;
}

.gx-24 {
  column-gap: 24px;
}

.w-24 {
  width: 24px;
}

.min-w-24 {
  min-width: 24px;
}

.max-w-24 {
  max-width: 24px;
}

.h-24 {
  height: 24px;
}

.min-h-24 {
  min-height: 24px;
}

.max-h-24 {
  max-height: 24px;
}

.top-24 {
  top: 24px;
}

.right-24 {
  right: 24px;
}

.bottom-24 {
  bottom: 24px;
}

.left-24 {
  left: 24px;
}

.m-32 {
  margin: 32px 32px;
}

.my-32 {
  margin: 32px 0;
}

.mx-32 {
  margin: 0 32px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.ml-32 {
  margin-left: 32px;
}

.mr-32 {
  margin-right: 32px;
}

.p-32 {
  padding: 32px 32px;
}

.py-32 {
  padding: 32px 0;
}

.px-32 {
  padding: 0 32px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.pr-32 {
  padding-right: 32px;
}

.g-32 {
  gap: 32px;
}

.gy-32 {
  row-gap: 32px;
}

.gx-32 {
  column-gap: 32px;
}

.w-32 {
  width: 32px;
}

.min-w-32 {
  min-width: 32px;
}

.max-w-32 {
  max-width: 32px;
}

.h-32 {
  height: 32px;
}

.min-h-32 {
  min-height: 32px;
}

.max-h-32 {
  max-height: 32px;
}

.top-32 {
  top: 32px;
}

.right-32 {
  right: 32px;
}

.bottom-32 {
  bottom: 32px;
}

.left-32 {
  left: 32px;
}

.m-40 {
  margin: 40px 40px;
}

.my-40 {
  margin: 40px 0;
}

.mx-40 {
  margin: 0 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.p-40 {
  padding: 40px 40px;
}

.py-40 {
  padding: 40px 0;
}

.px-40 {
  padding: 0 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.g-40 {
  gap: 40px;
}

.gy-40 {
  row-gap: 40px;
}

.gx-40 {
  column-gap: 40px;
}

.w-40 {
  width: 40px;
}

.min-w-40 {
  min-width: 40px;
}

.max-w-40 {
  max-width: 40px;
}

.h-40 {
  height: 40px;
}

.min-h-40 {
  min-height: 40px;
}

.max-h-40 {
  max-height: 40px;
}

.top-40 {
  top: 40px;
}

.right-40 {
  right: 40px;
}

.bottom-40 {
  bottom: 40px;
}

.left-40 {
  left: 40px;
}

.m-48 {
  margin: 48px 48px;
}

.my-48 {
  margin: 48px 0;
}

.mx-48 {
  margin: 0 48px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-48 {
  margin-bottom: 48px;
}

.ml-48 {
  margin-left: 48px;
}

.mr-48 {
  margin-right: 48px;
}

.p-48 {
  padding: 48px 48px;
}

.py-48 {
  padding: 48px 0;
}

.px-48 {
  padding: 0 48px;
}

.pt-48 {
  padding-top: 48px;
}

.pb-48 {
  padding-bottom: 48px;
}

.pl-48 {
  padding-left: 48px;
}

.pr-48 {
  padding-right: 48px;
}

.g-48 {
  gap: 48px;
}

.gy-48 {
  row-gap: 48px;
}

.gx-48 {
  column-gap: 48px;
}

.w-48 {
  width: 48px;
}

.min-w-48 {
  min-width: 48px;
}

.max-w-48 {
  max-width: 48px;
}

.h-48 {
  height: 48px;
}

.min-h-48 {
  min-height: 48px;
}

.max-h-48 {
  max-height: 48px;
}

.top-48 {
  top: 48px;
}

.right-48 {
  right: 48px;
}

.bottom-48 {
  bottom: 48px;
}

.left-48 {
  left: 48px;
}

.m-56 {
  margin: 56px 56px;
}

.my-56 {
  margin: 56px 0;
}

.mx-56 {
  margin: 0 56px;
}

.mt-56 {
  margin-top: 56px;
}

.mb-56 {
  margin-bottom: 56px;
}

.ml-56 {
  margin-left: 56px;
}

.mr-56 {
  margin-right: 56px;
}

.p-56 {
  padding: 56px 56px;
}

.py-56 {
  padding: 56px 0;
}

.px-56 {
  padding: 0 56px;
}

.pt-56 {
  padding-top: 56px;
}

.pb-56 {
  padding-bottom: 56px;
}

.pl-56 {
  padding-left: 56px;
}

.pr-56 {
  padding-right: 56px;
}

.g-56 {
  gap: 56px;
}

.gy-56 {
  row-gap: 56px;
}

.gx-56 {
  column-gap: 56px;
}

.w-56 {
  width: 56px;
}

.min-w-56 {
  min-width: 56px;
}

.max-w-56 {
  max-width: 56px;
}

.h-56 {
  height: 56px;
}

.min-h-56 {
  min-height: 56px;
}

.max-h-56 {
  max-height: 56px;
}

.top-56 {
  top: 56px;
}

.right-56 {
  right: 56px;
}

.bottom-56 {
  bottom: 56px;
}

.left-56 {
  left: 56px;
}

.m-64 {
  margin: 64px 64px;
}

.my-64 {
  margin: 64px 0;
}

.mx-64 {
  margin: 0 64px;
}

.mt-64 {
  margin-top: 64px;
}

.mb-64 {
  margin-bottom: 64px;
}

.ml-64 {
  margin-left: 64px;
}

.mr-64 {
  margin-right: 64px;
}

.p-64 {
  padding: 64px 64px;
}

.py-64 {
  padding: 64px 0;
}

.px-64 {
  padding: 0 64px;
}

.pt-64 {
  padding-top: 64px;
}

.pb-64 {
  padding-bottom: 64px;
}

.pl-64 {
  padding-left: 64px;
}

.pr-64 {
  padding-right: 64px;
}

.g-64 {
  gap: 64px;
}

.gy-64 {
  row-gap: 64px;
}

.gx-64 {
  column-gap: 64px;
}

.w-64 {
  width: 64px;
}

.min-w-64 {
  min-width: 64px;
}

.max-w-64 {
  max-width: 64px;
}

.h-64 {
  height: 64px;
}

.min-h-64 {
  min-height: 64px;
}

.max-h-64 {
  max-height: 64px;
}

.top-64 {
  top: 64px;
}

.right-64 {
  right: 64px;
}

.bottom-64 {
  bottom: 64px;
}

.left-64 {
  left: 64px;
}

.m-72 {
  margin: 72px 72px;
}

.my-72 {
  margin: 72px 0;
}

.mx-72 {
  margin: 0 72px;
}

.mt-72 {
  margin-top: 72px;
}

.mb-72 {
  margin-bottom: 72px;
}

.ml-72 {
  margin-left: 72px;
}

.mr-72 {
  margin-right: 72px;
}

.p-72 {
  padding: 72px 72px;
}

.py-72 {
  padding: 72px 0;
}

.px-72 {
  padding: 0 72px;
}

.pt-72 {
  padding-top: 72px;
}

.pb-72 {
  padding-bottom: 72px;
}

.pl-72 {
  padding-left: 72px;
}

.pr-72 {
  padding-right: 72px;
}

.g-72 {
  gap: 72px;
}

.gy-72 {
  row-gap: 72px;
}

.gx-72 {
  column-gap: 72px;
}

.w-72 {
  width: 72px;
}

.min-w-72 {
  min-width: 72px;
}

.max-w-72 {
  max-width: 72px;
}

.h-72 {
  height: 72px;
}

.min-h-72 {
  min-height: 72px;
}

.max-h-72 {
  max-height: 72px;
}

.top-72 {
  top: 72px;
}

.right-72 {
  right: 72px;
}

.bottom-72 {
  bottom: 72px;
}

.left-72 {
  left: 72px;
}

.m-80 {
  margin: 80px 80px;
}

.my-80 {
  margin: 80px 0;
}

.mx-80 {
  margin: 0 80px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.p-80 {
  padding: 80px 80px;
}

.py-80 {
  padding: 80px 0;
}

.px-80 {
  padding: 0 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.g-80 {
  gap: 80px;
}

.gy-80 {
  row-gap: 80px;
}

.gx-80 {
  column-gap: 80px;
}

.w-80 {
  width: 80px;
}

.min-w-80 {
  min-width: 80px;
}

.max-w-80 {
  max-width: 80px;
}

.h-80 {
  height: 80px;
}

.min-h-80 {
  min-height: 80px;
}

.max-h-80 {
  max-height: 80px;
}

.top-80 {
  top: 80px;
}

.right-80 {
  right: 80px;
}

.bottom-80 {
  bottom: 80px;
}

.left-80 {
  left: 80px;
}

.display {
  font: 300 clamp(2.245rem, 1.6579rem + 2.9357vw, 4.3rem)/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.title {
  font: 600 clamp(1.577rem, 1.3167rem + 1.3014vw, 2.488rem)/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.headline {
  font: 600 clamp(1.402rem, 1.21rem + 0.96vw, 2.074rem)/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.subtitle {
  font: 400 clamp(1.246rem, 1.1083rem + 0.6886vw, 1.728rem)/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.block-title {
  font: 500 clamp(1.107rem, 1.0119rem + 0.4757vw, 1.44rem)/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.subheadline {
  font: 400 clamp(0.984rem, 0.9223rem + 0.3086vw, 1.2rem)/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.overtitle {
  font: 600 clamp(0.778rem, 0.7623rem + 0.0786vw, 0.833rem)/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.body-lg {
  font: 400 clamp(0.875rem, 0.8393rem + 0.1786vw, 1rem)/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.body-md {
  font: 400 clamp(0.778rem, 0.7623rem + 0.0786vw, 0.833rem)/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.body-sm {
  font: 400 clamp(0.691rem, 0.6901rem + 0.0043vw, 0.694rem)/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.display, .title, .headline, .subtitle, .block-title, .subheadline, .overtitle,
h1, h2, h3, h4, h5, h6, label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
  color: #131519;
}

.body-lg, .body-md, .body-sm,
body, p, input, select, button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
  color: #282b33;
}

.txt-bold {
  font-weight: 700 !important;
}

.txt-underline {
  text-decoration: underline;
}

.txt-line-through {
  text-decoration: line-through;
}

.txt-uppercase {
  text-transform: uppercase;
}

/* Let's UI Components */
.alert {
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border-width: 2px;
  border-style: solid;
  background-color: #ffffff;
}
.alert.bc-caution {
  border-color: #dc730d;
}
.alert.bc-caution i.alert-icon {
  color: #dc730d;
}
.alert.bc-danger {
  border-color: #d43332;
}
.alert.bc-danger i.alert-icon {
  color: #d43332;
}
.alert.bc-info {
  border-color: #339bf0;
}
.alert.bc-info i.alert-icon {
  color: #339bf0;
}
.alert.bc-success {
  border-color: #2da943;
}
.alert.bc-success i.alert-icon {
  color: #2da943;
}

.alert-content, .alert-actions {
  display: flex;
}

.alert-content {
  gap: 16px;
}

.alert-text {
  margin-bottom: 20px;
  width: 100%;
}
.alert-text p:first-child {
  margin-bottom: 2px;
}
.alert-text p:first-of-type {
  font-weight: 700 !important;
}

.alert-actions {
  justify-content: flex-end;
}
.alert-actions button:first-child {
  margin-right: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb li a {
  text-decoration: none;
}
.breadcrumb li::after {
  content: "/";
  margin: 0 8px;
  color: #ffffff;
}
.breadcrumb li:last-child {
  color: #ffffff;
  cursor: default;
}
.breadcrumb li:last-child::after {
  content: "";
  /* Remove a barra do último item */
}

button.btn {
  position: relative;
  overflow: hidden;
  font-weight: 400;
  border: 0;
  outline: 0;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
  z-index: 0;
}
button.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: inherit;
  z-index: -1;
  transition: filter 0.2s ease-in-out;
}
button.btn:hover::before {
  filter: brightness(0.76);
}
button.btn:active {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
button.btn:active::before {
  filter: brightness(0.6);
}
button.btn:active:not(:disabled) {
  transform: scale(0.98);
}
button.btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
button.btn:disabled::before {
  background-color: #8733ff;
  filter: none;
}
button.btn-lg {
  padding: 12px;
  font: 400 clamp(0.875rem, 0.8393rem + 0.1786vw, 1rem)/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  border-radius: 12px;
}
button.btn-md {
  padding: 8px;
  font: 400 clamp(0.778rem, 0.7623rem + 0.0786vw, 0.833rem)/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  border-radius: 8px;
}
button.btn-primary {
  color: #ffffff;
}
button.btn-primary::before {
  background-color: #8733ff;
}
button.btn-primary:focus {
  box-shadow: 0 0 0 3px lch(45.27% 113.1 310.44deg / 0.32);
}
button.btn-secondary {
  color: #ffffff;
}
button.btn-secondary::before {
  background-color: #6c7081;
}
button.btn-secondary:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
}
button.btn-tertiary {
  color: #282b33;
}
button.btn-tertiary::before {
  content: "";
  position: absolute;
  background-color: #131519;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: -1;
}
button.btn-tertiary:hover::before {
  opacity: 0.24;
}
button.btn-tertiary:active::before {
  opacity: 0.4;
}
button.btn-tertiary:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
}
button.btn-danger {
  color: #ffffff;
}
button.btn-danger::before {
  background-color: #d43332;
}
button.btn-danger:focus {
  box-shadow: 0 0 0 3px rgba(238, 67, 67, 0.3);
}
button.btn-success {
  color: #282b33;
}
button.btn-success::before {
  background-color: #2da943;
}
button.btn-success:focus {
  box-shadow: 0 0 0 3px rgba(87, 238, 67, 0.3);
}

button.btn-primary,
button.btn-secondary,
button.btn-danger,
button.btn-success {
  background-color: transparent;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
}
.card .card-cover img {
  width: 100%;
  object-fit: cover;
}
.card .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card .card-body .card-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
}

.card-cover, .card-cover img {
  max-height: 240px;
}

.card-border {
  border: 1px solid #eeecf1;
}

.card-elevation {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.02), 0 4px 12px 0 rgba(0, 0, 0, 0.04);
}

.card-interaction {
  transition: all 0.2s ease-in-out;
}
.card-interaction:hover {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.04), 0 8px 16px 0 rgba(0, 0, 0, 0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  color: #131519;
}

input.form-size-lg, select.form-size-lg, label.form-size-lg, .check-size-lg, .form-checkbox.check-size-lg input:checked::after {
  font: 400 clamp(0.875rem, 0.8393rem + 0.1786vw, 1rem)/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

input.form-size-md, select.form-size-md, label.form-size-md, .check-size-md, .form-checkbox.check-size-md input:checked::after {
  font: 400 clamp(0.778rem, 0.7623rem + 0.0786vw, 0.833rem)/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

input[type=color], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url] {
  color: #131519;
  background-color: #ffffff;
  border: 1px solid #eeecf1;
  transition: all 0.2s ease-in-out;
  line-height: 1;
  box-sizing: border-box;
}

select {
  color: #131519;
  background-color: #ffffff;
  border: 1px solid #eeecf1;
  transition: all 0.2s ease-in-out;
  line-height: 1;
  box-sizing: border-box;
}

input[type=color]:hover, input[type=email]:hover, input[type=number]:hover, input[type=password]:hover, input[type=search]:hover, input[type=tel]:hover, input[type=text]:hover, input[type=time]:hover, input[type=url]:hover {
  border: 1px solid #6c7081;
}

select:hover {
  border: 1px solid #6c7081;
}

input[type=color]:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=time]:focus, input[type=url]:focus {
  border: 1px solid #8733ff;
  box-shadow: 0 0 0 3px rgba(135, 51, 255, 0.32);
  box-shadow: 0 0 0 3px lch(45.27% 113.1 310.44deg / 0.32);
  outline: none;
}

select:focus {
  border: 1px solid #8733ff;
  box-shadow: 0 0 0 3px rgba(135, 51, 255, 0.32);
  box-shadow: 0 0 0 3px lch(45.27% 113.1 310.44deg / 0.32);
  outline: none;
}

input.form-size-lg, select.form-size-lg {
  border-radius: 8px;
  padding: 12px;
  height: 48px;
}

input.form-size-md {
  border-radius: 4px;
  padding: 8px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M16%2019.5858L7.70711%2011.2929L6.29289%2012.7071L16%2022.4142L25.7071%2012.7071L24.2929%2011.2929L16%2019.5858Z%22%20fill%3D%22%23131519%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1.25rem;
}
select.form-size-md {
  border-radius: 4px;
  padding: 8px;
}
select.form-size-lg {
  background-position: right 12px center;
}
select.form-size-md {
  background-position: right 8px center;
}

/* Checkbox */
.form-checkbox.check-size-lg input[type=checkbox] {
  width: 20px;
  height: 20px;
}
.form-checkbox.check-size-md input[type=checkbox] {
  width: 16px;
  height: 16px;
}

input[type=checkbox] {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  margin: 0;
  padding: 0;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  margin: 0;
  padding: 0;
}
.form-checkbox input {
  appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  border: 1px solid #eeecf1;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
}
.form-checkbox input:checked {
  background-color: #8733ff;
  border-color: #8733ff;
}
.form-checkbox input:checked::after {
  font-family: "letsicons" !important;
  content: "\e902";
  color: #ffffff;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form-checkbox input:hover {
  border-color: #8733ff;
}
.form-checkbox input:focus {
  border: 1px solid #8733ff;
  box-shadow: 0 0 0 3px lch(45.27% 113.1 310.44deg / 0.32);
  outline: none;
}
.form-checkbox input:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.header {
  display: flex;
}

.desktop-nav ul {
  display: flex;
}
.desktop-nav ul li {
  display: flex;
}

.header-icons, .sidebar ul, .mobile-menu-header {
  display: flex;
}

.header {
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.desktop-nav ul, .header-icons {
  gap: 8px;
}

.desktop-nav a, li.nav-active {
  position: relative;
  overflow: hidden;
  color: #282b33;
  background-color: transparent;
  padding: 8px;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
  /* z-index: 0; */
}

.desktop-nav a::before {
  content: "";
  position: absolute;
  background-color: #131519;
  border-radius: 8px;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: -1;
}

.nav-active {
  cursor: default;
  border-bottom: 1px solid #545867;
}

.desktop-nav a:hover::before {
  opacity: 0.24;
}
.desktop-nav a:active::before {
  opacity: 0.4;
}

/* Excluir quando incluir ícone List */
.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
  position: relative;
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #333;
  left: 0;
}
.hamburger::before {
  top: -6px;
}
.hamburger::after {
  bottom: -6px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  overflow-y: auto;
  /* z-index: 1000; */
}

#mobile-menu {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  opacity: 0;
  transform: translateY(-350px);
}
#mobile-menu:popover-open {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  opacity: 1;
  transform: translateY(72px);
}

.mobile-menu-header {
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.mobile-nav {
  padding: 0 4px;
}

.menu-items li {
  margin-bottom: 0.5rem;
}
.menu-items a {
  display: block;
  position: relative;
  background-color: transparent;
  padding: 12px;
  transition: all 0.1s ease-in-out;
  color: #282b33;
  text-decoration: none;
}
.menu-items a::before {
  content: "";
  position: absolute;
  background-color: #131519;
  border-radius: 8px;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: -1;
}
.menu-items a:hover::before {
  opacity: 0.24;
}
.menu-items a:active::before {
  opacity: 0.4;
}

/* Media Queries */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
button.icon-button {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  border-radius: 12px;
  place-self: start;
  transition: all 0.2s ease-in-out;
  z-index: 0;
}
button.icon-button::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: -1;
}
button.icon-button.btn-light::before {
  background-color: #131519;
}
button.icon-button.btn-light i::before {
  color: #131519;
}
button.icon-button.btn-dark::before {
  background-color: #ffffff;
}
button.icon-button.btn-dark i::before {
  color: #ffffff;
}
button.icon-button:hover::before {
  opacity: 0.24;
}
button.icon-button:active:not(:disabled)::before {
  opacity: 0.4;
}
button.icon-button:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
}
button.icon-button:active:not(:disabled)::before, button.icon-button:focus {
  border-radius: 16px;
}
button.icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
button.icon-button:disabled::before {
  opacity: 0;
  filter: none;
}

a.link {
  color: var(--lui-color-brand-accent-content-text-hard);
  transition: filter 0.3s ease;
}
a.link:hover {
  filter: brightness(76%);
}
a.link:active {
  filter: brightness(52%);
}

.navbar {
  top: 0;
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  height: 100vh;
  line-height: 1.5rem;
  overflow-y: auto;
  border-right: 1px solid #eee;
}
.navbar img {
  padding: 16px 16px 0 16px;
}

@media (max-width: 1279px) {
  .navbar {
    display: none;
  }
}
.nav-section {
  padding: 16px;
}
.nav-section h6 {
  margin-bottom: 8px;
}
.nav-section ul {
  gap: 24px;
}
.nav-section ul li {
  display: flex;
}
.nav-section a {
  position: relative;
  background-color: transparent;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.1s ease-in-out;
  width: 100%;
}
.nav-section a::before {
  content: "";
  position: absolute;
  background-color: #131519;
  border-radius: 8px;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: -1;
}
.nav-section a:hover::before {
  opacity: 0.24;
}
.nav-section a:active::before {
  opacity: 0.4;
}

.menu-active {
  border-radius: 8px;
  padding: 12px 16px;
  background-color: #8733ff;
  color: #ffffff;
  cursor: default;
}

.navbar h6 {
  color: #131519;
}
.navbar a {
  color: #282b33;
  text-decoration: none;
}

.tag-sm,
.tag-md,
.tag-lg {
  width: fit-content;
  line-height: 1.5;
}

.tag-circle {
  border-radius: 1000000px !important;
}

.tag-sm {
  padding: 2px 8px;
  font: 400 clamp(0.691rem, 0.6901rem + 0.0043vw, 0.694rem)/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  border-radius: 8px;
}

.tag-md {
  padding: 4px 8px;
  font: 400 clamp(0.778rem, 0.7623rem + 0.0786vw, 0.833rem)/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  border-radius: 12px;
}

.tag-lg {
  padding: 8px 12px;
  font: 400 clamp(0.875rem, 0.8393rem + 0.1786vw, 1rem)/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  border-radius: 16px;
}

.tag-primary {
  color: #351093;
  background: #edd6ff;
}

.tag-caution {
  color: #743800;
  background: #ffc5ad;
}

.tag-danger {
  color: #630d0b;
  background: #ffdbdb;
}

.tag-success {
  color: #05360f;
  background: #e6ffea;
}

.tag-neutral {
  color: #282b33;
  background: #c7cad4;
}

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