.dialog_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 6;

    background-color: rgba(1, 1, 1, 0.5);
    display:none;
}

.dialog_wrapper {
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dialog {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-align-self: center;
    align-self: center;

    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    color: #000;
    border-radius: 2px;
}

@media screen and (min-width: 800px) {
    .dialog {
        width: 800px;
        height: 600px;
    }
}

.dialog h1 {
    margin-left: 20px;
}

.dialog_close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.dialog_close_background {
    border-radius: 12px;
    margin:1px;
    width: 25px;
    height: 25px;
}

.dialog_close img {
    width:25px;
    height:25px;
}

.dialog_scrollwrapper {
    position: relative;
    margin-left: 20px;
    margin-right: 30px;
    margin-bottom: 20px;
    overflow: auto;
}

.dialog_content {
    font-family: 'Open Sans Condensed', sans-serif;
}

.dialog_scrollwrapper::-webkit-scrollbar {
    width: 5px;
}

.dialog_scrollwrapper::-webkit-scrollbar-track {
    background-color: #c5c5c5;
    border-radius: 2px;
}

.dialog_scrollwrapper::-webkit-scrollbar-thumb {
    background-color: #141414;
    border-radius: 2px;
}