
#dialog-overlay {
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    display: none;
}

#dialog-box {
    padding-top: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    background: #fff;
    width: 590px;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    z-index: 9000;
    display: none;
    margin: 10px;
}

#dialog-box .dialog-content {
    text-align: left;
    padding: 5px 0 0 5px;
    margin: 20px 13px 20px 13px;
    color: #000;

}

#dialog-box .buttons {
    text-align: center;
    margin: 10px auto 0 auto;
}

/*#dialog-box a.button_send {
    margin-right: 10px;
    text-align: center;
    display: inline-block;
    padding: 8px 15px;
    color: var(--button-text-color, #000);
    text-decoration: none;
    font-weight: normal;
    line-height: 1;
    width: 80px;
    background: var(--button-background-color, orange);
    border-color: var(--button-background-color, orange);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}*/

#dialog-box a.button {
    display: none;
}

#dialog-box a.button.ecke {
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    display: block;
    padding: 10px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
    width: 20px;
    cursor: pointer;
    border-bottom-left-radius: 5px;
}

#dialog-box a.button.ecke:hover {
    background-color: #ccc;
}

#dialog-message {
    overflow: auto;
    line-height: 1.3;
}

#dialog-message .green {
    color: green;
}
#dialog-message .red {
    color: red;
}
#dialog-message .bold {
    font-weight: bold;
}
#dialog-box .dialog-content p {
    font-weight: normal;
    margin: 0 0 10px 0;
}

#dialog-box .dialog-content ul {
    margin: 10px 0 10px 0;
    padding: 0;
    list-style: none;
}

#dialog-box .dialog-content ul li {
    margin-bottom: 5px;
}

#dialog-box .bewertungslogo {
    float: right;
    margin-right: 20px
}

#dialog-box p.kategorie {
    border-bottom: 1px dotted #ccc;
    margin-bottom: 5px;
    margin-right: 20px;
    padding-bottom: 5px
}

#dialog-box dl.kategorie_bereich {
    margin-bottom: 6px
}

#dialog-box dd.beschreibung {
    clear: both;
    float: left;
    width: 350px;
    margin: 0
}

#dialog-box dt.bewertung_sterne {
    width: 100px;
    margin-right: 20px;
    float: right;
    text-align: center;
    font-size: 12px;
    margin-top: 3px;
}

#dialog-box p.makler {
    font-weight: bold;
    border-bottom: 1px dotted #ccc;
    margin-bottom: 5px;
    margin-right: 20px;
    padding-bottom: 5px
}

#dialog-box p.makler_meinung {
    font-style: italic
}


@media only screen and (max-width: 600px) {
    #dialog-box {
        width: 100%;
        margin: 0;
    }
}