
.demoFeedbackDialog {
    font-family: 'Open Sans Regular', 'Open Sans';
    font-style: normal;
    font-size: 12px;
    border: 1px solid rgba(51,51,51,.4);
    -webkit-box-shadow: 0px 1px 5px 0px rgba(51,51,51,.4);
    -moz-box-shadow: 0px 1px 5px 0px rgba(51,51,51,.4);
    box-shadow: 0px 1px 5px 0px rgba(51,51,51,.4);
    background-color: white;
    z-index: 30103;
    margin-top: 0px;
    position: fixed;
    overflow: auto;
    margin: 100px auto;
    left: 0;
    top: 0;
    right: 0;
    width: 600px;
}

    .demoFeedbackDialog input, .demoFeedbackDialog textarea {
        font-family: 'Open Sans Regular', 'Open Sans';
    }

    .demoFeedbackDialog .dialogWrapper {
    }

    .demoFeedbackDialog .dialogHeader, .demoFeedbackDialog .dialogContent {
        margin: 0 15px;
    }

    .demoFeedbackDialog .dialogHeader {
        height: 60px;
    }

        .demoFeedbackDialog .dialogHeader h1 {
			font-size: large !important;
            height: 60px;
            line-height: 60px;
            margin: 0;
            padding: 0;
            vertical-align: middle;
            float: left;
            font-weight: bold;
            background-color: #ffffff;
            border: 0;
        }

        .demoFeedbackDialog .dialogHeader div.closeButton {
            background-image: url('/Orion/Demo/images/closeButton.png');
            height: 20px;
            width: 20px;
            margin-top: 20px;
            display: inline-block;
            background-repeat: no-repeat;
            float: right;
            cursor: pointer;
        }

    .demoFeedbackDialog .dialogSeperator {
        width: 100%;
        height: 1px;
        background-color: rgb(213,213,213);
    }

        .demoFeedbackDialog .dialogSeperator.down {
            margin-bottom: 15px;
        }


        .demoFeedbackDialog .dialogSeperator.up {
            margin-top: 15px;
        }


    .demoFeedbackDialog .dialogActionPanel {
        height: 60px;
        margin: 0 15px;
        position: relative;
    }

        .demoFeedbackDialog .dialogActionPanel .dialogActionButtonBar {
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            position: absolute;
            width: 100%;
            margin: auto;
            height: 30px;
        }

        .demoFeedbackDialog .dialogActionPanel .actionButton {
            line-height: 30px;
            min-width: 100px;
            background-color: #297994;
            color: #fff;
            padding: 0 10px;
            margin-left: 15px;
            float: right;
            cursor: pointer;
            text-align: center;
            box-sizing: border-box;
            font-weight: bold;
        }

            .demoFeedbackDialog .dialogActionPanel .actionButton:hover {
                background-color: #23677e;
            }

            .demoFeedbackDialog .dialogActionPanel .actionButton:active {
                background-color: #204a63;
                transition: all 1s ease;
            }


            .demoFeedbackDialog .dialogActionPanel .actionButton.tertiary {
                background: #fff;
                color: #297994;
            }

                .demoFeedbackDialog .dialogActionPanel .actionButton.tertiary:hover:not(.disabled), .demoFeedbackDialog .dialogActionPanel .actionButton.tertiary:active {
                    background-color: #f0f0f0;
                    color: #23677e;
                }


.demoFeedbackDialogLightbox {
    position: fixed;
    top: 41px; /*Grayout under demo banner.*/    
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30102;
    background-color: rgba(51,51,51,.5);
}


.demoFormLabelContainer {
    margin-bottom: 7px;
}

    .demoFormLabelContainer .formLabel {
        font-weight: bold;
        text-align: left;
    }

    .demoFormLabelContainer .validationIsRequired {
        padding-left: 5px;
        color: #767676;
    }

.demoFormInputWrapper {
    margin-bottom: 10px;
    clear:both;
}


.demoFormInputElementContainer {
    display: block;
}

