
.dialog {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    padding: 30px;
    overflow-x: auto;
    overflow-y: scroll;
    background: url(../images/bg_50perc.png);
}

.dialog_window {
    position: relative;
    margin: auto;
    padding: 35px;
    min-width: 220px;
    max-width: 900px;
    border: 3px solid #089dea;
    background: #333333;
}

.dialog_close {
    position: absolute;
    left: 100%;
    bottom: 100%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border: 3px solid #089dea;
    background: url(../images/dialog-close.png) 0 0 no-repeat;
}

@media screen and (max-width: 980px) {

    .dialog {
        padding: 30px 10px;
    }

    .dialog_close {
        left: auto;
        right: -3px;
    }
}

@media screen and (max-width: 760px) {

    .dialog_window {
        padding: 18px 35px 25px;
    }
}

.dialog_close:hover {
    background-position: 0 -24px;
}

.dialog_close:active {
    background-position: 0 -48px;
}

.dialog_content {
    position: relative;
}

.dialog-title {
    margin-bottom: 20px;
    text-align: center;
    font-family: "Exo2-BlackItalic";
    font-size: 35px;
    color: #222222;
}

