.notification-toast__container {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-top-width: 2px;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -120%);
  transition: 1s transform;
  text-decoration: none;
}
.notification-toast__container--clickable {
  cursor: pointer;
}
.notification-toast__container--show {
  transform: translate(-50%, 3px);
}
.notification-toast__title {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: normal;
  font-weight: 700;
  color: #da291c;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 17px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  white-space: nowrap;
}
.notification-toast__description {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #222222;
  font-size: 1.3rem;
  line-height: 17px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .notification-toast__container {
    padding: 20px 30px;
    gap: 30px;
  }
}
