@import "https://unpkg.com/open-props";
@import "https://unpkg.com/open-props/masks.edges.min.css";
/*
@import "https://unpkg.com/open-props/normalize.min.css";
@import "https://unpkg.com/open-props/buttons.min.css";
*/
@font-face {
   font-family: pcbFont;
   src: url(assets/fonts/SansationLight-a5E5.ttf);
   font-weight: lighter;
}

@font-face {
   font-family: pcbFont;
   src: url(assets/fonts/SansationRegular-OgJP.ttf);
}
@font-face {
   font-family: pcbFont;
   src: url(assets/fonts/SansationBold-01jz.ttf);
   font-weight: bold;
}
@font-face {
   font-family: pcbFont;
   src: url(assets/fonts/SansationItalic-WrPA.ttf);
   font-style: italic;
}

* {
   font-family: pcbFont;
}
.CodeMirror {
    border: 1px solid #222;
    height: auto;
}
 
.CodeMirror-scroll {
    overflow-y: hidden;
    overflow-x: auto;
}
.navbbar {
  background-color: #333;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
}
body {
  font-size: 1.3em;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.navbbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 5px 5px;
  text-decoration: none;
  font-size: 10px;
  z-index:2;
  /*
  width: calc(100% / 6);
  */
}

/* Change the color of links on hover */
.navbbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.navbbar a.active {
  background-color: #04AA6D;
  color: white;
}

.pcb-mask-usage {
  -webkit-mask: var(--mask-edge-scalloped-top);
}
.pcb-front{
	z-index: var(--layer-important);
}
.pcb-dialog {
    /*
    */
    overflow-y: scroll;
    border-radius:10px;
    scrollbar-width: none;
    padding:0;border: 0px solid white;max-height:90vh;
    
    display: block;
    z-index: var(--layer-important);
   /*
    inset: 0;
    max-inline-size: min(90vw, var(--size-content-3));
    overflow: hidden;
   max-block-size: min(80vh, 100%);
   */
    transition: opacity .5s;
    animation: var(--animation-scale-down) forwards;
    &.pcb-outup {
        animation: var(--animation-slide-out-up) forwards;
    }
    &.pcb-outdown {
        animation: var(--animation-slide-out-down) forwards;
    }
    &.pcb-push-out {
      animation:
        var(--animation-scale-down),
        var(--animation-fade-out);
    }
    animation-timing-function: var(--ease-squish-1);
      animation-timing-function: var(--ease-elastic-in-out-4);
   /*
   border-radius: 0.5rem;
    padding: 0;
    border: solid 1px #ccc;
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.5);
    */

}
    /* 
    animation: var(--animation-fade-in) forwards;
    animation-timing-function: var(--ease-elastic-in-4);
    */
.pcb-dialog[open]{
    animation: var(--animation-slide-in-down) forwards; 
    &.pcb-push-in {
        animation: 
            var(--animation-scale-down) reverse,
            var(--animation-fade-out) reverse;
        animation-timing-function: var(--ease-squish-4);
        animation-duration: 0.5s;
    }

    &.pcb-shake{
        animation:  var(--animation-shake-z) forwards;
    }
    &.pcb-inup{
        animation: var(--animation-slide-in-up) forwards;
    }
}

.pcb-dialog:not([open]) {
    pointer-events: none;
    opacity: 0;
}
.pcb-dialog-header {
    border:2px solid white;border-radius:10px;
    position: sticky; top: 0px; margin:0px;padding:10px;
    width:100; z-index:4;vertical-align: middle;
}
.pcb-dialog::backdrop {
      background-color: rgba(0, 0, 0, 0.7);
}
/* Style the Image Used to Trigger the Modal Zoom */
.pcb-zoom {
  cursor: zoom-in;
  transition: 0.4s;
}
.pcb-zoom:hover {opacity: 0.7;}
/* The Modal (background) */
#pcb-zoom-modal {
    display:none;
  opacity: 0;  cursor: pointer;
  transition: opacity 0.4s ease-in-out;
}
#pcb-zoom-modal-content {
  /*margin: auto;8*/
  display: block;
  width: 100vmin;
  max-width: 100vmin;
  height:auto;
}
#pcb-zoom-modal.isOpen {
  opacity: 1;
  display: flex; /* Hidden by default */
  position: fixed;  /*Stay in place */
  justify-content: center;
  align-items: center;
  z-index: var(--layer-important); /* Sit on top */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  cursor: pointer;
}

