/* Some Sass variables */

.u-fancy-scrollbar::-webkit-scrollbar {
    height: 12px;
    width: 12px;
}
.u-fancy-scrollbar::-webkit-scrollbar {
    height: 28px;
    width: 8px;
}

::-webkit-scrollbar-thumb{
  background: #747479; 
border-radius: 12px;
}

.u-fancy-scrollbar::-webkit-scrollbar-button {
    display: block;
    height: 20px;
    //width: 4px;
}
.u-fancy-scrollbar::-webkit-scrollbar-track-piece {
    background: #00000026;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgba(0, 0, 0, 0.25);
}

.u-fancy-scrollbar::-webkit-scrollbar-track {
}

body {
  margin: 0;
  font-family: 'Roboto';
  font-size: 16px;
  line-height: 1.3em;
}
.ui {
  background-image: url("https://trello-backgrounds.s3.amazonaws.com/61d77a63997adf6399dd6f90/2048x1341/ad1488c0991106c0a6720a1eb6b3c6d5/EzVn2PYVcAAWpTm.png");
  height: 100vh;
  display: grid;
  grid-template-rows: 40px 50px 1fr;
  background-color: #0079bf;
  color: #eee;
}
.navbar {
  padding-left: 10px;
  display: flex;
  align-items: center;
}
.navbar.app {
  background-color: #434254;
  font-size: 1.5rem;
}
.navbar.board {
  font-size: 1.1rem;
}
.lists {
  display: flex;
  overflow-x: auto;
  margin-bottom: 10px;
}
.lists > * {
  flex: 0 0 auto;
  margin-left: 10px;
}
.lists::after {
  content: '';
  flex: 0 0 10px;
}
.list {
  width: 300px;
  height: calc(100% - 10px - 17px);
}
.list > * {
  background-color: #e2e4e6;
  color: #333;
  padding: 0 10px;
}
.list header {
  line-height: 36px;
  font-size: 19px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.list footer {
  line-height: 36px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #888;
}
.list ul {
  list-style: none;
  margin: 0;
  max-height: calc(100% - 36px - 36px);
  overflow-y: auto;
}
.list ul li {
  background-color: #fff;
  padding: 10px;
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.list ul li:not(:last-child) {
  margin-bottom: 10px;
}
.list ul li img {
  display: block;
  width: calc(100% + 2 * 10px);
  margin: -10px 0 10px -10px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
