/*Закуска*/

.toasts {
  position: fixed;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  overflow: visible;
}

.toasts-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  max-width: 1920px;
  padding-right: 20px;

  display: flex;
  flex-direction: column;
  align-items: end;
 
  flex: 1;
  transition: transform 250ms ease;
  overflow: hidden;
}

.toast {
  display: flex;
  flex: 1;
  padding: 10px 20px;
  margin: 0 0 10px;
  background: #212139;
  
  z-index: 5;
  animation: slideUp 500ms ease forwards 1;

  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
}