.app {
  background: #22abe1;
}

.app .signin {
  width: 100%;
  height: 100vh;
}

.app .signin .signin-form {
  width: 300px;
  height: 400px;
}

.app .rounded-elem {
  border-radius: 30px;
  height: 40px;
}

.app .rounded-elem.btn {
  padding: 0 30px;
}

.app .connected {
  padding-bottom: 100px;
}

.app .connected .tabbar {
  height: 100px;
}

.app .text-white {
  color: #FFF;
}

.app .text-black {
  color: #000;
}

.app .body,
.app .listing,
.app .no-results {
  height: calc(100vh - 100px);
  width: 100%;
  overflow: scroll;
}

.app .no-results {
  color: #FFF;
}

.app .bloc {
  background: #FFF;
  padding: 15px;
  margin: 15px;
  border-radius: 10px;
}

.app .tabbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 5px;
}

.app .tabbar .item {
  width: 20%;
  text-align: center;
  font-size: 10px;
}

.app .tabbar .item.scan span {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  background: #000;
  color: #FFF;
}

.app .tabbar .item.selected {
  color: #22abe1;
}

