:root{
    --userAlert__dark: #faf9fb; /* woodsmoke-50 */
    --userAlert__bg-color: rgba(20, 18, 23, 0.6); /* woodsmoke-950 */
    --userAlert__box-bg-color: rgba(49, 47, 54, 0.65); /* woodsmoke-800 */
    --userAlert__box-footer-bg-color: rgba(31, 29, 35, 0.65); /* woodsmoke-900 */

    --userAlert__defult-text-color: #b6b4ba; /* woodsmoke-300 */
    --userAlert__box-footer-text-color: #94919a; /* woodsmoke-400 */

    --userAlert__radius: 15px;
    --userAlert__radius-btn: 10px;

    --userAlert__btn-bg-color: linear-gradient(
        to bottom,
        rgba(130, 98, 255, 0.25),
        rgba(20, 18, 23, 0.4)
    );
    --userAlert__btn-border-color: rgba(130, 98, 255, 0.4);

    --userAlert__success: #6937ff;
}

#userAlert__Wrapper *{
    font-family: var(--font-Kalameh);
}
#userAlert__Wrapper {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.userAlert__main{
    width: 330px;
    border-radius: var(--userAlert__radius);
    background-color: var(--userAlert__box-bg-color);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;

    backdrop-filter: blur(12px);
    border: 1px solid rgba(120, 117, 127, 0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.userAlert__main.userAlert__main_show {
    opacity: 1;
    transform: translateY(0);
}
.userAlert__header{
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.userAlert__header div{
    display: flex;
    align-items: center;
    gap: 10px;
}
.userAlert__header svg, .userAlert__header i{
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    font-size: 24px;
}
.userAlert__title{
    color: var(--userAlert__dark);
    font-weight: 700;
}
.userAlert__header_button_box{
    padding-right: 10px;
}
.userAlert__header_button{
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.userAlert__body{
    display: none;
    font-size: 14px;
    padding: 0 20px 10px 45px;
    color: var(--userAlert__defult-text-color);
}
.userAlert__body p{
    margin: 0;
}
.userAlert__body_button_box{
    display: flex;
    gap: 5px;
    margin-top: 10px;
}
.userAlert__body_button{
    padding: 7px 10px;
    border-radius: var(--userAlert__radius-btn);
    border: 1px solid var(--userAlert__btn-border-color);
    font-weight: 600;
    cursor: pointer;

    background: var(--userAlert__btn-bg-color);
    color: var(--userAlert__dark);
}
.userAlert__footer{
    overflow: auto;
    border-radius: 0 0 var(--userAlert__radius) var(--userAlert__radius);
    background-color: var(--userAlert__box-footer-bg-color) !important;
}
.userAlert__footer_textbox{
    font-size: 12px;
    padding: 4px 10px;
    color: var(--userAlert__box-footer-text-color);
}
.userAlert__footer_timer{
    font-weight: 700;
    color: var(--userAlert__defult-text-color);
}
.userAlert__footer_close{
    font-weight: 700;
    color: var(--userAlert__defult-text-color);
    cursor: pointer;
    color: var(--userAlert__dark);
    &:hover{
        text-decoration: underline;
    }
}
.userAlert__header_button_close:hover{
    transform: rotate(90deg);
}
.userAlert__footer_timeline{
    width: 100%;
    height: 4px;
    background: linear-gradient(
        to right,
        var(--logo-color-start),
        var(--logo-color-end)
    );
    /* background: linear-gradient(
        to right,
        #6937ff,
        #8262ff
    ); */
}
@keyframes userAlert__timeline {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}