/******** borderSize *******/
/******** borderStyle *******/
/******** radius *******/
/******** shadow distance *******/
/******** size *******/
/******** spacing *******/
/******** shadow *******/
/******** opacity *******/
/******** fontSize *******/
/******** fontWeight ********/
/******** Primary *******/
/******** success *******/
/******** warning *******/
/******** danger *******/
/******** link *******/
/******** radius *******/
/********* icon hover *********/
.sd-notification-list {
  position: fixed;
  z-index: 1003;
  margin: 0;
  padding-left: 0;
}
.sd-notification-list-top-left {
  top: 20px;
  left: 20px;
}
.sd-notification-list-top-right {
  top: 20px;
  right: 20px;
}
.sd-notification-list-top-right .sd-notification {
  margin-left: auto;
}
.sd-notification-list-bottom-left {
  bottom: 20px;
  left: 20px;
}
.sd-notification-list-bottom-right {
  right: 20px;
  bottom: 20px;
}
.sd-notification-list-bottom-right .sd-notification {
  margin-left: auto;
}

.sd-notification {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: 340px;
  padding: 20px 20px 20px 20px;
  overflow: hidden;
  background-color: var(--sd-color-bg-popup);
  border: 1px solid var(--sd-color-neutral-3);
  border-radius: var(--sd-border-radius-medium);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.sd-notification:not(:last-child) {
  margin-bottom: 20px;
}
.sd-notification-icon {
  display: flex;
  align-items: center;
  font-size: 24px;
}
.sd-notification-info {
  background-color: var(--sd-color-bg-popup);
  border-color: var(--sd-color-neutral-3);
}
.sd-notification-info .sd-notification-icon {
  color: rgb(var(--sd-primary-6));
}
.sd-notification-success {
  background-color: var(--sd-color-bg-popup);
  border-color: var(--sd-color-neutral-3);
}
.sd-notification-success .sd-notification-icon {
  color: rgb(var(--sd-success-6));
}
.sd-notification-warning {
  background-color: var(--sd-color-bg-popup);
  border-color: var(--sd-color-neutral-3);
}
.sd-notification-warning .sd-notification-icon {
  color: rgb(var(--sd-warning-6));
}
.sd-notification-error {
  background-color: var(--sd-color-bg-popup);
  border-color: var(--sd-color-neutral-3);
}
.sd-notification-error .sd-notification-icon {
  color: rgb(var(--sd-danger-6));
}
.sd-notification-left {
  padding-right: 16px;
}
.sd-notification-right {
  flex: 1;
  word-break: break-word;
}
.sd-notification-title {
  color: var(--sd-color-text-1);
  font-weight: 500;
  font-size: 16px;
}
.sd-notification-title + .sd-notification-content {
  margin-top: 4px;
}
.sd-notification-content {
  color: var(--sd-color-text-1);
  font-size: 14px;
}
.sd-notification-info .sd-notification-title {
  color: var(--sd-color-text-1);
}
.sd-notification-info .sd-notification-content {
  color: var(--sd-color-text-1);
}
.sd-notification-success .sd-notification-title {
  color: var(--sd-color-text-1);
}
.sd-notification-success .sd-notification-content {
  color: var(--sd-color-text-1);
}
.sd-notification-warning .sd-notification-title {
  color: var(--sd-color-text-1);
}
.sd-notification-warning .sd-notification-content {
  color: var(--sd-color-text-1);
}
.sd-notification-error .sd-notification-title {
  color: var(--sd-color-text-1);
}
.sd-notification-error .sd-notification-content {
  color: var(--sd-color-text-1);
}
.sd-notification-footer {
  margin-top: 16px;
  text-align: right;
}
.sd-notification-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--sd-color-text-1);
  font-size: 12px;
  cursor: pointer;
}
.sd-notification-close-btn > svg {
  position: relative;
}
.sd-notification .sd-icon-hover.sd-notification-icon-hover::before {
  width: 20px;
  height: 20px;
}

.slide-left-notification-enter-from,
.slide-left-notification-appear-from {
  transform: translateX(-100%);
}

.slide-left-notification-enter-to,
.slide-left-notification-appear-to {
  transform: translateX(0);
}

.slide-left-notification-enter-active,
.slide-left-notification-appear-active {
  transition: transform 0.4s cubic-bezier(0.3, 1.3, 0.3, 1);
}

.slide-left-notification-leave-from {
  opacity: 1;
}

.slide-left-notification-leave-to {
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.slide-left-notification-leave-active {
  transition: height 0.3s cubic-bezier(0.34, 0.69, 0.1, 1), margin 0.3s cubic-bezier(0.34, 0.69, 0.1, 1), padding 0.3s cubic-bezier(0.34, 0.69, 0.1, 1), opacity 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}

.slide-right-notification-enter-from,
.slide-right-notification-appear-from {
  transform: translateX(100%);
}

.slide-right-notification-enter-to,
.slide-right-notification-appear-to {
  transform: translateX(0);
}

.slide-right-notification-enter-active,
.slide-right-notification-appear-active {
  transition: transform 0.4s cubic-bezier(0.3, 1.3, 0.3, 1);
}

.slide-right-notification-leave-from {
  opacity: 1;
}

.slide-right-notification-leave-to {
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.slide-right-notification-leave-active {
  transition: height 0.3s cubic-bezier(0.34, 0.69, 0.1, 1), margin 0.3s cubic-bezier(0.34, 0.69, 0.1, 1), padding 0.3s cubic-bezier(0.34, 0.69, 0.1, 1), opacity 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}