.system-message-content {
  display: flex;
  width: 1200px;
  padding: 20px 30px;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
  border-radius: 12px;
  
  /* Elevation/Light/Shadow 16 */
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12),
    0px 8px 16px 0px rgba(0, 0, 0, 0.14);
}

.system-message {
  display: flex;
  justify-content: center;
  padding: 30px;
}

.system-icon {
  display: flex;
  width: 24px;
  height: 24px;
  padding: 2px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.system-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
}

.system-close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.alert-heading {
    font-weight: bold;
}

.alert-error {
    background:#FFE9E9;
}

.alert-warning {
    background:#FBF6D9;
}

.alert-notice {
    background:#E8EDFF;
}

.alert-message {
    background:#B8FEC9;
}

.system-close {
    background-color: transparent;
}

@media screen and (max-width: 1300px) {
    .system-message-content{
        width: 1000px;
    }
}

@media screen and (max-width: 1100px) {
    .system-message-content{
        width: 800px;
    }
}

@media screen and (max-width: 900px) {
    .system-message-content{
        width: 600px;
    }
}

@media screen and (max-width: 700px) {
    .system-message-content{
        width: 400px;
    }
}

@media screen and (max-width: 500px) {
    .system-message-content{
        width: 300px;
    }

    .system-icon {
        display: none;
    }
    
    .system-close {
        display: none;
    }
}

@media screen and (max-width: 300px) {
    .system-message-content{
        width: 200px;
    }

    .system-icon {
        display: none;
    }

    .system-close {
        display: none;
    }
}