.alert{
    z-index: 1;
    width: 100%;
    height: 100vh;
    display: none;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}
.alertWindow {
    width: 500px;
    backdrop-filter: blur(4px);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 0.5px rgba(255, 255, 255, 0.4) solid;
    text-align: center;
    #alertLabel{
        font-family: Inter;
        font-weight: bold;
        font-size: 32px;
    }
    #alertText{
        font-family: Inter;
        font-size: 22px;
    }

}
.alertMain{
    margin: 18px;
}
.alertActions{
    margin-top: 18px;
    display: grid;
    #closeAlert{
        background-color: rgb(24, 126, 241);
        color: white;
        &:hover{
            background-color: rgb(7, 97, 194); !important;
        }
        &:active{
            background-color: rgb(24, 126, 241);
            opacity: 0.8;
        }
    }
}
.alertButton{
    backdrop-filter: blur(2px);
    background-color: rgba(219, 219, 219, 0.4);
    font-family: Inter;
    font-size: 18px;
    border-radius: 20px;
    padding: 14px;
    margin: 3px;
    border: solid 1px rgba(255, 255, 255, 0.8);
    transition: 0.2s ease-in;
    cursor: pointer;
    &:hover{
        background-color: rgba(255, 255, 255);
    }
    &:active{
        background-color: rgba(219, 219, 219, 0.4);
    }
}
#alertErrorImage{
    img{
        width: 80px;
        height: 80px;
    }
#alertImage{
    img{
        width: 80px; height: 80px;
    }

}

}
.loader {
    font-size: 10px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    animation: mulShdSpin 1.1s infinite ease;
    transform: translateZ(0);
}

.loader {
    width: 32px;
    height: 32px;
    border: 2.5px solid #2b2b2b;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}