#helpDeskSubmitFormDialog {
	background-color: #6F4789;
	z-index: 23;
	width: 40em;
	height: 71em;
	border: 0.5em solid white;
	position: fixed;
	bottom: 9em;
    right: 3em;
	overflow: hidden;
}

#btOpenHelpDeskSubmitForm {
    background-color: #6F4789;
    color: white;
    border: none;
    padding: 0.5em 1em;
    font-size: 1em;
    cursor: pointer;
    position: fixed;
    z-index: 22;
    bottom: 8em;
    right: 2em;
    border-radius: 28px;
    height: 56px;
    width: 56px;
}

.helpdesk-submit-component-title {
	color: white;
	text-align: center;
	margin-bottom: 1em;
}

#helpDeskSubmitFormDialog .dx-field-label {
	color: white;
}

#helpDeskSubmitFormDialog .dx-field-value {
	width: 100%;
}

#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;
}

.contactForm label {
    color: white;
}

/* Floating Button for Help Desk */
.help-widget-button {
    position: fixed;
    bottom: 24px;
    right: 96px;
    width: 48px;
    height: 50px;
    border-radius: 50%;
    background: #6F4789;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(56, 17, 81, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 999;
    transition: fadeOut 3s ease; /* Transition properties */
}

.help-widget-button:hover {
    background: #381151;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(56, 17, 81, 0.5);
}

@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;
    }
}

.modal-header {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
}

.modal-body h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    margin-top: 0;
    margin-bottom: 1em;
}

.modal-body {
    padding: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: white;
}

.form-group input,
.form-group textarea,
.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;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
}

.form-group textarea {
    resize: none;
    overflow-y: scroll;
    min-height: 100px;
}

#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;
}

#helpDialogAgreeDiagnostic {
    width: 1em;
    float: inline-start;
}

#helpDialogAgreeDiagnosticLabel {
    float: right;
    margin-left: 0.5em;
    float: inline-start;
}

#help-widget-button-group {
    clear: both;
}

#getDiagnosticInfoTitle {
    text-decoration: underline;
    cursor: help;
}