.alert-bx {
    /* width: 50%; */
    position: fixed;
    right: 5px;
    top: 5px;
    z-index: 20!important;
    padding: 20px;
    width: 19em;
    border-radius: 5px;
    box-shadow: 0 0 15px 5px #ccc;
}

.close {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.5;
    border-width: 1px;
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border-color: #7f8185;
    color: #7f8185;
    right: 15px;
    top: 10px;
    text-align: center;
    font-size: 1.6em;
    cursor: pointer;
}

.alert-bx .text {
    font-size: 15px;
    padding: 0;
    margin: 0;
    color: #000;
}

.alert-bx.success-alert {
    background-color: #a8f0c6;
    border-left: 5px solid #33945c;
}

.alert-bx.danger-alert {
    background-color: #f7a7a3;
    border-left: 5px solid #a04844;
}
