.appbar {
  padding-left: 0px;
  width: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #DDDDDD;
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.appbar > button {
  margin: 10px;
  margin-left: 16px;
  margin-right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  height: 36px;
  width: 36px;
  text-align: center;
  border-color: black;
  color: black;
  border-width: 2.5px;
}

.appbar > button > img {
  height: 36px;
}

@keyframes appbar {
  from { transform: translateY(100px) }
  to { transform: translateY(0px) }
}

@keyframes appbar2 {
  from { transform: translateY(0px) }
  to { transform: translateY(100px) }
}

@keyframes abutton {
  from { transform: translateY(-5px) }
  75% { transform: translateY(-5px) }
  to { transform: translateY(0px) }
}

@keyframes abutton2 {
  from { transform: translateY(0px) }
  to { transform: translateY(-5px) }
}

.appbaranim {
  animation-name: appbar;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(1,0,0,1);
}

.appbaranim2 {
  animation-name: appbar2;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(1,0,0,1);
}

.abutton {
  animation-name: abutton;
  animation-duration: 0.5s;
  animation-timing-function: linear;
}

.abutton2 {
  animation-name: abutton2;
  animation-duration: 0.5s;
  animation-timing-function: linear;
}