.notifications {
  position: fixed;
  z-index: 3000;
  right: 32px;
  top: 75px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .notifications {
    right: 10px;
    top: 65px;
  }
}
@media screen and (max-width: 375px) {
  .notifications {
    left: 20px;
  }
}
.notifications__item {
  background: #fff;
  padding: 26px 36px;
  border: 1px solid #b8c7d4;
  border-radius: 8px;
  overflow: hidden;
  max-width: 500px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .notifications__item {
    padding: 15px 20px;
    max-width: 350px;
  }
}
.notifications__item:not(.show) {
  transform: translateX(calc(100% + 52px));
}
.notifications__item.hide {
  opacity: 0;
}
.notifications__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.notifications__title {
  color: #000;
  font-weight: 700;
  font-size: 16px;
  line-height: 131%;
}
.notifications__close {
  background: unset;
  padding: 5px;
}
.notifications__close:after {
  content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='14.019' y='16.5374' width='18' height='2' transform='rotate(-130 14.019 16.5374)' fill='%23B3C8D6' /%3E%3Crect x='15.5503' y='2.74768' width='18' height='2' transform='rotate(130 15.5503 2.74768)' fill='%23B3C8D6' /%3E%3C/svg%3E");
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  line-height: 0;
}
.notifications__body {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 767px) {
  .notifications__body {
    margin: 10px 0 0 0;
  }
}
.notifications__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .notifications__image {
    object-fit: cover;
  }
}
.notifications__image-wrapper {
  border-radius: 8px;
  width: 84px;
  height: 111px;
}
.notifications__content {
  font-weight: 600;
  font-size: 14px;
  color: #494949;
}
@media screen and (max-width: 767px) {
  .notifications__content {
    font-size: 12px;
  }
}
.notifications__footer {
  margin: 25px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .notifications__footer {
    margin: 10px 0 0 0;
  }
}
.notifications__link {
  padding: 8px 15px;
  border-radius: 10px;
  background: #f9a225;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}
