/* #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 {
  --nutui-overlay-bg-color: rgba(0, 0, 0, 0);
}
.nut-toast-overlay-default-taro {
  /* #ifdef harmony dynamic*/
  background-color: rgba(0, 0, 0, 0);
  /* #endif */
  /* #ifndef harmony dynamic*/
  --nutui-overlay-bg-color: rgba(0, 0, 0, 0);
  /* #endif */
}
.nut-toast-inner {
  position: absolute;
  top: var(--nutui-toast-inner-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: var(--nutui-toast-text-font-size, 14px);
  text-align: var(--nutui-toast-inner-text-align, center);
  padding: var(--nutui-toast-inner-padding, var(--nutui-spacing-base));
  word-break: break-all;
  background: var(--nutui-toast-inner-bg-color, rgba(0, 0, 0, 0.9));
  border-radius: var(--nutui-toast-inner-border-radius, var(--nutui-radius-xs));
  color: var(--nutui-toast-font-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: var(--nutui-font-text-small);
}
.nut-toast-inner-large {
  font-size: var(--nutui-font-text-large);
}
.nut-toast-center {
  top: var(--nutui-toast-inner-top, 48%);
}
.nut-toast-bottom {
  top: var(--nutui-toast-inner-top, 80%);
}
.nut-toast-top {
  top: var(--nutui-toast-inner-top, 20%);
}
.nut-toast-text {
  color: #ffffff;
  text-align: var(--nutui-toast-inner-text-align, center);
  line-height: 20px;
  height: auto;
}
.nut-toast-title {
  color: #ffffff;
  font-size: var(--nutui-toast-title-font-size, 16px);
  font-weight: 600;
  text-align: var(--nutui-toast-inner-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;
}