#alert {
    position: relative;
    width: 100%;
    min-height: 54px;
    z-index: 100;
    transition: max-height 350ms ease;
    overflow: hidden;
}

#alert .alert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    max-width: 90%;
    height: 100%;
    min-height: 54px;
    margin: 0 auto;
    padding: 12px 0;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    line-height: 160%;
}

#alert .alert-dismiss {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 15px;
    right: 15px;
    border: none;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
}

@media screen and (max-width: 960px) {
    #alert .alert-content {
        text-align: left;
        padding: 8px 16px 8px 0;
        font-size: 12px;
        line-height: 150%;
    }

    #alert .alert-dismiss {
        position: absolute;
        margin-top: 0;
        width: 16px;
        height: 16px;
        top: 10px;
        right: 10px;
    }
}

#alert .alert-dismiss:hover {
    color: black;
}
