/* #ifdef harmony */
/* #endif */
/* #ifndef harmony */
/* #endif */
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.nut-toast {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1300;
}
.nut-toast-overlay-default-taro {
  /* #ifdef harmony */
  background-color: rgba(0, 0, 0, 0);
  /* #endif */
  /* #ifndef harmony */
  /* #endif */
}
.nut-toast-inner {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 96px;
  max-width: 60%;
  box-sizing: border-box;
  font-size: 14px;
  text-align: center;
  padding: 13px 16px;
  word-break: break-all;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  color: #ffffff;
}
.nut-toast-inner-descrption {
  max-width: 68.2%;
}
.nut-toast-inner-normal {
  word-break: normal;
  word-wrap: normal;
}
.nut-toast-inner-break-word {
  word-break: normal;
  word-wrap: break-word;
}
.nut-toast-inner-small {
  font-size: 12px;
}
.nut-toast-inner-large {
  font-size: 16px;
}
.nut-toast-center {
  top: 48%;
}
.nut-toast-bottom {
  top: 80%;
}
.nut-toast-top {
  top: 20%;
}
.nut-toast-text {
  color: #ffffff;
  text-align: center;
  line-height: 20px;
}
.nut-toast-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 22px;
}
.nut-toast .nut-icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
}
.nut-toast-icon-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3px 0 5px;
  color: #ffffff;
}
.nut-toast-icon-wrapper-icon {
  width: 24px;
  height: 24px;
}
.nut-toast-rtl {
  left: auto;
  right: 0;
}
.nut-toast-rtl-inner {
  left: auto;
  right: 50%;
}

[dir=rtl] .nut-toast,
.nut-rtl .nut-toast {
  left: auto;
  right: 0;
}
[dir=rtl] .nut-toast-inner,
.nut-rtl .nut-toast-inner {
  left: auto;
  right: 50%;
}

.toast-fade-enter-active {
  transition: opacity 0.3s;
}

.toast-fade-leave-active {
  transition: opacity 0.3s;
}

.toast-fade-enter-from,
.toast-fade-leave-to {
  opacity: 0;
}