﻿/* ---------------- Dialog ---------------- */

.dialog {
    border: 5px solid #069999;
    padding: 12px;
    background: #f9f9f9;
    color: #514f50;
    line-height: 1.5em;
}

.dialog-alert {
    border: 5px solid #dd0000;
}

.dialog.layered {
    font-weight: bold;
    position: absolute;
    top: -9999px;
    left: 0px;
    width: 240px;
    font-size: 14px;
    z-index: 50;
}

    .dialog.layered:after {
        content: ' ';
        display: block;
        position: relative;
        width: 40px;
        height: 20px;
        margin: -20px auto 0;
        top: 32px;
        background: url('/images/sprite-50x50.png') no-repeat -50px -200px;
    }

.dialog p var {
    font-weight: normal;
}

.dialog .close {
    float: right;
    text-transform: uppercase;
    color: #919191;
    font-weight: normal;
    padding: 0 24px 0 0;
    margin-bottom: 10px;
    border: 0;
    font-size: 12px;
}

    .dialog .close:after {
        content: ' ';
        float: right;
        width: 16px;
        height: 16px;
        background: url('/images/sprite-50x50.png') no-repeat -50px -250px;
        margin: -1px -24px 0 0;
    }

    .dialog .close + p {
        clear: right;
    }

.dialog .prompt li {
    padding-bottom: 4px;
}

/* ---------------- Popup dialog ---------------- */

.popup-dialog .dialog h1 {
    font-family: 'RobotoLight', 'Helvetica Neue', Helvetica, sans-serif;
    /* text-transform: uppercase; */
    font-weight: normal;
    color: #333;
    font-size: 32px;
    line-height: 32px;
    margin: 0 0 15px 0;
    padding: 0;
}

.popup-dialog p {
    font-family: 'RobotoLight', 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: normal;
    color: #333;
    font-size: 15px;
}

.popup-dialog {
    display: none;
}

    .popup-dialog.active {
        display: block;
        position: static;
    }

        .popup-dialog.active .overlay {
            display: block;
            position: fixed;
            top: 0px;
            right: 0px;
            bottom: 0px;
            left: 0px;
            background-color: #000;
            opacity: .8;
            z-index: 1000;
        }

        .popup-dialog.active .dialog {
            display: block;
            position: fixed;
            left: 50%;
            top: 25%;
            z-index: 1100;
            padding: 28px;
            width: 500px;
            margin-left: -250px;
        }

.table .TableAlignRight {
    text-align: right;
}

@media screen and (max-width: 800px) {
    .popup-dialog.active .dialog {
        width: 50%;
        margin-left: -30%;
    }
}

#divGenericPopupDialogProcessing {
    display: none;
}

#divInfoBox_SearchCase :hover {
    cursor: pointer;
}

.userloggedinfo .userinfo h5 {
    font-family: inherit;
    font-weight: bold;
    color: #333333;
}