.help-modal {
    align-items: center;
    background-color: rgba(9, 20, 46, 0.55);
    display: none;
    font-family: Roboto, sans-serif;
    height: 100%;
    justify-content: center;
    left: 0;
    padding: 16px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999999999998;
}

.help-modal.show {
    display: flex;
    overflow: hidden;
}

.help-modal-content {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    color: #263238;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    margin: auto;
    max-height: 90vh;
    max-width: 560px;
    overflow: hidden;
    width: 100%;
}

.help-modal-header {
    align-items: center;
    background-color: #224372;
    border-radius: 16px 16px 0 0;
    color: #ffffff;
    display: flex;
    flex-shrink: 0;
    justify-content: space-between;
    padding: 14px 16px;
    z-index: 1;
}

.help-modal-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.help-modal-close {
    background: transparent;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    padding: 0;
}

.help-modal-body {
    flex: 1 1 auto;
    max-height: calc(90vh - 52px);
    min-height: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 16px;
    scrollbar-color: #888888 #e3e3e3;
    scrollbar-gutter: stable;
    scrollbar-width: auto;
    -webkit-overflow-scrolling: touch;
}

.help-modal-body::-webkit-scrollbar {
    width: 20px;
}

.help-modal-body::-webkit-scrollbar-track {
    background: #e3e3e3;
}

.help-modal-body::-webkit-scrollbar-thumb {
    background-color: #888888;
    border: 4px solid #e3e3e3;
    border-radius: 10px;
}

.help-modal-body::-webkit-scrollbar-thumb:hover {
    background-color: #666666;
}

.help-modal-label {
    color: #696969;
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
}

.help-modal-required {
    color: #EA3F3F;
}

.help-modal-row {
    display: grid;
    gap: 0 12px;
    grid-template-columns: 1fr 1fr;
}

.help-modal-field {
    min-width: 0;
}

@media (max-width: 480px) {
    .help-modal-row {
        grid-template-columns: 1fr;
    }
}

.help-modal-input,
.help-modal-textarea {
    border: 1px solid #d7dce1;
    border-radius: 8px;
    box-sizing: border-box;
    color: #263238;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    margin-bottom: 12px;
    padding: 10px;
    width: 100%;
}

.help-modal-input[readonly] {
    background-color: #f5f7fa;
}

.help-modal-textarea {
    min-height: 120px;
    resize: vertical;
}

.help-modal-status {
    color: #EA3F3F;
    font-size: 12px;
    min-height: 18px;
    margin-bottom: 12px;
}

.help-modal-actions {
    display: flex;
    justify-content: flex-end;
}

.help-modal-send {
    background-color: #1E90FF;
    border: 1px solid #1E90FF;
    border-radius: 17px;
    color: #ffffff;
    cursor: pointer;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    height: 36px;
    min-width: 113px;
    padding: 0 15px;
    text-align: center;
}

.help-trigger-inline #helpFreshdeskBottom {
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    padding: 0;
    width: 31px;
    height: 32px;
    z-index: 99999999999999;
}

.help-trigger-inline #helpFreshdesk {
    background-image: url("../help.svg");
    background-size: cover;
    border-radius: 100%;
    cursor: pointer;
    display: block;
    height: 32px;
    margin: 0;
    padding: 0;
    width: 31px;
    z-index: 99999999999999;
}
