.modalmsg {
    display: table;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    cursor: default;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.modalmsg > div {
    display: table-cell;
    vertical-align: middle;
}

.modalmsg_window {
    max-width: 300px;
    margin: auto; /* vízszintesen középre igazítás */
    background-color: #F3F3F3;
    position: relative;
    padding: 10px;
    margin-top: -10%; /* jó így ? */
    border: 1px #777 solid;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* a szöveg */
.modalmsg_window > div:first-child {
    padding: 10px;
    font-family: Verdana, Geneva, sans-serif;
}

/* a gombok */
.modalmsg .tbutton {
    display: block;
    margin: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.modalmsg .tbutton+.tbutton {
    margin-top: 30px;
}

/* 480px képernyőszélesség vagy fölötte */
@media all and (min-width: 480px) {

    .modalmsg_window {
        width: 20%;
        min-width: 460px;
    }

    /* a gombok */
    .modalmsg .tbutton {
        display: inline-block;
        margin: 20px;
        padding-top: 5px;
        padding-bottom: 5px;
        width: 140px;
    }
    .modalmsg .tbutton+.tbutton {
        margin-top: 20px;
    }

}