.d-notification__container {
  position: absolute;
  top: auto;
  right: 40px;
  bottom: 40px;
}

.d-notice {
  background: var(--background-03-color);
  padding: var(--spacing-05) var(--spacing-06);
  border-radius: var(--radius-05);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 300;
}
.d-notice:not(:last-child) {
  margin-bottom: 10px;
}

.d-notice {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-04);
}
.d-notice__body {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-04);
}
.d-notice__title {
  color: var(--text-on-color-color);
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}
.d-notice__message {
  color: var(--text-on-color-color);
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.d-notice__icon {
  cursor: pointer;
}
.d-notice__icon svg > path {
  fill: var(--icon-on-color-color);
}

.notice-with-button {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-04);
}
.notice-with-button__body {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-04);
}
.notice-with-button__title {
  color: var(--text-on-color-color);
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}
.notice-with-button__message {
  color: var(--text-on-color-color);
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.notice-with-button__icon {
  cursor: pointer;
}
.notice-with-button__icon svg > path {
  fill: var(--icon-on-color-color);
}