#alertContainer {
    color: #fff;
    margin: 2rem auto;
    padding: 1rem;
    width: fit-content;
    max-width: 75%;
    display: flex;
    align-items: center;
}
#alert {
    display: inline-flex;
    align-items: center;
}
#alertName {
    margin: 0;
    color: #fff;
    word-break: break-word;
}

#alertIcone {
    font-family: "Noto Emoji", sans-serif;
    font-optical-sizing: auto;
    font-size: xxx-large;
    font-weight: normal;
    padding-right: 1rem;
}

.alertNav {
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 1rem;
    padding: 1rem;
    text-align: center;
    width: fit-content;

}

#alertInfo {
    margin: 0;
    padding: 0;
    text-align: left;
    width: fit-content;
    line-height: 1.325;
}

#alertInfo * {
    margin-block-start: 0.5rem;
    margin-block-end: 0.5rem;
    color: #fff!important;
}
#alertInfo a {
    text-decoration: solid;
    text-decoration-line: underline;
    text-decoration-thickness: 0.0625rem;
    text-underline-offset: 0.1875rem;
}

#alertWrapper {
    margin: auto;
    width: 100%;
}

.alertLevel-l {
    background-color: #61C200;
}

.alertLevel-m {
    background-color: #FF6200;
}

.alertLevel-h {
    background-color: #c00000;
}

@media only screen and (max-width: 920px) {
    #alertContainer {
        width: 100%;
        margin: 1rem auto;
        padding: 00.5rem;
    }
    #alert {
        display: inline-block;
        width: max-content;
        margin: auto;
        text-align: center;
    }
    #alertIcone {
        padding-right: 0;
        text-align: center;
    }
    .alertNav {
        margin: 0;
        padding: 0 1rem;
    }
    #alertInfo {
        width: 100%;
        margin: auto;
        word-break: break-word;
        text-align: center;
    }
}