.notification-container {
  background-color: var(--theme-color);
  color: var(--color-white);
  margin-top: -4px;
  .notification-container__divider {
    height: 1px;
    width: calc(100% - 48px);
    background-color: var(--palette-gray-80);
  }
  .notification-btn__icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px;
    width: 48px;
    height: 48px;
    background-color: var(--theme-color);
    color: var(--color-white);
    border: none;
    &:visited {
      color: var(--color-white);
    }

    &:hover {
      background-color: var(--color-secondary);
      color: var(--color-white);
    }

    &:active {
      background-color: var(--color-secondary);
      box-shadow: inset 0px -3px 0px var(--palette-blue-50);
    }

    &:focus-within {
      background-color: var(--color-secondary);
      box-shadow: inset 0px -3px 0px var(--palette-blue-50);
    }

    &.disabled {
      color: var(--palette-gray-50) !important;
      background-color: var(--palette-gray-30) !important;
    }
  }
  .notification-menu-wrapper {
    width: 408px;
    height: 688px;
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2))
      drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.1));
    box-shadow: none;
    .notification-menu__header {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 20px 16px;
      gap: 10px;
      height: 56px;
      box-shadow: inset 0px -2px 0px var(--palette-gray-80);
      .notification-menu__header-title {
        font-weight: 600;
      }
      .notification-menu__switch[aria-checked="true"] {
        background-color: var(--palette-green-50);
      }
      .notification-menu__switch[aria-checked="false"] {
        background-color: #e1e3e5;
      }
    }

    .notification-content {
      .notification-list__wrapper {
        overflow: auto;
        height: 576px;

        .notification-item {
          cursor: pointer;
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          gap: 4px;

          &:hover {
            background: var(--palette-grayHover-90);
          }
          &.notification-item__unread {
            box-shadow: inset 4px 0px 0px var(--palette-blue-50);
          }

          .notification-item__info {
            display: flex;
            flex-direction: column;
            padding: 20px 16px;

            .notification-item__title {
              .notification-item__title-web {
                font-weight: 600;
              }
            }
            .notification-item__site {
              color: var(--palette-gray-50);
            }
          }
          .notification-item__icon {
            padding: 14px;
            &:hover {
              background-color: var(--palette-grayHover-10);
              color: var(--palette-gray-100);
            }
          }
        }
      }
    }

    .notification-menu__footer {
      box-shadow: inset 0px 2px 0px var(--palette-gray-80);
      display: flex;
      .notification-menu__footer-view {
        padding: 20px 12px 20px 16px;
        gap: 4px;
        display: flex;
        align-items: center;
        letter-spacing: 0.16px;
        color: var(--palette-blue-30);
        height: 56px;
        cursor: context-menu;
        &:hover {
          background: var(--palette-grayHover-90);
        }
      }
      .notification-menu__footer-icon {
        width: 56px;
        height: 56px;
        padding: 18px;
        &:hover {
          background: var(--palette-grayHover-90);
          cursor: pointer;
        }
      }
    }
  }
}
