#hl-message {
    position: fixed;
    top: 40%;
    left: -300px;
    z-index: 999;
    width: 300px;
    text-align: center;
    background: #558a32;
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
    color: #fff;
    padding: 25px 10px 15px;
    font-size: 15px;
    line-height: 20px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 0.3s;
}
#hl-message .dismiss-hl {
    background: #f13340;
    font-weight: 600;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    right: 0;
    border-top-right-radius: 5px;
    cursor: pointer;
}
#hl-message.active {
    left: 0;
}