.alpine-notifications {
  position: fixed;
  z-index: 300;
  top: var(--notifications-top, 0px);
  right: 0px;
  overflow: hidden;
  padding: 0px 40px;
  pointer-events: none; }
  @media (max-width: 767px) {
    .alpine-notifications {
      right: 0;
      padding: 0px 30px; } }
  @media (max-width: 575px) {
    .alpine-notifications {
      padding: 0px 18px; } }

.notification {
  width: 460px;
  height: 0px;
  margin-bottom: 20px;
  transform: translateX(calc(100% + 40px));
  pointer-events: auto;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.08); }
  @media (max-width: 767px) {
    .notification {
      width: 320px; } }
  @media (max-width: 575px) {
    .notification {
      width: 305px; } }
  .notification.active {
    transform: translateX(0%); }
  .notification.height {
    height: 148px;
    transition: height 0.2s ease, transform 0.2s ease 0.2s; }
    @media (max-width: 767px) {
      .notification.height {
        height: 115px; } }
  .notification.opacity {
    opacity: 0;
    transition: opacity 0.2s ease; }
  .notification__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    fill: #fff;
    color: #fff;
    border-radius: 2px 2px 0 0;
    background-color: #004897; }
    .notification__header--compare {
      fill: #181818; }
      .notification__header--compare .notification__title {
        color: #181818; }
    @media (max-width: 767px) {
      .notification__header {
        padding: 10px; } }
    @media (min-width: 768px) {
      .notification__header .icon {
        cursor: pointer; }
        .notification__header .icon:hover {
          transform: rotate(180deg); } }
  .notification__image {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .notification__image img {
      max-width: 100%;
      max-height: 100%; }
    @media (max-width: 767px) {
      .notification__image {
        width: 44px;
        height: 44px; } }
  .notification__body {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 8px; }
    @media (max-width: 767px) {
      .notification__body {
        padding: 10px;
        grid-template-columns: 44px 1fr; } }
  .notification__icon {
    flex: 0 0 auto; }
  .notification__descr {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    color: #004897; }
    @media (max-width: 767px) {
      .notification__descr {
        font-size: 12px; } }
    @media (max-width: 575px) {
      .notification__descr {
        font-size: 10px; } }
  .notification__title {
    color: #fff;
    font-size: 18px; }
    @media (max-width: 767px) {
      .notification__title {
        font-size: 16px; } }
    @media (max-width: 575px) {
      .notification__title {
        font-size: 14px; } }
