.notification.notification-default {
  display: none;
  position: fixed;
  z-index: 21;
  align-items: center;
  inset: auto 16px 16px 16px;
}
.notification.notification-default.slim {
  max-width: 560px;
}
.notification.notification-default .disabled {
  pointer-events: none;
  color: #808080;
}
.notification.notification-default a,
.notification.notification-default svg {
  cursor: pointer;
}
@media (max-width: 768px) {
  .notification.notification-default {
    width: unset;
    right: 12px;
    left: 12px;
    bottom: 56px;
    align-items: flex-start;
  }
  .notification.notification-default .notification-content.slim {
    flex-direction: column;
    align-items: stretch;
  }
  .notification.notification-default .notification-description.slim {
    margin-bottom: 10px;
  }
}
@media (max-width: 550px) {
  .notification.notification-default {
    width: 100%;
    right: 0;
    left: 0;
    padding: 0;
  }
}
.notification.notification-default .notification-content {
  font-size: 13px;
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px 0 rgba(34, 60, 80, 0.2);
}
.notification.notification-default .notification-content:not(.slim) {
  display: flex;
  padding: 16px;
}
.notification.notification-default .notification-content.slim {
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 350px) {
  .notification.notification-default .notification-content.slim {
    padding: 12px 10px;
  }
}
.notification.notification-default .notification-text-wrapper {
  flex: 1;
  min-width: 0;
  gap: 4px;
}
.notification.notification-default .notification-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.2;
}
.notification.notification-default .notification-description {
  color: #808080;
  line-height: 1.35;
}
.notification.notification-default .notification-description.slim {
  margin-bottom: 0;
  font-size: 12px;
}
.notification.notification-default .notification-button-wrapper {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  align-items: center;
}
.notification.notification-default .notification-button-wrapper .intec-ui-size-3,
.notification.notification-default .notification-button-wrapper .intec-ui-size-4 {
  font-size: 12px;
  padding: 6px 12px;
  min-height: 32px;
  line-height: 1.2;
}
@media (max-width: 350px) {
  .notification.notification-default .notification-button-wrapper {
    gap: 6px;
    justify-content: flex-start;
  }
}
.notification.notification-default .notification-button {
  border-width: 1px;
}

.notification.notification-default .notification-content {
  position: relative;
}
.notification.notification-default .notification-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #808080;
  cursor: pointer;
  line-height: 1;
}
.notification.notification-default .notification-close:hover {
  color: #222;
  background: rgba(0, 0, 0, 0.05);
}
.notification.notification-default .notification-content.slim {
  padding-right: 36px;
}
.notification.notification-default .notification-content:not(.slim) {
  padding-right: 36px;
}
