﻿@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.AlertBox {
    display: flex;
    flex-direction: column;
    width: 376px;
/*    min-height: 264px;*/
    justify-content: start;
    align-items: center;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    padding: 8px 16px 16px;
    border-radius: 12px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: opacity 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}
.AlertContForBtns{
    display: flex;
    gap: 8px;
    align-items: center;
}
.AlertTitle {
    font-size: 20px;
    font-weight: 800;
    color: #3F3F3F;
    margin-bottom: 12px;
}
.AlertSubtitle {
    font-size: 16px;
    font-weight: 300;
    color: #3F3F3F;
    margin-bottom: 24px;
    text-align: center;
}
.AlertImg{
    width: 69px;
    height: 69px;
    margin-bottom: 8px;
}
.AlertCloseBtn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
    .AlertCloseBtn:hover{
        transform: scale(1.05);
    }
    .AlertBtn {
        margin-top: auto;
    }