.modal-flash-messages .modal-content {
    border-radius: 25px;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 30px 0 rgb(0 0 0 / 8%)!important;
    border: 0;
    padding: 45px;
    overflow: hidden;
}
body.flash-message-now .modal-backdrop.show {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.85);
    opacity: 1!important;
}
.modal-flash-messages .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-flash-messages .modal-content .alert-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
}
.modal-flash-messages .modal-content .alert-message {
    color: #FFF;
    font-size: 17px;
    font-weight: 400;
}
.modal-flash-messages .modal-content .alert-icon {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 35px;
}
.modal-flash-messages.success .modal-content .alert-icon {
    background-color: #5fd874;
}
.modal-flash-messages.error .modal-content .alert-icon {
    background-color: #ee2826;
}
.modal-flash-messages.warning .modal-content .alert-icon {
    background-color: #dfaa14;
}
.modal-flash-messages.info .modal-content .alert-icon {
    background-color: #3d77c7;
}
.modal-flash-messages .modal-content .alert-icon svg {
    width: 80px;
    color: #000;
}
.modal-flash-messages .modal-content .loading-progress-bar {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    animation: progressAnimation 5s;
}
.modal-flash-messages.success .modal-content .loading-progress-bar {
    background-color: #5fd874;
}
.modal-flash-messages.error .modal-content .loading-progress-bar {
    background-color: #ee2826;
}
.modal-flash-messages.warning .modal-content .loading-progress-bar {
    background-color: #dfaa14;
}
.modal-flash-messages.info .modal-content .loading-progress-bar {
    background-color: #3d77c7;
}
@keyframes progressAnimation {
    0%   { width: 0; }
    100% { width: 100%; }
}
