/* @media screen and (max-width: 640px) {
} */

.toastify {
  max-width: 320px;
  padding-right: 28px;
}

.toast-close {
  position: absolute;
  right: 5px;
  top: 10px;
  font-size: 16px;
  color: #000;
}

.notify-popup {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 1.2;
  color: black;
  gap: 12px;
}

.notify-popup__img {
  height: 52px;
}

.notify-popup__top {
  margin-bottom: 4px;
}

.notify-popup__top strong {
  font-weight: 700;
}

.notify-popup__middle {
  margin-bottom: 8px;
  color: #337ab7;
}

.notify-popup__time {
  position: relative;
  margin-right: 10px;
  line-height: 1;
  font-size: 12px;
}

.notify-popup__time::after {
  content: '';
  position: absolute;
  left: calc(100% + 5px);
  top: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  transform: translateY(-5px);
}

@media (min-width: 960px) {
  .toast-close {
    font-size: 18px;
  }
  .notify-popup {
    font-size: 14px;
  }

  .notify-popup__time {
    font-size: 13px;
  }
}