/*
  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
 */
.menu {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  padding: 2px;
  background-color: var(--color-surface-1, #f6f6f6);
  border-radius: 8px;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.08);
  width: 240px;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
  z-index: 90000;
}
.menu__open {
  pointer-events: auto;
  opacity: 1;
}

.outzone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 80000;
}