@charset "UTF-8";
:root {
  /* === fonts === */
  /* --- font-family --- */
  --ff-base: "Open Sans", sans-serif;
  --ff-headings: "DM Sans", sans-serif;
  --ff-mono: "Inconsolata", monospace;
  /* --- font-size --- */
  --fs-base: 1rem;
  --fs-micro: 0.25rem;
  --fs-small: 0.5rem;
  --fs-narrow: 0.875rem;
  --fs-mid: 1.5rem;
  --fs-large: 2rem;
  --fs-jumbo: 3rem;
  /* --- font-weight --- */
  --fw-base: 400;
  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-600: 600;
  --fw-700: 700;
  --fw-900: 900;
  /* === sizes === */
  --size-1: 0.25rem;
  --size-2: 0.5rem;
  --size-3: 0.75rem;
  --size-4: 1rem;
  --size-5: 1.5rem;
  --size-6: 2rem;
  --size-7: 2.5rem;
  --size-8: 3rem;
  /* === gaps === */
  --gap-1: 0.25rem;
  --gap-2: 0.5rem;
  --gap-3: 0.75rem;
  --gap-4: 1rem;
  --gap-5: 1.5rem;
  --gap-6: 2rem;
  --gap-7: 2.5rem;
  --gap-8: 3rem;
  /* === colors === */
  /* -- primary -- */
  --clr-info: hsl(199, 71%, 54%);
  --clr-success: hsl(125, 72%, 42%);
  --clr-warning: hsl(43, 84%, 62%);
  --clr-danger: hsl(4, 92%, 41%);
  --clr-light-100: hsl(255, 100%, 100%);
  --clr-light-300: hsl(240, 4%, 95%);
  --clr-light-400: hsl(300, 1%, 87%);
  --clr-dark-400: hsl(228, 6%, 25%);
  --clr-dark-700: hsl(228, 6%, 17%);
  --clr-dark-900: hsl(0, 0%, 0%);
  --clr-text: hsl(228, 6%, 17%);
  --clr-text-header: hsl(257, 27%, 27%);
  --clr-gradient-light: hsl(257, 27%, 27%);
  --clr-gradient-dark: hsl(228, 6%, 17%);
  --clr-gradient-violet-60: hsl(257, 27%, 35%);
  --clr-font-sidebar: hsl(255, 100%, 100%);
  --clr-frm-el: hsl(0, 0%, 66%);
  /* -- accents -- */
  --clr-accent-primary: hsl(248, 70%, 60%);
  --clr-accent-info: hsl(194, 66%, 61%);
  --clr-accent-success: hsl(125, 72%, 42%);
  --clr-accent-warning: hsl(43, 84%, 62%);
  --clr-accent-danger: hsl(10, 86%, 54%);
  --clr-accent-violet-english: hsl(257, 27%, 27%);
  --clr-accent-blue-majorelle: hsl(248, 70%, 60%);
  --clr-accent-green-bright: hsl(149, 60%, 36%);
  --clr-accent-pink-bright: hsl(346, 100%, 66%);
  --clr-shadow: hsl(223, 11.9%, 11.6%);
  --bg-color: var(--clr-light-300);
  /* -- sidebar specific -- */
  --bg-color-sidebar: linear-gradient(315deg, var(--clr-gradient-dark), var(--clr-gradient-light));
  --font-color-sidebar: var(--clr-font-sidebar);
  --width-sb: 15.625rem;
}

[data-theme=dark] {
  --clr-info: hsl(201, 96%, 35%);
  --clr-success: hsl(123, 43%, 39%);
  --clr-warning: hsl(30, 78%, 53%);
  --clr-danger: hsl(0, 73%, 45%);
  --clr-dark-900: hsl(255, 100%, 100%);
  --clr-dark-700: hsl(240, 4%, 95%);
  --clr-dark-400: hsl(300, 1%, 87%);
  --clr-light-400: hsl(223, 11.9%, 11.6%);
  --clr-light-300: hsl(218, 12.9%, 16.7%);
  --clr-light-100: hsl(217, 12.9%, 19.8%);
  --clr-text: hsl(240, 100%, 94%);
  --clr-text-header: hsl(248, 70%, 60%);
  --clr-gradient-light: hsl(257, 27%, 27%);
  --clr-gradient-dark: hsl(228, 6%, 17%);
  --clr-gradient-violet-60: hsla(257, 27%, 27%, 0.6);
  --clr-font-sidebar: hsl(255, 100%, 100%);
  --clr-frm-el: hsl(0, 0%, 66%);
}

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

