:root {
  --body-fg: #333;
  --body-bg: #fff;
  --body-quiet-color: #666;
  --body-loud-color: #000;
}

@media (prefers-color-scheme: light) {
  :root {
    --body-fg: #333;
    --body-bg: #fff;
    --body-quiet-color: #666;
    --body-loud-color: #000;
    --success-fg: #895A74;
    --success-color: rgb(90, 137, 111);
    --error-color: rgb(255, 53, 94);
    --link-fg: #587d94;
    --link-visited-fg: #895A74;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --body-fg: #fff;
    --body-bg: #333;
    --body-quiet-color: #000;
    --body-loud-color: #666;
    --success-fg: #895A74;
    --success-color: rgb(90, 137, 111);
    --error-color: rgb(255, 53, 94);
    --link-fg: #4285F4;
    --link-visited-fg: #895A74;
  }
  a:link, a:visited {
    color: #4285F4;
  }
  a:hover {
    color: rgb(90, 137, 111);
  }
}
/* < 576 */
/* > 576 < 768 */
/* > 768 < 992 */
/* > 992 < 1200 */
/* > 1200 < 1400 */
/* > 1400 */
/* < 576 */
/* > 576 < 768 */
/* > 768 < 992 */
/* > 992 < 1200 */
/* > 1200 < 1400 */
/* > 1400 */
/* Bases for modals */
.columns {
  display: flex;
  flex-direction: row;
}

