.alert-div {
    display: none;
    border-radius: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    width: 450px;
    justify-content: space-between;
    margin-top: 16px;
    position: fixed;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 2000;
    top: 5px;
    right: 16px;
}

.alert-div.danger {
    background-color: #f8e7e3;
    border: 2px solid rgb(237, 189, 171);
}

.alert-div.success {
    background-color: rgb(229, 246, 237);
    border: 2px solid #bedec3;
}

.alert-div.warning {
    background-color: #FEF8EA;
    border: 2px solid #F4E0B8;
}

.alert-left {
    display: flex;
    align-items: center;
}

.alert-icon-background {
    display: flex;
    padding: 3px;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    margin-left: 6px;
}

.alert-icon-background.danger {
    background-color: #f38888;
    box-shadow: 0px 0px 10px 0px rgb(219, 194, 185);
}

.alert-icon-background.success {
    background-color: rgb(169, 223, 194);
    box-shadow: 0px 0px 10px 0px rgb(228, 240, 234);
}

.alert-icon-background.warning {
    background-color: #e6c268;
    box-shadow: 0px 0px 10px 0px rgb(245, 239, 224);
}

.alert-icon {
    padding: 2px;
    height: auto;
    width: auto;
    font-weight: 600;
    font-size: 24px;
    background-color: none;
    border: solid transparent 1px;
    border-radius: 50%;
    color: white;
}

.alert-header {
    margin: 0;
    margin-bottom: 8px;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
}

.alert-text {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.alert-message {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
}

.alert-close {
    display: flex;
    align-self: start;
    color: #8d8d8d;
    font-size: 17px;
}

.slide-in {
    transform: translateY(0);
    opacity: 1;
}

.slide-out {
    transform: translateY(-100%);
    opacity: 0;
}

#alertCloseButton {
    text-decoration: none;
}