#notificationDuo{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #292929db;
    z-index: 25;
}
.notificationDuo__content{
    width: 705px;
    height: 332px;
    text-align: center;
    position: relative;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    border-radius: 8px;
}
#notificationDuo svg{
    position: absolute;
    top:20px;
    right: 20px;
    cursor: pointer;
}
.notificationDuo__img{
    width: 150px;
    margin-top: 40px;
}
.notificationDuo__text div:first-child{
    margin-top: 16px;
    font-weight: 700;
    font-size: 14px;
    color: #191919;
}
.notificationDuo__text div:last-child{
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    margin-top: 4px;
}
.notificationDuo__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}
.notificationDuo__btn button{
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid #FF6609;
    outline: none;
    width: 220px;
}
.notificationDuo__btn button:first-child{
    margin-right: 20px;
    background: #FF6609;
    color: #fff;
}
.notificationDuo__btn button:last-child{
    margin-right: 20px;
    background: #fff;
    color: #FF6609;
}
.notificationDuo__btn button:first-child:hover{
    box-shadow: 2px 2px 4px #292929db;
}
.notificationDuo__btn button:last-child:hover{
    box-shadow: 2px 2px 4px #FF6609;
}