.demoFormInputElement {
    border: 1px solid rgba(213,213,213,.5);
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(213,213,213,0.5);
    -moz-box-shadow: inset 0px 1px 3px 0px rgba(213,213,213,0.5);
    box-shadow: inset 0px 1px 3px 0px rgba(213,213,213,0.5);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .demoFormInputElement:hover {
        border-color: #cbcbcb;
    }

    .demoFormInputElement:focus {
        border-color: #23677e;
    }

    .demoFormInputElement:disabled {
        background-color: rgba(213,213,213, .6);
        border-color: rgba(213,213,213, .6);
    }

    .demoFormInputElement.demoValidationTextBox {
        height: 30px;
        width: 100%;
        display: block;
        padding-left: 10px;
        padding-right: 25px;
    }


    .demoFormInputElement.demoValidationTextArea {
        height: 200px;
        width: 100%;
        border: 1px solid rgba(213,213,213,.5);
        -webkit-box-shadow: inset 0px 1px 3px 0px rgba(213,213,213,0.5);
        -moz-box-shadow: inset 0px 1px 3px 0px rgba(213,213,213,0.5);
        box-shadow: inset 0px 1px 3px 0px rgba(213,213,213,0.5);
        padding: 10px;
        overflow: auto;
    }




.demoValidationTextBox.validationIcon, .demoValidationTextArea.validationIcon {
    background-repeat: no-repeat;
    background-position: right 7px center;
    background-size: 16px 16px;
}

.demoValidationTextArea.validationIcon {
    background-position: right 7px top 7px;
}

    .demoValidationTextBox.validationIcon.error, .demoValidationTextArea.validationIcon.error {
        color: #d50000;
        background-color: #ffe4e0;
        border-color: #d50000;
        font-weight: bold;
    }

    .demoValidationTextBox.validationIcon.error {
        background-image: url('/Orion/Demo/images/validationError.png') !important;
    }
        .demoValidationTextBox.validationIcon.error:hover, .demoValidationTextArea.validationIcon.error:hover {
            border-color: #c00000;
        }

    .demoValidationTextBox.validationIcon.success {
        background-image: url('/Orion/Demo/images/validationSuccess.png') !important;
    }

.demoValidationMessageContainer {
    margin-top: 7px;
    display: none;
}

    .demoValidationMessageContainer .validationErrorMessage {
        color: #d50000;
        font-size: 11px;
        font-weight: bold;
        word-wrap: break-word;
    }


.helpMessagePanel {
    position: absolute;
}






/*#region tooltip */


.demoTooltip {
    background: url('/Orion/Demo/images/info.png') no-repeat;
    background-size: 16px;
    cursor: pointer;
    height: 16px;
    width: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.demoTooltipContainer {
    position: relative;
    display: none;
}

.demoTooltipContent {
    position: absolute;
    background: #ffffff;
    border: 1px solid #d5d5d5;
    padding: 7px;
    font-size: 11px;
    color: #000;
    top: 25px;
    left: -4px;
    z-index: 30102;
    word-wrap: break-word;

}

    .demoTooltipContent:after, .demoTooltipContent:before {
        bottom: 100%;
        left: 5px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .demoTooltipContent:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #ffffff;
        border-width: 7px;
        margin-left: -1px;
    }

    .demoTooltipContent:before {
        border-color: rgba(213, 213, 213, 0);
        border-bottom-color: #d5d5d5;
        border-width: 8px;
        margin-left: -2px;
    }

    .demoTooltipContent ul, .demoTooltip ul li {
        list-style: none;
        list-style-type: none;
        padding: 0;
        margin: 0;
        background: none;
    }

/*#endregion */


/*#region demoButton */


.demoButton {
    font-size: 12px;
    color: #0079AA;
    border: 1px solid #cbcbcb;
    padding: 0 10px;
    cursor: pointer;
    min-width: 100px;
    max-width: 300px;
    word-wrap: break-word;
    height: 30px;
    display: table-cell;
    vertical-align: middle;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    margin-right: 15px;
}

    .demoButton.secondary {
        background: #fff;
        color: #297994;
        border: 2px solid #297994;
    }

        .demoButton.secondary:hover:not(.disabled) {
            background-color: #f0f0f0;
            border-color: #23677e;
            color: #23677e;
        }

        .demoButton.secondary:active:not(.disabled) {
            /*animation 20% @selected-dark-blue*/
            color: rgba(35, 103,126, .2);
        }

        .demoButton.secondary.disabled {
            color: #767676;
            border-color: #767676;
            opacity: .4;
            filter: alpha(opacity=40);
        }

/*#endregion */


/*#region Attachments */

.feedbackAttachmentList {
}

.feedbackAttachmentItem {
    margin-bottom: 7px;
    color: #333333;
    font-family: 'Open Sans Light', 'Open Sans';
}

    .feedbackAttachmentItem .attachmentItemContainer {
        background-color: #f6f6f6;
        border: 1px solid #d5d5d5;
        margin: 0;
        overflow-y: hidden;
        padding: 4px 4px 4px 8px;
        min-width: 430px;
    }

    .feedbackAttachmentItem.error .attachmentItemContainer {
        background-color: #ffe4e0;
        color: #d50000;
        border: 1px solid #d50000;
    }


    .feedbackAttachmentItem .fileInfo {
        float: left;
        padding: 0 8px 0 0;
        text-decoration: none;
    }

    .feedbackAttachmentItem .fileName {
        display: inline-block;
        overflow: hidden;
        padding: 3px 0;
        text-overflow: ellipsis;
        vertical-align: bottom;
        white-space: nowrap;
        max-width: 330px;
        font-weight: bold;
    }

    .feedbackAttachmentItem .fileSize {
        color: #777;
        display: inline-block;
        padding: 3px 0 3px 2px;
    }


    .feedbackAttachmentItem.uploaded .deleteAttachment {
        background: url('/Orion/Demo/images/closeButton.png') no-repeat 0 0;
        cursor: pointer;
        float: right;
        height: 24px;
        margin-top: 1px;
        width: 24px;
    }

    .feedbackAttachmentItem.uploading .uploadError {
        color: #c00;
        font-weight: bold;
    }

    .feedbackAttachmentItem.uploading .uploadInfo {
        float: right;
    }




    .feedbackAttachmentItem.uploading .progressBar {
        padding: 1px;
        overflow: hidden;
        margin-top: 5px;
        vertical-align: middle;
        background: #d5d5d5;
    }

        .feedbackAttachmentItem.uploading .progressBar:hover {
            background: #cccccc;
        }

        .feedbackAttachmentItem.uploading .progressBar .progress {
            background: #204A63;
            height: 3px;
            font-size: 0;
            width: 0%;
        }

            .feedbackAttachmentItem.uploading .progressBar .progress:hover {
                background: #19394c;
            }

    .feedbackAttachmentItem.uploading .attachmentUploadStatusIcon {
        margin-right: 5px;
        vertical-align: middle;
    }

    .feedbackAttachmentItem.error .attachmentUploadStatusIcon {
        width: 16px;
        height: 16px;
        background: url('/Orion/Demo/images/validationError.png') no-repeat 0 0;
        background-size: 16px 16px;
        display: inline-block;
        vertical-align: bottom;
    }


    .feedbackAttachmentItem.uploading .attachmentCancelUploadLink, .feedbackAttachmentItem.error .attachmentCancelUploadLink {
        color: #0079AA !important;
        display: inline-block;
        margin-left: 5px;
        cursor: pointer;
    }

        .feedbackAttachmentItem.uploading .attachmentCancelUploadLink:hover, .feedbackAttachmentItem.error .attachmentCancelUploadLink:hover {
            font-weight: bold;
        }


/*#endregion */


#feedbackDialogAutoSaveProgressBar {
    position: absolute;
    top: 15px;
    left: 0;
}

#feedbackDialogAutoSaveUploadIcon {
    margin-right: 5px;
}

