/* line 8, ../sass/toast.scss */
.ui-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 2rem;
  max-width: 100%;
  text-align: center;
  font-size: 0.34rem;
  color: #fff;
  background: rgba(58, 58, 58, 0.8);
  border-radius: 0.1rem;
  opacity: 0;
  transition: all .25s ease 0s;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
/* line 23, ../sass/toast.scss */
.ui-toast.show {
  opacity: 1;
}
/* line 26, ../sass/toast.scss */
.ui-toast.hide {
  opacity: 0;
}
/* line 29, ../sass/toast.scss */
.ui-toast .icon {
  display: block;
  width: .8rem;
  height: .8rem;
  margin: .25rem auto 0 auto;
  background: #eee;
}
/* line 36, ../sass/toast.scss */
.ui-toast .ui-toast-text {
  display: block;
  padding: .2rem .3rem;
  line-height: 150%;
}
