/*
  Font family is Nunito Sans. Its fallback is Helvetica
*/
/*
  Font sizes have been converted to rem considering a base size of 16px.
*/
/*
*  Z-Index
*  
*  The z-index CSS property sets the z-order of a positioned element and its descendants or flex items. 
*  Overlapping elements with a larger z-index cover those with a smaller one.
*  
*  REF: https://developer.mozilla.org/en-US/docs/Web/CSS/z-index
*  REF: https://www.smashingmagazine.com/2019/04/z-index-component-based-web-application/  
*/
/**
 * Define media query values
 */
/** Customs */
/** Animations */
/** Aligns */
/** Scoll Bar */
/** Hover & Pressed */
.sidebar_dialog {
  width: 100%;
  height: 100vh;
  box-shadow: 0px 6px 16px -4px var(--color-shadow-1, rgba(0, 0, 0, 0.16));
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  display: none;
}
.sidebar_dialog.type_over {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80000;
}
.sidebar_dialog.type_over .sidebar {
  z-index: 90000;
}
.sidebar_dialog.type_fixed {
  width: fit-content;
  position: relative;
  height: 100%;
  box-shadow: none;
}
.sidebar_dialog.is_open {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.sidebar_dialog .outzone {
  order: 2;
  width: 100%;
  height: 100vh;
}
.sidebar_dialog .sidebar {
  width: 360px;
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  background-color: var(--color-surface-2, #ededed);
  flex-shrink: 0;
}
.sidebar_dialog .sidebar.position_left {
  order: 1;
}
.sidebar_dialog .sidebar.position_right {
  order: 3;
}
.sidebar_dialog .sidebar.background_surface-0 {
  background-color: var(--color-surface-0, white);
}
.sidebar_dialog .sidebar.background_surface-1 {
  background-color: var(--color-surface-1, #f6f6f6);
}
.sidebar_dialog .sidebar.background_surface-2 {
  background-color: var(--color-surface-2, #ededed);
}
.sidebar_dialog .sidebar.background_surface-3 {
  background-color: var(--color-surface-3, #e3e3e3);
}
.sidebar_dialog .sidebar.background_surface-4 {
  background-color: var(--color-surface-4, #141414);
}
.sidebar_dialog .sidebar.type_fixed {
  width: 288px;
}
.sidebar_dialog .sidebar .header {
  display: flex;
  align-content: center;
  justify-content: space-between;
  padding: 24px;
}
.sidebar_dialog .sidebar .header .content {
  display: flex;
  width: 100%;
  align-items: center;
  position: relative;
  color: var(--color-content-default, #282828);
}
.sidebar_dialog .sidebar .header .content ::slotted(*) {
  width: 100%;
}
.sidebar_dialog .sidebar .header .closeButton {
  border-radius: 8px;
  contain: inherit;
  -webkit-transition: height 0.5s, all 0.3s;
  -moz-transition: height 0.5s, all 0.3s;
  transition: height 0.5s, all 0.3s;
  z-index: 1;
  cursor: pointer;
  color: var(--color-content-default, #282828);
}
.sidebar_dialog .sidebar .body {
  position: relative;
  flex: 1 1 auto;
}
.sidebar_dialog .sidebar .body .content {
  position: absolute;
  inset: 0;
  z-index: 999999;
  overflow-y: overlay;
  overflow-x: clip;
}
.sidebar_dialog .sidebar .body .content::-webkit-scrollbar {
  width: 16px;
  background-color: var(--color-shadow-0, rgba(0, 0, 0, 0.04));
  border-radius: 10px;
}
.sidebar_dialog .sidebar .body .content::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: 4px solid transparent;
  border-radius: 10px;
  background-clip: content-box;
  background-color: var(--color-border-1, rgba(0, 0, 0, 0.2));
}
.sidebar_dialog .sidebar .body .margin {
  padding: 8px 24px;
}
.sidebar_dialog .sidebar .footer .content {
  padding: 24px;
}
.sidebar_dialog .sidebar .footer .content ::slotted(*) {
  height: 40px;
  overflow: hidden;
}
.sidebar_dialog .sidebar.is_open.position_left {
  right: calc(100% - 360px);
}
.sidebar_dialog .sidebar.is_open.position_right {
  left: calc(100% - 360px);
}