.errorViewHolder {
  font-size: 14px;
  box-sizing: border-box;
  position: fixed;
  z-index: 999999;
  bottom: 12px;
  right: 22px;
  transition: transform 0.6s ease-in;
  animation: toast-in-left 0.7s;
}
.errorViewItem {
  --error-color: #ff3067;
  --animation-duration: 1s;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  border-radius: 40px;
  background: var(--error-color);
  color: white;
  width: 424px;
  align-items: center;
  margin-bottom: 10px;
}
.errorViewItem [class*="appButton"] {
  height: auto !important;
  padding: 0;
  background: none;
  border: none;
  outline: none;
}
.errorViewItem .retryButton {
  padding: 15px 24px !important;
  border: 1px solid white;
  border-radius: 15px;
  color: white;
  font-size: 18px;
  margin: 12px 0 0 0;
}
.errorViewItem .retryButton span {
  line-height: 1;
}
.errorViewItem .retryButton:hover {
  border-color: rgba(255, 255, 255, 0.9);
}
.errorViewItem .errorViewItemIcon {
  margin-right: 10px;
}
.errorViewItem > span {
  line-height: 22px;
  font-size: 18px;
  font-weight: 500;
  flex: 1;
}
.errorViewItem .errorViewItemActions {
  display: block;
  width: 100%;
}
@media (max-width: 568px) {
  .errorViewItem {
    width: calc(100% - 20px);
    padding: 26px 8px 18px 12px;
    left: 10px;
    bottom: 10px;
  }
}