* {
  margin: 0;
}

html, body {
  height: 100vh;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: var(--bg-color);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
  text-shadow: none;
}

footer, header, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

#root, #__next {
  isolation: isolate;
}

.wrapper {
  display: flex;
  flex-flow: row wrap;
}

html {
  font-size: var(--fs-narrow);
  -webkit-text-size-adjust: 100%;
}
@media (width >= 25em) {
  html {
    font-size: var(--fs-base);
  }
}

body {
  font-family: var(--ff-base);
  font-size: var(--fs-narrow);
  line-height: 2rem;
  color: var(--clr-text);
  font-feature-settings: "liga", "dlig", "hist";
  font-variant-ligatures: common-ligatures discretionary-ligatures historical-ligatures;
}
@media (width >= 25em) {
  body {
    font-size: var(--fs-base);
  }
}

/**
 * Informational background colors
 */
.el-info {
  background-color: var(--clr-info);
}
.el-info:hover {
  filter: brightness(0.95);
}

.el-success {
  background-color: var(--clr-success);
}
.el-success:hover {
  filter: brightness(0.95);
}

.el-warning {
  background-color: var(--clr-warning);
}
.el-warning:hover {
  filter: brightness(0.95);
}

.el-danger {
  background-color: var(--clr-danger);
}
.el-danger:hover {
  filter: brightness(0.95);
}

/**
 * Paragraphs
 */
p {
  font-family: var(--fs-base);
  font-size: var(--fs-base);
  margin-top: 0;
  margin-bottom: 2rem;
}

/**
 * Headings
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--ff-headings);
  font-weight: var(--fw-700);
  line-height: 110%;
  text-rendering: optimizelegibility;
  margin-top: 0;
  margin-bottom: 2rem;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-weight: var(--fw-base);
}

h1,
.h1,
.alpha {
  font-size: var(--fs-jumbo);
  margin-bottom: 4rem;
}

h2,
.h2,
.beta {
  font-size: var(--fs-large);
}

h3,
.h3,
.gamma {
  font-size: var(--fs-mid);
}

h4,
.h4,
.delta {
  font-size: var(--fs-base);
}

h5,
.h5,
.epsilon,
h6,
.h6,
.zeta {
  font-size: var(--fs-small);
  margin-bottom: 0;
}

* + h1,
* + .h1,
* + .alpha,
* + h2,
* + .h2,
* + .beta,
* + h3,
* + .h3,
* + .gamma,
* + h4,
* + .h4,
* + .delta {
  margin-top: 2rem;
}

small {
  font-size: 80%;
}

/**
 * Miscellaneous
 */