.validationMessageLengthCounter {
    float: right;
    color: rgb(48, 178, 48);
}

.validationMessageLengthCounter.messageLengthNegative {
    color:#d50000;
}

.actionLink {
	margin: 20px 0 0px 0;
}

.actionLink a {
    color: #0079aa;
    text-decoration: none;
}

    .actionLink a:hover {
        color: #23677e;
        text-decoration: underline;
    }


#demoFeedbackSubmissionPanel {
    z-index: 31010;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 120px auto;
    width: 360px;
    border: 1px solid rgba(51,51,51,.4);
    -webkit-box-shadow: 0px 1px 5px 0px rgba(51,51,51,.4);
    -moz-box-shadow: 0px 1px 5px 0px rgba(51,51,51,.4);
    box-shadow: 0px 1px 5px 0px rgba(51,51,51,.4);
    background-color: white;
    font-size: 12px;
}

#demoFeedbackSubmissionCancelButton {
    line-height: 30px;
    min-width: 100px;
    background-color: #297994;
    color: #fff;
    padding: 0 10px;
    margin: 10px 0;
    float: left;
    cursor: pointer;
    text-align: center;
}

    #demoFeedbackSubmissionCancelButton:hover {
        background-color: #23677e;
    }

    #demoFeedbackSubmissionCancelButton:active {
        background-color: #204a63;
    }


#demoFeedbackSubmissionStatusText {
    font-weight: bold;
}


.demoFeedbackSubmissionStatus.statusIcon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 7px;
}

    .demoFeedbackSubmissionStatus.statusIcon.error {
        background-image: url('/Orion/Demo/images/validationError.png');
    }

    .demoFeedbackSubmissionStatus.statusIcon.success {
        background-image: url('/Orion/Demo/images/validationSuccess.png');
    }