.stretch-column {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.container, .container-fluid {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1320px;
}

.row {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  box-sizing: border-box;
}
.row [class*=col-], .row .col {
  box-sizing: border-box;
}
.row .col-12 {
  flex: 100% 0 0;
  max-width: 100%;
}
.row .col-11 {
  flex: calc(91.6666666667% - 0.25em) 0 0;
  max-width: calc(91.6666666667% - 0.25em);
}
.row .col-10 {
  flex: calc(83.3333333333% - 0.25em) 0 0;
  max-width: calc(83.3333333333% - 0.25em);
}
.row .col-9 {
  flex: calc(75% - 0.25em) 0 0;
  max-width: calc(75% - 0.25em);
}
.row .col-8 {
  flex: calc(66.6666666667% - 0.25em) 0 0;
  max-width: calc(66.6666666667% - 0.25em);
}
.row .col-7 {
  flex: calc(58.3333333333% - 0.25em) 0 0;
  max-width: calc(58.3333333333% - 0.25em);
}
.row .col-6 {
  flex: calc(50% - 0.25em) 0 0;
  max-width: calc(50% - 0.25em);
}
.row .col-5 {
  flex: calc(41.6666666667% - 0.25em) 0 0;
  max-width: calc(41.6666666667% - 0.25em);
}
.row .col-4 {
  flex: calc(33.3333333333% - 0.25em) 0 0;
  max-width: calc(33.3333333333% - 0.25em);
}
.row .col-3 {
  flex: calc(25% - 0.25em) 0 0;
  max-width: calc(25% - 0.25em);
}
.row .col-2 {
  flex: calc(16.6666666667% - 0.25em) 0 0;
  max-width: calc(16.6666666667% - 0.25em);
}
.row .col-1 {
  flex: calc(8.3333333333% - 0.25em) 0 0;
  max-width: calc(8.3333333333% - 0.25em);
}

@media (max-width: 576px) {
  body {
    margin: 0;
    padding: 0;
  }
  .container .row {
    width: 100%;
  }
  .container .row [class*=col-], .container .row .col {
    padding-left: 0;
    padding-right: 0;
  }
  .hidden-xs {
    display: none !important;
  }
  .col-xs-12 {
    flex: 100% 0 0 !important;
    max-width: 100% !important;
  }
  .col-xs-11 {
    flex: calc(91.6666666667% - 0.25em) 0 0 !important;
    max-width: calc(91.6666666667% - 0.25em) !important;
  }
  .col-xs-10 {
    flex: calc(83.3333333333% - 0.25em) 0 0 !important;
    max-width: calc(83.3333333333% - 0.25em) !important;
  }
  .col-xs-9 {
    flex: calc(75% - 0.25em) 0 0 !important;
    max-width: calc(75% - 0.25em) !important;
  }
  .col-xs-8 {
    flex: calc(66.6666666667% - 0.25em) 0 0 !important;
    max-width: calc(66.6666666667% - 0.25em) !important;
  }
  .col-xs-7 {
    flex: calc(58.3333333333% - 0.25em) 0 0 !important;
    max-width: calc(58.3333333333% - 0.25em) !important;
  }
  .col-xs-6 {
    flex: calc(50% - 0.25em) 0 0 !important;
    max-width: calc(50% - 0.25em) !important;
  }
  .col-xs-5 {
    flex: calc(41.6666666667% - 0.25em) 0 0 !important;
    max-width: calc(41.6666666667% - 0.25em) !important;
  }
  .col-xs-4 {
    flex: calc(33.3333333333% - 0.25em) 0 0 !important;
    max-width: calc(33.3333333333% - 0.25em) !important;
  }
  .col-xs-3 {
    flex: calc(25% - 0.25em) 0 0 !important;
    max-width: calc(25% - 0.25em) !important;
  }
  .col-xs-2 {
    flex: calc(16.6666666667% - 0.25em) 0 0 !important;
    max-width: calc(16.6666666667% - 0.25em) !important;
  }
  .col-xs-1 {
    flex: calc(8.3333333333% - 0.25em) 0 0 !important;
    max-width: calc(8.3333333333% - 0.25em) !important;
  }
}
@media (min-width: 576px) {
  .col-sm-12 {
    flex: 100% 0 0 !important;
    max-width: 100% !important;
  }
  .col-sm-11 {
    flex: calc(91.6666666667% - 0.25em) 0 0 !important;
    max-width: calc(91.6666666667% - 0.25em) !important;
  }
  .col-sm-10 {
    flex: calc(83.3333333333% - 0.25em) 0 0 !important;
    max-width: calc(83.3333333333% - 0.25em) !important;
  }
  .col-sm-9 {
    flex: calc(75% - 0.25em) 0 0 !important;
    max-width: calc(75% - 0.25em) !important;
  }
  .col-sm-8 {
    flex: calc(66.6666666667% - 0.25em) 0 0 !important;
    max-width: calc(66.6666666667% - 0.25em) !important;
  }
  .col-sm-7 {
    flex: calc(58.3333333333% - 0.25em) 0 0 !important;
    max-width: calc(58.3333333333% - 0.25em) !important;
  }
  .col-sm-6 {
    flex: calc(50% - 0.25em) 0 0 !important;
    max-width: calc(50% - 0.25em) !important;
  }
  .col-sm-5 {
    flex: calc(41.6666666667% - 0.25em) 0 0 !important;
    max-width: calc(41.6666666667% - 0.25em) !important;
  }
  .col-sm-4 {
    flex: calc(33.3333333333% - 0.25em) 0 0 !important;
    max-width: calc(33.3333333333% - 0.25em) !important;
  }
  .col-sm-3 {
    flex: calc(25% - 0.25em) 0 0 !important;
    max-width: calc(25% - 0.25em) !important;
  }
  .col-sm-2 {
    flex: calc(16.6666666667% - 0.25em) 0 0 !important;
    max-width: calc(16.6666666667% - 0.25em) !important;
  }
  .col-sm-1 {
    flex: calc(8.3333333333% - 0.25em) 0 0 !important;
    max-width: calc(8.3333333333% - 0.25em) !important;
  }
}
:root {
  --body-fg: #333;
  --body-bg: #fff;
  --body-quiet-color: #666;
  --body-loud-color: #000;
}

@media (prefers-color-scheme: light) {
  :root {
    --body-fg: #333;
    --body-bg: #fff;
    --body-quiet-color: #666;
    --body-loud-color: #000;
    --success-fg: #895A74;
    --success-color: rgb(90, 137, 111);
    --error-color: rgb(255, 53, 94);
    --link-fg: #587d94;
    --link-visited-fg: #895A74;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --body-fg: #fff;
    --body-bg: #333;
    --body-quiet-color: #000;
    --body-loud-color: #666;
    --success-fg: #895A74;
    --success-color: rgb(90, 137, 111);
    --error-color: rgb(255, 53, 94);
    --link-fg: #4285F4;
    --link-visited-fg: #895A74;
  }
  a:link, a:visited {
    color: #4285F4;
  }
  a:hover {
    color: rgb(90, 137, 111);
  }
}
/* < 576 */
/* > 576 < 768 */
/* > 768 < 992 */
/* > 992 < 1200 */
/* > 1200 < 1400 */
/* > 1400 */
/* Bases for modals */
input[type=email],
input[type=text],
input[type=password],
input[type=number],
input[type=date],
input[type=tel],
input[type=url],
input[type=search],
input[type=color],
input[type=submit],
select,
textarea, button, .btn {
  margin: 10px;
  padding: 10px;
  border-radius: 0.5em;
  border: 1px solid var(--body-quiet-color);
}

input[type=submit], .btn, button {
  cursor: pointer;
  display: inline-block;
  border: 1px solid var(--body-quiet-color);
  text-decoration: none;
  font: bold 1em "Open Sans", Helvetica, Arial, sans-serif;
}

.btn-primary {
  color: #FFFFFF !important;
  background: #587d94 !important;
}
.btn-primary img {
  filter: invert(98%) sepia(4%) saturate(201%) hue-rotate(87deg) brightness(113%) contrast(100%);
}

.btn-outline {
  color: var(--body-fg) !important;
  background: var(--body-bg) !important;
  border: 1px solid var(--body-fg) !important;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin: 10px 10px auto 10px;
}
.form-group label ~ .input-group input {
  margin-top: auto !important;
}
.form-group .input-group {
  width: 100%;
}
.form-group .input-group input {
  width: 100%;
}

.help-block {
  font-size: 0.75em;
  color: #587d94;
  font-style: italic;
}

/* < 576 */
/* > 576 < 768 */
/* > 768 < 992 */
/* > 992 < 1200 */
/* > 1200 < 1400 */
/* > 1400 */
/* Bases for modals */
:root {
  --body-fg: #333;
  --body-bg: #fff;
  --body-quiet-color: #666;
  --body-loud-color: #000;
}

@media (prefers-color-scheme: light) {
  :root {
    --body-fg: #333;
    --body-bg: #fff;
    --body-quiet-color: #666;
    --body-loud-color: #000;
    --success-fg: #895A74;
    --success-color: rgb(90, 137, 111);
    --error-color: rgb(255, 53, 94);
    --link-fg: #587d94;
    --link-visited-fg: #895A74;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --body-fg: #fff;
    --body-bg: #333;
    --body-quiet-color: #000;
    --body-loud-color: #666;
    --success-fg: #895A74;
    --success-color: rgb(90, 137, 111);
    --error-color: rgb(255, 53, 94);
    --link-fg: #4285F4;
    --link-visited-fg: #895A74;
  }
  a:link, a:visited {
    color: #4285F4;
  }
  a:hover {
    color: rgb(90, 137, 111);
  }
}
@keyframes slideDown {
  1% {
    height: 5%;
  }
  80% {
    height: 115%;
  }
  100% {
    height: 100%;
  }
}
@keyframes fadeIn {
  1% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes fadeOut {
  1% {
    opacity: 100%;
  }
  100% {
    opacity: 0;
  }
}
@keyframes flipInFromRight {
  1% {
    transform: translateX(100%) rotate(360deg);
  }
  80% {
    transform: translateX(-15%) rotate(-15deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes flipInFromLeft {
  1% {
    transform: translateX(-100%) rotate(-360deg);
  }
  80% {
    transform: translateX(15%) rotate(15deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes slideInFromRight {
  1% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInFromLeft {
  1% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes mobileMenuSlideOut {
  1% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(calc(-90% + 2em));
  }
}
@keyframes fadeSlideInFromLeft {
  1% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 100%;
    transform: translateX(0);
  }
}
@keyframes bounceInFromLeft {
  1% {
    transform: translateX(-100%);
  }
  75% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideOutToLeft {
  1% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: var(--body-fg);
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--body-fg);
  }
  100% {
    border-color: transparent;
  }
}
.message {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  animation: fadeIn 0.5s;
  margin: 0.5em;
  padding: 0.5em;
  border-radius: 0.5em;
}

.message-debug {
  color: var(--body-fg);
  background: var(--body-quiet-color);
}

.message-error {
  color: #000;
  background: rgb(255, 53, 94);
}

.message-info {
  color: #fff;
  background: #587d94;
}

.message-success {
  color: #000;
  background: rgb(90, 137, 111);
}

.message-warning {
  color: #000;
  background: #f39c12;
}

/* < 576 */
/* > 576 < 768 */
/* > 768 < 992 */
/* > 992 < 1200 */
/* > 1200 < 1400 */
/* > 1400 */
.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.navbar {
  box-sizing: border-box;
}

.navbar-dark {
  color: #ffffff;
}
.navbar-dark a {
  color: #ffffff;
}
.navbar-dark .navbar-brand {
  color: #ffffff;
}

.bg-dark {
  background-color: #414141;
}

nav.bg-dark {
  box-shadow: 0 9px 15px rgba(0, 0, 0, 0.4);
}

@media (max-width: 576px) {
  body {
    display: flex;
    flex-direction: column;
  }
  .navbar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    padding: 10px;
  }
  .navbar-brand {
    font-size: 2em;
  }
  .nav-toggle-control {
    display: none !important;
  }
  .nav-toggle-button {
    width: 45px;
    font-size: 2em;
  }
  .navbar-collapse {
    display: none;
    width: 0;
  }
  .nav-toggle-control:checked ~ .navbar-collapse {
    display: flex !important;
    flex-direction: column;
    flex: 100% 0 0;
  }
  .nav-item {
    padding: 10px 0;
  }
}
@media (min-width: 576px) {
  .navbar {
    display: flex;
    flex-direction: row;
    padding: 1em;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .navbar .navbar-brand {
    display: block;
    text-decoration: none;
  }
  .navbar .navbar-toggler, .navbar .nav-toggle-control, .navbar .nav-toggle-button {
    display: none;
    align-self: flex-end;
  }
  .navbar .navbar-collapse {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }
  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    font-size: 0.75em;
    margin: 0;
    padding: 0;
  }
  .navbar .navbar-nav .nav-item {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .navbar .navbar-nav .nav-item a {
    text-decoration: none;
  }
  .navbar-expand {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    width: 100%;
  }
}
/* < 576 */
/* > 576 < 768 */
/* > 768 < 992 */
/* > 992 < 1200 */
/* > 1200 < 1400 */
/* > 1400 */
.nav-profile {
  margin-left: auto;
  position: fixed;
  display: flex;
  flex-direction: column;
  right: 1em;
}
.nav-profile .toggle-control {
  display: none;
}
.nav-profile .toggle-control:checked ~ .profile-menu {
  display: flex !important;
  flex-direction: column;
}
.nav-profile .profile-menu {
  display: none;
  background: #333333;
  position: relative;
  top: 1em;
  z-index: 99;
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
}
.nav-profile .profile-menu .menu-item {
  padding: 1em;
}

@media (max-width: 768px) {
  .nav-profile {
    right: 70px;
  }
}
.login-container {
  display: flex;
  justify-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.login-container #login-box {
  border: 1px solid #dcdcdc;
  box-sizing: border-box;
  padding: 1em;
  width: 500px;
  display: flex;
  flex-direction: column;
}
.login-container #login-box .login {
  display: flex;
  flex-direction: column;
}
.login-container #login-box .login .submit-group {
  justify-content: center !important;
}
.login-container #login-box .login .form-group {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.login-container #login-box .login .form-group label {
  flex: 25% 0 0;
  text-align: right;
}
.login-container #login-box .login .form-group .form-check {
  display: flex;
  justify-items: center;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.login-container #login-box .login .form-group .form-check label {
  width: auto;
}
.login-container #login-box .socialaccount_providers {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.login-container #login-box .socialaccount_providers .socialaccount_provider {
  padding: 0.5em 1em;
  margin: 1em;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
}

/* < 576 */
/* > 576 < 768 */
/* > 768 < 992 */
/* > 992 < 1200 */
/* > 1200 < 1400 */
/* > 1400 */
/* Bases for modals */
:root {
  --body-fg: #333;
  --body-bg: #fff;
  --body-quiet-color: #666;
  --body-loud-color: #000;
}

@media (prefers-color-scheme: light) {
  :root {
    --body-fg: #333;
    --body-bg: #fff;
    --body-quiet-color: #666;
    --body-loud-color: #000;
    --success-fg: #895A74;
    --success-color: rgb(90, 137, 111);
    --error-color: rgb(255, 53, 94);
    --link-fg: #587d94;
    --link-visited-fg: #895A74;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --body-fg: #fff;
    --body-bg: #333;
    --body-quiet-color: #000;
    --body-loud-color: #666;
    --success-fg: #895A74;
    --success-color: rgb(90, 137, 111);
    --error-color: rgb(255, 53, 94);
    --link-fg: #4285F4;
    --link-visited-fg: #895A74;
  }
  a:link, a:visited {
    color: #4285F4;
  }
  a:hover {
    color: rgb(90, 137, 111);
  }
}
@keyframes slideDown {
  1% {
    height: 5%;
  }
  80% {
    height: 115%;
  }
  100% {
    height: 100%;
  }
}
@keyframes fadeIn {
  1% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes fadeOut {
  1% {
    opacity: 100%;
  }
  100% {
    opacity: 0;
  }
}
@keyframes flipInFromRight {
  1% {
    transform: translateX(100%) rotate(360deg);
  }
  80% {
    transform: translateX(-15%) rotate(-15deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes flipInFromLeft {
  1% {
    transform: translateX(-100%) rotate(-360deg);
  }
  80% {
    transform: translateX(15%) rotate(15deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes slideInFromRight {
  1% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInFromLeft {
  1% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes mobileMenuSlideOut {
  1% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(calc(-90% + 2em));
  }
}
@keyframes fadeSlideInFromLeft {
  1% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 100%;
    transform: translateX(0);
  }
}
@keyframes bounceInFromLeft {
  1% {
    transform: translateX(-100%);
  }
  75% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideOutToLeft {
  1% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: var(--body-fg);
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--body-fg);
  }
  100% {
    border-color: transparent;
  }
}
.sidebar {
  padding: 1em;
}
.sidebar .sidebar-container {
  position: relative;
  z-index: 999;
  background: var(--body-loud-color);
  border-radius: 0.5em;
  background-clip: content-box;
}
.sidebar .sidebar-container .sidebar-item {
  padding: 0.75em;
}
.sidebar .sidebar-container .sidebar-item a:link, .sidebar .sidebar-container .sidebar-item a:visited {
  color: var(--body-fg);
  text-decoration: none;
}
.sidebar .sidebar-container .sidebar-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
.sidebar .sidebar-container .sidebar-item .icon img, .sidebar .sidebar-container .sidebar-item .icon .user-icon {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.sidebar .sidebar-container .sidebar-item .icon img img, .sidebar .sidebar-container .sidebar-item .icon .user-icon img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.sidebar .sidebar-container .sidebar-item .icon img .user-initial, .sidebar .sidebar-container .sidebar-item .icon .user-icon .user-initial {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: var(--body-bg);
  background-color: var(--body-fg);
  display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
}
.sidebar .sidebar-container .sidebar-item .icon img[src$=svg] {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 900;
  }
  .sidebar .sidebar-container {
    display: flex;
    flex-direction: row;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  }
  .sidebar .sidebar-container .sidebar-item .label {
    display: none;
  }
}
@media (min-width: 768px) {
  .sidebar {
    min-width: 96px;
  }
  .sidebar .sidebar-container {
    width: auto;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-items: stretch;
    align-items: flex-start;
  }
  .sidebar .sidebar-container .sidebar-item, .sidebar .sidebar-container .sidebar-item a {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .sidebar .sidebar-container .sidebar-item .icon, .sidebar .sidebar-container .sidebar-item a .icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .sidebar .sidebar-container .sidebar-item .label, .sidebar .sidebar-container .sidebar-item a .label {
    display: none;
    white-space: nowrap;
  }
  .sidebar .sidebar-container .sidebar-item .label a, .sidebar .sidebar-container .sidebar-item a .label a {
    display: none;
  }
  .sidebar .sidebar-container .sidebar-item.user-sidebar-item.authenticated {
    align-items: flex-start !important;
  }
  .sidebar .sidebar-container hr {
    width: 100%;
  }
  .sidebar:hover .icon {
    margin-right: 1em;
  }
  .sidebar:hover .label {
    animation: fadeSlideInFromLeft 0.5s;
    display: flex !important;
    flex-direction: column;
  }
  .sidebar:hover .label .user-link {
    display: block;
    padding: 0.5em 0 0.5em 0;
  }
  .sidebar:hover .label a {
    display: inline-block !important;
  }
}
:root {
  --body-fg: #333;
  --body-bg: #fff;
  --body-quiet-color: #666;
  --body-loud-color: #000;
}

@media (prefers-color-scheme: light) {
  :root {
    --body-fg: #333;
    --body-bg: #fff;
    --body-quiet-color: #666;
    --body-loud-color: #000;
    --success-fg: #895A74;
    --success-color: rgb(90, 137, 111);
    --error-color: rgb(255, 53, 94);
    --link-fg: #587d94;
    --link-visited-fg: #895A74;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --body-fg: #fff;
    --body-bg: #333;
    --body-quiet-color: #000;
    --body-loud-color: #666;
    --success-fg: #895A74;
    --success-color: rgb(90, 137, 111);
    --error-color: rgb(255, 53, 94);
    --link-fg: #4285F4;
    --link-visited-fg: #895A74;
  }
  a:link, a:visited {
    color: #4285F4;
  }
  a:hover {
    color: rgb(90, 137, 111);
  }
}
/* < 576 */
/* > 576 < 768 */
/* > 768 < 992 */
/* > 992 < 1200 */
/* > 1200 < 1400 */
/* > 1400 */
/* Bases for modals */
.user-menu {
  position: absolute;
}
.user-menu .user-info {
  display: flex;
}
.user-menu .user-info .user-username {
  color: var(--body-fg);
  background: var(--body-loud-color);
}
.user-menu .user-info .user-icon {
  text-transform: uppercase;
  font-weight: bold;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  color: var(--body-fg);
  background: var(--body-loud-color);
}
.user-menu .user-info .user-icon img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .user-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2b2b2b;
    top: 0;
    left: 0;
    width: 100%;
  }
  .user-menu .label {
    display: none;
  }
  .user-menu .auth-button {
    position: absolute;
    top: 1em;
    right: 1em;
  }
  .user-menu .user-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .user-menu .user-info .user-username {
    border-radius: 0.5em;
    padding: 1em 0.5em 0.5em 0.5em;
    border: 1.5px solid var(--body-fg);
    order: 2;
    position: relative;
    right: 0;
    top: -1em;
  }
  .user-menu .user-info .user-icon {
    border-top: 1.5px solid var(--body-fg);
    border-right: 1.5px solid var(--body-fg);
    border-left: 1.5px solid var(--body-fg);
    order: 1;
    position: relative;
    z-index: 999;
  }
  .content-container {
    margin-top: calc(75px + 1em) !important;
  }
}
@media (min-width: 768px) {
  .user-menu {
    top: 1em;
    right: 1em;
  }
  .user-menu .user-info {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .user-menu .user-info .user-username {
    padding: 0.5em 1em 0.5em 0.5em;
    border-top: 1.5px solid var(--body-fg);
    border-bottom: 1.5px solid var(--body-fg);
    border-left: 1.5px solid var(--body-fg);
    border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
  }
  .user-menu .user-info .user-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: -0.5em;
    border-top: 1.5px solid var(--body-fg);
    border-right: 1.5px solid var(--body-fg);
    border-bottom: 1.5px solid var(--body-fg);
  }
}
/* Bases for modals */
#notification-permission-dialog-control {
  display: none;
}

.notification-permission-dialog {
  display: none;
}

#notification-permission-dialog-control:checked ~ .notification-permission-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #333333;
  background: #FFFFCC;
}

/* < 576 */
/* > 576 < 768 */
/* > 768 < 992 */
/* > 992 < 1200 */
/* > 1200 < 1400 */
/* > 1400 */
/* Bases for modals */
:root {
  --body-fg: #333;
  --body-bg: #fff;
  --body-quiet-color: #666;
  --body-loud-color: #000;
}

@media (prefers-color-scheme: light) {
  :root {
    --body-fg: #333;
    --body-bg: #fff;
    --body-quiet-color: #666;
    --body-loud-color: #000;
    --success-fg: #895A74;
    --success-color: rgb(90, 137, 111);
    --error-color: rgb(255, 53, 94);
    --link-fg: #587d94;
    --link-visited-fg: #895A74;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --body-fg: #fff;
    --body-bg: #333;
    --body-quiet-color: #000;
    --body-loud-color: #666;
    --success-fg: #895A74;
    --success-color: rgb(90, 137, 111);
    --error-color: rgb(255, 53, 94);
    --link-fg: #4285F4;
    --link-visited-fg: #895A74;
  }
  a:link, a:visited {
    color: #4285F4;
  }
  a:hover {
    color: rgb(90, 137, 111);
  }
}
@keyframes slideDown {
  1% {
    height: 5%;
  }
  80% {
    height: 115%;
  }
  100% {
    height: 100%;
  }
}
@keyframes fadeIn {
  1% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes fadeOut {
  1% {
    opacity: 100%;
  }
  100% {
    opacity: 0;
  }
}
@keyframes flipInFromRight {
  1% {
    transform: translateX(100%) rotate(360deg);
  }
  80% {
    transform: translateX(-15%) rotate(-15deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes flipInFromLeft {
  1% {
    transform: translateX(-100%) rotate(-360deg);
  }
  80% {
    transform: translateX(15%) rotate(15deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes slideInFromRight {
  1% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInFromLeft {
  1% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes mobileMenuSlideOut {
  1% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(calc(-90% + 2em));
  }
}
@keyframes fadeSlideInFromLeft {
  1% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 100%;
    transform: translateX(0);
  }
}
@keyframes bounceInFromLeft {
  1% {
    transform: translateX(-100%);
  }
  75% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideOutToLeft {
  1% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: var(--body-fg);
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--body-fg);
  }
  100% {
    border-color: transparent;
  }
}
.modal-container {
  display: none;
}
.modal-container #confirm-dialog, .modal-container #input-dialog {
  width: auto;
}
.modal-container #confirm-dialog .modal-row, .modal-container #input-dialog .modal-row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-container #confirm-dialog .modal-row #input-text, .modal-container #input-dialog .modal-row #input-text {
  width: 100%;
}

.modal-control {
  display: none;
}

.modal-control:checked ~ .modal-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 950;
  display: block;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.75);
}
.modal-control:checked ~ .modal-container .modal-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-control:checked ~ .modal-container .modal-content .modal-dialog {
  animation: fadeIn 0.5s;
  color: #323232;
  background: #f1f1f1;
  padding: 0 1em 1em 1em;
  border-radius: 15px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.modal-control:checked ~ .modal-container .modal-content .modal-dialog .modal-controls {
  position: relative;
  top: -0.25em;
  right: -1.25em;
  display: flex;
  justify-content: flex-end;
}
.modal-control:checked ~ .modal-container .modal-content .modal-dialog .modal-controls .modal-close {
  color: #587d94;
}

@media (min-width: 768px) {
  .modal-dialog {
    max-width: 50%;
  }
}
* {
  box-sizing: border-box;
}

html {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
}

body {
  color: var(--body-fg);
  background: var(--body-bg);
  padding: 0;
  margin: 0;
}

.page-container {
  min-height: 100vh;
}
.page-container .content-container {
  padding: 1em;
}

.circle {
  border-radius: 50%;
}

.sr-only {
  display: inline-block;
  width: 0;
  height: 0;
  font-size: 0;
}

@media (max-width: 768px) {
  .content-container {
    margin-top: 70px;
    margin-bottom: 150px;
    padding: 0.5em;
  }
}
@media (min-width: 768px) {
  .page-container {
    display: flex;
    flex-direction: row;
    margin-top: 55px;
    min-height: calc(100vh - 55px);
  }
  .page-container .content-container {
    width: 100%;
  }
}

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