.error-toast-container {
  position: fixed;
  left: 0;
  top: 53px;
  right: 0;
  padding: 0px 16px;
  z-index: 1001;
}

.error-toast {
  text-align: center;
  padding: 9px 20px;
  background: rgba(84, 84, 84, 0.92);
  color: #ffffff;
  box-sizing: border-box;
  width: 100%;
  max-width: 560px;
  margin: auto;
  border-radius: 4px;
  font-family: var(--tux-web-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}
@media (max-width: 991px) {
  .error-toast {
    line-height: 17px;
    padding: 11px 20px;
  }
}

.error-toast-container-enter {
  opacity: 0;
}
.error-toast-container-enter-active {
  transition: opacity 0.3s;
  opacity: 1;
}

.error-toast-container-exit {
  opacity: 1;
}
.error-toast-container-exit-active {
  transition: opacity 0.3s;
  opacity: 0;
}
