@import url('https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap');

body {
  margin: 0;
  position: relative;
  min-height: 100vh;
  min-width: 100vw;
  font-family: 'Titillium Web', sans-serif;
}

.tab-menu {
  position: absolute;
  bottom: 42px;
  width: calc(100vw - 124px);
  left: 62px;
  right: 62px;
  display: flex;
  flex-direction: column;
}

.menus {
  height: 110px;
  box-sizing: border-box;
  position: relative;
}

.menus ul {
  list-style: none;
  margin: 0;
  display: flex;
  height: inherit;
  align-items: center;
  overflow: hidden;
  padding: 0;
  display: none;
}

.menus ul li {
  flex-shrink: 0;
  height: 88px;
  width: 88px;
  background-color: black;
  border: 2px solid #e0e0e0;
  transition: 0.1s margin ease-in-out;
  position: relative;
}

.menus ul li.active {
  border-color: #009688;
}

.menus ul li span {
  position: absolute;
  bottom: 0;
  color: white;
  left: 0;
  text-shadow: 1px 1px 1px #000;
  font-size: 13px;
  width: 100%;
  text-align: center;
}

.menus ul li:hover {
  margin-bottom: 7px;
}

.menus ul li+li {
  margin-left: 16px;
}

.menus ul li img {
  width: 100%;
}

header {
  position: absolute;
  top: 0;
  left: 32px;
  height: 90px;
  display: flex;
  align-items: center;


}

header img {
  width: 72px;
  margin-right: 8px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: white;
  text-shadow: 1px 1px 1px #000;
}

footer {
  position: absolute;
  bottom: 0;
  height: 24px;
  width: 100vw;
  color: #e0e0e0;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  padding: 0 16px;
  box-sizing: border-box;
  text-shadow: 0 0 1px #000;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.25);
}

::-webkit-scrollbar-thumb {
  background-color: #e0e0e0;
}


canvas {
  cursor: grab;
}

.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
}

button.tab {
  padding: 8px 24px;
  background: none;
  color: white;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

button.tab.active {
  border-bottom: 2px solid white;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
}

button.left {
  position: absolute;
  left: -37px;
  height: 100%;
  z-index: 1;
  background: none;
  padding: 0;
  width: 32px;
  border: 0;
}

button.left img,
button.right img {
  width: 100%;
}

button.left:hover,
button.right:hover {
  background-color: rgba(0, 0, 0, .25);
  cursor: pointer;
}

button.right {
  position: absolute;
  right: -37px;
  height: 100%;
  z-index: 1;
  background: none;
  padding: 0;
  width: 32px;
  border: 0;
}