#dialogplusbody{
    display: none;
    position: fixed;
    z-index: 999999;
    overflow: hidden;
    border-radius: 25px;
    width: 100%;
}
#dialogplusbox{
    position: sticky;
    width: auto;
    height: auto;
    background-color: #000000e6;
    padding: 14px;
    text-align: center;
    top: 30%;
    box-shadow: 3px 3px 6px #9999994d;
    margin : 14px;
    border-radius: 25px;
}

#dialogplustext{
    padding-bottom: 14px;
    color: #ffffff;
}
#dialogplusyesno{
    display: inline-flex;
}
#dialogplusyes,#dialogplusno{
    line-height: 50px;
    display: flex;
    padding: 10px;
    border-radius: 25px;
}
#dialogplusyes a,#dialogplusno a{
    display: inline-block;
    background: #ffffffe6;
    color: #000000;
    text-align: center;
    text-decoration: none;
    width: 50px;
    height: 50px;
    transition: all .4s ease;
    border-radius: 25px;
}
#dialogplusyes a:hover,#dialogplusno a:hover {
    background-color: #b3b3b3;
    color: #ffffff;
}