/* Stylesheet for the MD Age Check Plugin */

#mdac-window {
    display: table;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    background: rgba( 150, 130, 101, .8 );
    z-index: 9999;
}

#mdac-content {
    display: table-cell;
    vertical-align: middle;
}

#mdac-inner-content {
    width: 600px;
    margin: 0 auto;
    padding: 60px 30px;
    background-color: #fff;
    border-radius: 5px;
    border: 2px solid grey;
}

#mdac-inner-content > table {
    width: 100%;
}

#mdac-inner-content > table tr > td {
    text-align: center;
}

@media screen and (max-width: 750px) {
    #mdac-inner-content {
        width: 80%;
    }
}
