@-webkit-keyframes showtoast {
  from {
    bottom: -64px;
  }
  to {
    bottom: 0;
  }
}

@keyframes showtoast {
  from {
    bottom: -64px;
  }
  to {
    bottom: 0;
  }
}

.ds-toast {
  height: 64px;
  background-color: #239de8;
  text-align: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: -64px;
  z-index: 1;
  -webkit-animation-name: showtoast;
          animation-name: showtoast;
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.ds-toast--static {
  -webkit-animation: none;
          animation: none;
  position: static;
}
                                                                                                                                                               
.ds-toast__text {
  line-height: 64px;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}
