:host,
input,
button,
select,
textarea {
  font-family: 'Roboto', sans-serif;
}

.zea-navigation-drawer {
  color: var(--color-foreground-1);
  display: inline-block;
  vertical-align: middle;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  width: 192px;
  height: 100vh;
  background-color: var(--color-background-1);
  z-index: 10000000;
  transition: transform 0.3s;
  transition-timing-function: ease-out;
}

.shown .drawer {
  left: 0;
  transform: translateX(0);
  box-shadow: 10px 3px 10px var(--color-background-4);
}

.toggle {
  position: relative;
  z-index: 10000010;
  margin-right: 12px;
  margin-left: 7px;
  background-color: transparent;
  border-radius: 50%;
  padding: 4px;
  display: inline-block;
}

.toggle:hover {
  background-color: var(--color-grey-3);
}

.drawer-content {
  padding-top: 80px;
  padding-left: 9px;
  font-size: 14px;
}

@media only screen and (max-width: 667px) {
  .drawer {
    width: 80%;
  }
}