strong,
b {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

abbr[title] {
  border-bottom: 1px dotted #ddd;
  cursor: help;
}

/**
 * Blockquotes
 */
blockquote {
  padding-left: 10px;
  margin: 2rem;
  border-left: 4px solid #cccccc;
}
blockquote p {
  margin-bottom: 0;
  font-size: var(--fs-base);
  font-weight: 300;
}
blockquote small {
  display: block;
  color: #b3b3b3;
}
blockquote small::before {
  content: "— ";
}

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

cite {
  font-style: normal;
}

dfn {
  font-style: italic;
}

mark {
  background: yellow;
  padding: 2px 4px;
  border-radius: 3px;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

samp {
  font-family: var(--ff-mono);
}

/**
 * Utilities
 */
.text-centre,
.text-center {
  text-align: center;
}

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

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

hr {
  margin: 2rem 0;
  border: 0;
  height: 1px;
  background-color: var(--clr-dark-700);
}

.hyphenate {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

input {
  line-height: 2rem;
}

/* === Sidebar === */
.sidebar {
  top: 0;
  bottom: 0;
  overflow-y: scroll;
  width: var(--width-sb);
  padding-inline: var(--gap-2);
  position: fixed;
  background: var(--bg-color-sidebar);
}
.sidebar .sidebar-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1rem;
  height: 4rem;
}
.sidebar .sidebar-top .logo {
  display: block;
  width: 70%;
}
.sidebar .sidebar-top .logo img {
  width: 100%;
}
.sidebar .sidebar-top .menu {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  text-align: end;
  color: var(--font-color-sidebar);
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidebar .sidebar-top .menu i {
  position: absolute;
  width: var(--size-6);
  height: var(--size-6);
  font-size: var(--size-6);
  opacity: 0.6;
}
.sidebar .sidebar-top .menu i:hover, .sidebar .sidebar-top .menu i:focus {
  cursor: pointer;
  color: var(--clr-accent-pink-bright);
  opacity: 1;
  transition: color 200ms ease-in-out;
}
.sidebar .sidebar-top .menu .hidden {
  display: none;
}
.sidebar .sidebar-top .logo-mobile {
  display: none;
}
.sidebar .menu-items {
  margin-top: var(--gap-4);
}
.sidebar .menu-items ul {
  color: var(--font-color-sidebar);
}
.sidebar .menu-items ul li {
  line-height: var(--size-5);
  font-size: var(--size-5);
  padding: var(--gap-3) 0;
}
.sidebar .menu-items ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}
.sidebar .menu-items ul li a:hover, .sidebar .menu-items ul li a:focus {
  cursor: pointer;
  color: var(--clr-accent-pink-bright);
  opacity: 1;
  transition: color 200ms ease-in-out;
}
.sidebar .menu-items ul li a i {
  height: var(--size-6);
  max-height: var(--size-6);
  aspect-ratio: 1/1;
  padding: var(--gap-1) var(--gap-1);
}
.sidebar .menu-items ul li a .menu-title {
  position: relative;
  display: block;
  line-height: var(--size-5);
  padding-left: var(--gap-4);
  text-transform: capitalize;
  overflow-x: hidden;
  margin-bottom: 0;
}
.sidebar .menu-items ul li .submenu-items {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms;
}
.sidebar .menu-items ul li .submenu-items a {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin-left: var(--gap-8);
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
  font-size: var(--fs-narrow);
  overflow: hidden;
}
.sidebar .menu-items ul li .submenu-items a:hover, .sidebar .menu-items ul li .submenu-items a:focus {
  cursor: pointer;
  background: linear-gradient(90deg, var(--clr-accent-primary), transparent);
  transition: background-color 200ms ease-in-out;
}
.sidebar .menu-items ul li .submenu-items a i {
  height: var(--size-6);
  max-height: var(--size-6);
  aspect-ratio: 1/1;
  padding: var(--gap-1) var(--gap-1);
}
.sidebar .menu-items ul li .submenu-items a .submenu-title {
  display: block;
  line-height: var(--size-5);
  padding: var(--gap-1) var(--gap-1);
  font-size: var(--fs-narrow);
  text-transform: capitalize;
  margin-bottom: 0;
  overflow-x: hidden;
}
.sidebar .menu-items ul li .submenu-items a .submenu-title::before {
  content: "";
}
.sidebar .menu-items ul li .submenu-items[aria-hidden=false] {
  grid-template-rows: 1fr;
}
.sidebar .menu-items ul li .submenu-items > div {
  overflow: hidden;
}

.collapse .sidebar {
  --width-sb: 3rem;
  text-align: center;
}
.collapse .sidebar .logo, .collapse .sidebar p {
  display: none;
}
.collapse .sidebar .menu-items ul li a .menu-title {
  display: none;
}
.collapse .sidebar .menu-items ul li .submenu-items {
  display: none;
}

.panel {
  width: 100vw;
  margin-left: var(--width-sb);
  padding: 0;
}

.collapse .panel {
  --width-sb: 3rem;
}

main {
  padding-top: calc(var(--size-8) / 6);
  padding-inline: var(--gap-2);
  margin-top: var(--gap-2);
}

header {
  padding-top: 1rem;
  height: 4rem;
  padding-inline: var(--gap-2);
  font-family: var(--ff-headings);
  font-size: var(--fs-mid);
  font-weight: var(--fw-700);
  color: var(--clr-text);
  text-transform: uppercase;
  background-color: var(--clr-light-100);
  border-bottom: solid 1px var(--clr-light-300);
}

nav {
  height: var(--size-8);
  padding-top: calc(var(--size-8) / 6);
  padding-inline: var(--gap-2);
  font-family: var(--ff-headings);
  font-size: var(--fs-base);
  font-weight: var(--fw-base);
  color: var(--clr-text);
  text-transform: capitalize;
  background-color: var(--clr-light-100);
  box-shadow: 0 4px 6px -6px var(--clr-shadow);
}
nav:hover {
  color: var(--clr-accent-pink-bright);
}

form {
  position: relative;
  background-color: var(--clr-light-100);
  border-radius: var(--size-1);
  color: var(--clr-text);
  box-shadow: 0 4px 6px -6px var(--clr-shadow);
  padding: var(--size-4);
  overflow: hidden;
}
form .top-accent {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: var(--size-1);
  background-color: var(--clr-accent-pink-bright);
}
form .title {
  text-transform: uppercase;
  color: inherit;
}
form .frm-elements {
  padding: var(--size-4) 0;
  border-top: 1px dotted var(--clr-text);
  border-bottom: 1px dotted var(--clr-text);
}

input[type=checkbox] {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: var(--clr-frm-el);
  line-height: 110%;
  height: var(--size-4);
  width: var(--size-6);
  outline: 2px solid var(--clr-frm-el);
  outline-offset: 2px;
  border-radius: var(--size-2);
  margin-right: 2rem;
}
input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  height: 18px;
  width: 18px;
  background-color: var(--clr-light-100);
  border-radius: 50%;
  transition: left 500ms ease;
}
input[type=checkbox]:checked {
  background-color: var(--clr-success);
  outline: 2px solid var(--clr-success);
}
input[type=checkbox]:checked::after {
  content: "";
  left: 50%;
}

input[type=radio] {
  position: relative;
  margin-right: 2rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 2px solid var(--clr-frm-el);
  outline-offset: 2px;
  height: var(--size-4);
  width: var(--size-4);
  border-radius: 50%;
  transition: background-color 200ms ease;
}
input[type=radio]:checked {
  background-color: var(--clr-info);
  outline: 2px solid var(--clr-info);
}

input[type=button], .btn {
  width: auto;
  min-width: 6.25rem;
  height: 2rem;
  padding: 0 var(--size-5);
  color: var(--clr-light-100);
  font-size: var(--fs-base);
  font-weight: var(--fw-400);
  margin-right: var(--size-6);
  border-radius: var(--size-4);
  border: 0;
  transition: opacity 200ms ease-in-out;
}
input[type=button]:hover, .btn:hover {
  filter: brightness(0.95);
}

.widget-board {
  position: relative;
  padding: var(--size-2);
  margin-bottom: var(--size-4);
  background-color: var(--clr-light-100);
  color: var(--clr-text);
  border-radius: var(--size-1);
  box-shadow: 0 4px 6px -6px var(--clr-shadow);
  box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.widget-board .top-accent {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: var(--size-1);
  background-color: var(--clr-info);
}
.widget-board .header {
  font-family: var(--ff-headings);
  font-size: var(--fs-narrow);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  color: var(--clr-text);
  padding: var(--size-2) var(--size-2);
  border-bottom: 1px solid var(--clr-text-header);
  margin-bottom: var(--size-4);
}
.widget-board .grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-auto-flow: column;
  gap: var(--gap-4);
}
.widget-board .grid p {
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px dotted var(--clr-text-header);
  border-radius: var(--size-2);
}/*# sourceMappingURL=main.css.map */