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