.modal_bg {
    background-color: black;
    opacity : 0.4;
    pointer-events: auto;
}

.modal_rearView {
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}

.dialog {

    position : absolute;
    left : 35vw;
    width : 30vw;
    top : 10vw;
    height : 20vw;
    border-radius: 2vw;
    z-index : 100;
    background-position: center;
    background-size: cover;
}

.dialog .title {
    position : absolute;
    left : 0;
    width : 100%;
    top : 20%;
    height : 15%;
    display: table;
    /*border: 1px dotted blue;*/
}

.dialog .title .content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    font-size: 2.5em;
}

.dialog .body {
    position : absolute;
    left : 0;
    width : 100%;
    top : 35%;
    height : 35%;
    display: table;
    /*border: 1px dotted red;*/
}

.dialog .body .content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    font-size: 1.5em;
}

.dialog .actionStrip {
    position : absolute;
    left : 0;
    width : 100%;
    top : 70%;
    height : 30%;
    /*display: table;*/
    /*border: 1px dotted green;*/
}

.dialog .actionStrip .button{
    position : absolute;
    color : white;
    border-radius: 10px;
    display : table;
    cursor : pointer;
}

.dialog .actionStrip .positive{
    background-color: #6b92d3
}

.dialog .actionStrip .negative{
    background-color: #f17b81
}

.dialog .actionStrip .button .content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    font-size: 1.5em;
}

.frame {
    position : absolute;
    left : 10vw;
    width : 80vw;
    top : 10vw;
    height : 80vw;
    border-radius: 2vw;
    z-index : 100;
}

.frame .mainContent {
    width : 100%;
    height : 100%;
}