#helpDeskSubmitFormDialog {
    background-color: #6F4789;
    z-index: 23;
    width: 60em;
    height: 70em;
    border: 0.2em solid white;
    position: fixed;
    top: 0em;
    right: 3em;
    overflow-y: overlay;
    font-size: 9px;
}

#helpDeskSubmitFormDialog .dx-field-label {
	margin-top: 0.2em;
	color: white;
}

#helpDeskSubmitFormDialog .dx-field-value {
	width: 100%;
}

#helpDeskSubmitFormDialog .btn {
    width: 8em;
    padding: 8px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 100;
    cursor: pointer;
    transition: background 0.2s;
    float: right;
    font-family: 'gotham-light';
    border: 1px solid #46A046;
}

#helpDeskSubmitFormDialog .btn:hover {
    background: hsl(120, 60%, 15%);
}

#helpDeskSubmitFormDialog .btn.btn-submit {
    background: #46A046;
    color: white;
    margin-right: 0.5em;
}

#helpDeskSubmitFormDialog .btn.btn-close {
    background: transparent;
    color: #46A046;
}

#helpDeskSubmitFormDialog .btn.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#helpDeskSubmitFormDialog .btn.btn-submit:hover {
    background: hsl(120, 60%, 15%);
}

#helpDeskSubmitFormDialog .btn.btn-close:hover {
    color: white;
}

.helpdesk-submit-component-title {
	color: white;
	text-align: center;
	margin-bottom: 1em;
}

#labelAgreeToSendDiagnosticInfo {
	color: white;
	float: left;
	display: contents;
	width: 30em;
}

#chkBoxAgreeToSendBrowserVersion {
    float: left;
    margin-right: 0.5em;
}

.group-checkbox-agree-on-send-diagnostic-info {
	margin-top: 16px;
}

.diagnostic-info-tooltip {
	text-decoration: underline;
	cursor: help;
	color: #B8A0C7;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#helpDialogAgreeDiagnostic {
    width: 1em !important;
    float: inline-start;
}

#help-widget-button-group {
    clear: both;
}

#getDiagnosticInfoTitle {
    text-decoration: underline;
    cursor: help;
}

#helpDeskSubmitFormDialog .modal-header {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#helpDeskSubmitFormDialog .modal-header h2 {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
	margin-top: 0px;
}

#helpDeskSubmitFormDialog .modal-body h2 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    margin-top: 0;
    margin-bottom: 1em;
}

#helpDeskSubmitFormDialog .modal-body {
    padding: 12px;
}

#helpDeskSubmitFormDialog .form-group {
    margin-bottom: 25px;
}

#helpDeskSubmitFormDialog .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: white;
}

#helpDeskSubmitFormDialog .form-group input,
#helpDeskSubmitFormDialog .form-group textarea,
#helpDeskSubmitFormDialog .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

#helpDeskSubmitFormDialog .form-group input:focus,
#helpDeskSubmitFormDialog .form-group textarea:focus,
#helpDeskSubmitFormDialog .form-group select:focus {
    outline: none;
    border-color: #B8A0C7;
}

#helpDeskSubmitFormDialog .form-group textarea {
    resize: none;
    overflow-y: scroll;
    min-height: 100px;
}

#helpDialogAgreeDiagnosticLabel {
    float: right;
    margin-left: 0.5em;
    float: inline-start;
}

#knowledge-base-title {
	display: flex;
    float: left;
    padding-top: 1em;
}
