.adp {
    display: flex;
    box-sizing: border-box;
    flex-flow: column;
    position: fixed;
    z-index: 99999;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 250px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    font-family: Arial;
}
.adp h3 {
    border-bottom: 1px solid #000;
    margin: 0;
    padding: 15px 0;
}
.adp p {
     flex-grow: 1;
}
.adp-underlay {
    background-color: rgba(112, 80, 80, 1);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99998;
}