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

.notification {
  width: 380px;
  height: 0px;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  transform: translateX(calc(100% + 40px));
  pointer-events: auto;
  border-radius: 8px;
  background-color: #fff; }
  @media (max-width: 1099px) {
    .notification {
      width: 240px; } }
  .notification.active {
    box-shadow: 6px 8px 10px 0px rgba(48, 64, 113, 0.15);
    transform: translateX(0%); }
  .notification.height {
    height: 104px;
    transition: height .2s ease,  transform .2s ease .2s; }
    @media (max-width: 1099px) {
      .notification.height {
        height: 84px; } }
  .notification.opacity {
    opacity: 0;
    transition: opacity .2s ease; }
  .notification__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    border-radius: 8px 8px 0px 0px;
    background-color: var(--theme-base-color); }
    @media (max-width: 1099px) {
      .notification__header {
        padding: 4px 8px; } }
    .notification__header .icon {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
      fill: #fff; }
      @media (max-width: 1099px) {
        .notification__header .icon {
          max-width: 20px;
          max-height: 20px; } }
      @media (min-width: 1100px) {
        .notification__header .icon {
          cursor: pointer; }
          .notification__header .icon:hover {
            transform: rotate(180deg); } }
  .notification__title {
    color: #fff; }
    @media (max-width: 1099px) {
      .notification__title {
        font-size: 12px; } }
  .notification__image {
    position: relative;
    display: flex;
    align-items: center;
    max-height: 100%;
    height: 48px;
    aspect-ratio: 1/1; }
    @media (max-width: 1099px) {
      .notification__image {
        height: 40px; } }
    .notification__image img {
      position: absolute;
      max-width: 100%;
      max-height: 100%;
      margin: auto;
      inset: 0; }
  .notification__body {
    display: grid;
    align-items: center;
    flex: 1;
    padding: 8px 16px;
    gap: 16px;
    grid-template-columns: 48px 1fr; }
    @media (max-width: 1099px) {
      .notification__body {
        grid-template-columns: 40px 1fr;
        padding: 8px;
        gap: 8px; } }
  .notification__descr {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3; }
    @media (max-width: 1099px) {
      .notification__descr {
        font-size: 10px; } }
