.alert-birell{
    background-color: #2badaf;
    border-color: #3cfcff;
}

.custom-alert {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    width: 30rem;
    z-index: 100;
    color: white;
}
.custom-alert .icon {
    margin-right: 10px;
    animation: growShrink 1s ease-in-out 1;
    color: #3cfcff;
}

.custom-alert .btn-close {
    position: absolute;
    top: 50%;
    right: 1rem; /* Adjust the right value to position the button */
    transform: translateY(-50%);
}

@keyframes growShrink {
    0% { transform: scale(1); }
    25% { transform: scale(10); }
    50% { transform: scale(1); }
    75% { transform: scale(10); }
    100% { transform: scale(1); }
}