.alert.my-alert {
    position: fixed;
    opacity: 0;
    right: -0px;
    width: 35%;
    z-index: 2001;
    line-height: 20px;
    border-color: rgba(0,0,0,.12) !important;
    border-radius: 4px !important;
    padding: 16px;
    /*font-size: 14px;*/
    /*color: #FFFFFF;*/
    transition: all .3s linear;
    /*animation-name: shows;*/
    animation-fill-mode: forwards;
    animation-delay: 1s;
    animation-duration: 5s;
    top: 86px;
}

.alert.fade.in.my-alert {
    opacity: 0;
}

.alert-success.my-alert {
    background-color: var(--nic-green4);
}

.alert-warning.my-alert {
    background-color: #fff3cd;
}

.alert-danger.my-alert {
    background-color: var(--nic-alert-error);
}

.alert-info.my-alert {
    background-color: #cff4fc;
}

.alert-default.my-alert {
    background-color: #e91d2c;
}

.alert.my-alert button {
    line-height: 10px;
    position: absolute;
    right: 10px;
    z-index: 2002;
}

.alert.my-alert button.close{
    color: #000 !important;
    opacity: 1 !important;
}

.alert.my-alert i {
    font-size: 18px;
    line-height: 35px;
    margin: 0px 10px;
}

.alert.my-alert img {
    max-width: 100%;
}

.alert.my-alert p {
    margin: 0px;
    height: 40px;
    vertical-align: middle;
    display: table-cell;
}