.alert__bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0, 0, 0, .75);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.alert__box {
    background-color: #000000;
    position: relative;
    width: 100%;
    max-width: 340px;
    height: 280px;
    border-radius: 10px;
    border: 1px solid rgb(161, 161, 161, .5);
    padding-top: 22px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.alert__close {
    width: 17px;
    height: 17px;
    background-image: url(../img/close.svg);
    position: absolute;
    top: 14px;
    right: 15px;
    cursor: pointer;
    z-index: 1;
}
.alert__title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    color: #E3052D;
    margin-bottom: 20px;
}
.alert_18 {
    margin-bottom: 20px;
}
.alert__info {
    font-size: 18px;
    color: #ffffff;
    line-height: 120%;
    text-align: center;
    margin-bottom: 23px;
}
.alert_btn {
    display: flex;
    gap: 10px;
}
.alert__btn {
    width: 132px;
    height: 46px;
    background-color: #E3052D;
    cursor: pointer;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 18px;
    line-height: 130%;
}
.alert__btn:hover {
    background-color: rgb(227, 5, 45, .6);
}
.alert__btn2 {
    width: 132px;
    height: 46px;
    background-color: rgb(227, 5, 45, .6);
    cursor: pointer;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 18px;
    line-height: 130%;
}
.alert__btn2:hover {
    background-color: #E3052D;
}
.alert_fire {
    display: block;
    position: absolute;
    top: -125px;
}