.myNotifyWrapper {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 9999;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.myNotifyWrapper .notify {
position: relative;
overflow: hidden;
border-radius: 6px;
padding: 18px 22px 14px;
width: 320px;
color: white;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
font-family: 'Montserrat', sans-serif;
background: none;
opacity: 1; /* Убираем прозрачность для уведомления */
}

.myNotifyWrapper .notify::before {
content: "";
position: absolute;
inset: 0;
background: url('../images/background.png') no-repeat center/cover;
z-index: 0;
pointer-events: none;
}

.myNotifyWrapper .notify .header,
.myNotifyWrapper .notify .text,
.myNotifyWrapper .notify .progress-bar {
  position: relative;
  z-index: 1;
}

.myNotifyWrapper .notify .header {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.myNotifyWrapper .notify .header .material-icons {
  font-size: 22px;
  margin-right: 10px;
  vertical-align: middle;
}

.myNotifyWrapper .notify .text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 10px;
}

.progress-bar-fill {
  height: 100%;
  width: 100%;
  transform-origin: left;
  transition: width linear;
}