.text {
  background-color: #fff;
  color: #000;
  padding: 2px;
  width: 100%;
  border: 0;
  border-bottom: #999 solid 1px;
}

.toptoast {
  background-color: #999;
  color: #fff;
  width: 100%;
  box-shadow: #ccc 2px 2px 2px 2px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: fixed;
  z-index: 1000;
  padding: 10px;
  text-align: center;
  top: -50px;
  left: 0px;
  min-height: 40px;
  height: auto;
}

.tsta {
  top: 0px;
  animation: etoast 0.2s;
}

.tstb {
  top: -50px;
  animation: xtoast 1s;
}

@keyframes etoast {
  0% {
    top: -50px;
  }

  100% {
    top: 0px;
  }
}

@keyframes xtoast {
  0% {
    top: 0px;
  }

  100% {
    top: -50px;
  }
}

.botopt {
  position: fixed;
  height: 300px;
  background-color: #eee;
  padding: 10px;
  padding-top: 20px;
  width: 100%;
  bottom: -350px;
  border: #666 solid 1px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  left: 0px;
  box-shadow: #333 3px 3px 3px 3px;
  z-index: 100;
}

.bota {
  bottom: 0px;
  animation: botax 0.2s;
}

.botb {
  bottom: -350px;
  animation: botbx 1s;
}

@keyframes botax {
  0% {
    bottom: -310px;
  }

  100% {
    bottom: 0px;
  }
}

@keyframes botbx {
  0% {
    bottom: 0px;
  }

  100% {
    bottom: -350px;
  }
}
