.notify {
  position: fixed;
  height: 100%;
  background-color: #212121;
  padding: 24px;
  z-index: 99;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  top: 0;
  right: 0;
  transition: transform 0.6s ease-in-out;
  transform: translateX(100%);
}

.notify.is-active {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.notify__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 28px;
}

.notify__title-text {
  font-family: 'Roboto-Medium';
  font-size: 20px;
  line-height: 24px;
  color: #fff;
}

.notify__item {
  border-radius: 20px;
  border: 1px solid #fff;
  padding: 10px 16px;
  margin-bottom: 8px;
  min-width: 350px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  transform-origin: center;
}

.notify__item:hover {
  border: 1px solid #FF1493;
}

.notify__item:hover .notify__item-link {
  opacity: 1;
  max-height: 50px;
  margin-top: 8px;
}

.notify__item-data {
  font-family: 'Roboto-Medium';
  font-size: 12px;
  line-height: 18px;
  color: #717477;
  margin-bottom: 8px;
}

.notify__item-title {
  font-family: 'Roboto-Bold';
  font-size: 15px;
  line-height: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.notify__item-text {
  font-family: 'Roboto-Medium';
  font-size: 13px;
  line-height: 18px;
  color: #fff;
}

.notify__item-link {
  opacity: 0;
  max-height: 0;
  font-family: 'Roboto-Medium';
  font-size: 13px;
  line-height: 18px;
  color: #FF1493;
  margin-top: 0;
  transition: opacity 0.5s ease 0.1s, max-height 0.3s ease, margin-top 0.3s ease;
  overflow: hidden;
}

.notify__title-close {
  cursor: pointer;
}

.notify-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(2px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.notify-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.notify-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #212121;
  border-radius: 20px;
  padding: 30px;
  z-index: 10000;
  max-width: 500px;
  width: 90%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid #fff;
}

.notify-modal.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.notify-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.notify-modal__close:hover {
  opacity: 0.7;
}