body {
  border: 4px solid papayawhip;
}
/* Regular @import url statements work as you'd expect them to -- alternatively
you can import locally, and they wind up in the resulting bundle
@import url('https://fonts.googleapis.com/css?family=Lato');
 */

body {
  display: block;
  margin: 0;
  background-color: black;
  overflow: hidden;
  font-size: 1em;
  color: #333;
  height: 100%;
  width: 100%;
}
/*
@font-face {
    font-family: 'Lato';
    src: url('./assets/fonts/Lato_400_normal.ttf') format('truetype'),
         url('./assets/fonts/Lato_400_normal.woff') format('woff'),
         url('./assets/fonts/Lato_400_normal.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
*/
table, thead, tbody, tfoot, tr, th, td {
    // display: block;
    // width: auto;
    // height: auto;
    margin: 0;
    padding: 0;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    border-color: inherit;
    vertical-align: inherit;
    text-align: left;
    font-weight: inherit;
    -webkit-border-horizontal-spacing: 0;
    -webkit-border-vertical-spacing: 0;
}
th, td {
    display: table-cell;
}
h3 {
  font-size: 18px;
}
p {
  -webkit-margin-before: 0.3em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}
/* =================== */
.pointer {
  cursor: pointer;
  user-select: none;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=range] {
  height: 26px;
  -webkit-appearance: none;
  background: transparent;
  margin: 10px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}

/* Primary Styles */
*, *::before, *::after {
   box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
}
ul {
  display: block;
  list-style-type: none;
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
}
button {
  background: none;
  border-radius: none;
  border: 0;
  padding: 0;
}
.tempBtn {
  background-color: papayawhip;
  padding: 4px;
  color: palevioletred;
}
em {
   font-style: normal;
}

a {
   text-decoration: none;
   color: inherit;
}

/* Layout */
.s-layout {
   display: flex;
   width: 100%;
   min-height: 100vh;
}

.s-layout__content {
   display: flex;
   flex-direction: row;
   justify-content: flex-start;
   align-items: top;
   flex: 1;
}

/* Sidebar */
.s-sidebar__trigger {
   z-index: 2;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 40px;
   background: #192b3c;
   display: flex;
   flex-direction: row;
   justify-content: space-between;
}

.s-sidebar__trigger > i {
   display: inline;
   margin: 5px 0 0 16px;
   color: #f07ab0;
}

.s-sidebar__nav {
   position: fixed;
   top: 0;
   left: -15em;
   overflow: hidden;
   transition: all .3s ease-in;
   width: 15em;
   height: 100%;
   display: flex;
   flex-direction: column;
}

.s-sidebar__nav:hover,
.s-sidebar__nav:focus,
.s-sidebar__trigger:focus + .s-sidebar__nav,
.s-sidebar__trigger:hover + .s-sidebar__nav {
   left: 0;
}

.s-sidebar__nav ul.menu {
   /* position: absolute; */
   /* left: 0; */
   /* margin: 0; */
   padding: 0;
   width: 15em;
}

.s-sidebar__nav ul li {
   width: 100%;
}

.s-sidebar__nav-link {
   position: relative;
   display: inline-block;
   width: 100%;
   height: 4em;
}

.s-sidebar__nav-link em {
   position: absolute;
   top: 50%;
   left: 4em;
   transform: translateY(-50%);
}

.s-sidebar__nav-link:hover {
   background: #4d6276;
}

.s-sidebar__nav-link > i {
   position: absolute;
   top: 0;
   left: 0;
   display: inline-block;
   width: 4em;
   height: 4em;
   margin: 1.5em 0 0 1.5em;
}

.s-sidebar__nav-link > i::before {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

/* Mobile First */
@media (min-width: 42em) {
   .s-layout__content {
      margin-left: 4em;
   }

   /* Sidebar */
   .s-sidebar__trigger {
      width: 15em;
   }

   .s-sidebar__nav {
      width: 4em;
      left: 0;
      display: flex;
      flex-direction: column;
      margin-top: 40px;
   }

   .s-sidebar__nav:hover,
   .s-sidebar__nav.shown,
   .s-sidebar__nav:focus,
   .s-sidebar__trigger:hover + .s-sidebar__nav,
   .s-sidebar__trigger.shown + .s-sidebar__nav,
   .s-sidebar__trigger:focus + .s-sidebar__nav {
      width: 15em;
   }
}
.hoverShow {
  display: none;
}
.s-sidebar__nav:hover .hoverShow,
.s-sidebar__trigger:hover .hoverShow {
  /*display: none;*/
  display: inline;
}

@media (min-width: 68em) {
   .s-layout__content {
      margin-left: 15em;
   }

   /* Sidebar */
   .s-sidebar__trigger {
   }

   .s-sidebar__nav {
      width: 15em;
   }

   .s-sidebar__nav ul {
      top: 1.3em;
   }
}

.small_buttons .button{
  width: 80px;
  display: block;
  float: left;
  border-radius:0;
  margin: 10px 10px 10px 10px;
  padding:15px;
  text-align:center;
  text-decoration:none;
  color: #ecf0f1;
}
.wide_buttons .button{
  width: 100%;
  display: block;
  float: left;
  border-radius:0;
  margin: 10px 0px 10px 0px;
  padding:15px 0px;
  text-align:center;
  text-decoration:none;
  color: #ecf0f1;
}
.button:active{
  position:relative;
  top:6px;
}
/*.button:after{
  box-shadow:0px 5px 15px 5px rgba(0,0,0,0.3);
}*/

.switchStatus {
  flex: 1;
  max-width: 20px;
  margin: 0;
}
.switchStatus svg {
  height: 12px ;
}
.pressButton {
  float: left;
  text-align: center;
  margin: 0;
}
.arrowButton {
  max-width: 32px;
}
.displayBtn {

  max-width: 40px;
}
.sketch {
  position: absolute;
  bottom: 0;
  left: 0;
}
.dupe {
  border: 5px solid red;
}
.loadingoverlay svg {
  width: 200px;
  height: 200px;
  transition: all 900ms linear;
  opacity: 1;
}
.loadingoverlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 200;
  color: #f8f8ff;
  background-color: #192B3D;
  transition: opacity 700ms linear;
  overflow: hidden;
}

