body {
    background: url("/img/bg-0.jpg") repeat;
    color: wheat;
    max-width: 1700px;
    margin: 0 auto;
}
.dialogs {
    border: 1px solid black;
    overflow: hidden;
    overflow-y: auto;
    height: 100vh;
    /*height: calc(100vh - 20px);*/
}
.dialogs > div {
    border-top: 1px solid #72ad6b;
    font-size: 20px;
    margin: 3px 0;
    padding: 5px 10px;
}
.dialogs > div > img {
    width: 90%;
    margin: 0 auto;
    display: block;
}
.dialogs > div.cssload-loader {
    border: none;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}
.dialogs > div:before {
    content : "";
    display: table;
    width   : 25%;
    border-top: 6px solid #72ad6b;
    border-left: 6px solid transparent;
    position: relative;
    bottom: 5px;
    left: 76%;
}

div.item.selected-response {
    text-align: right;
    font-style: italic;
    color: ghostwhite;
    padding-right: 7px;
}

div[data-to-dialog] {
    background: #e1efe2;
    color: black;
    padding-left: 7px;
    border-radius: 3px;
    margin-bottom: 10px;
    cursor: pointer;
}
div[data-to-dialog].return {
    background: #e8d2d2;
    color: red;
    text-align: center;
}
.dialogs > div.return {
    border: none;
}
.dialogs > div[data-to-dialog]:before {
    display: none;
}
.dialogs > div.cssload-loader:before {
    display: none;
}

.cssload-loader {
    display: none;

}


