.hidePanelDataGrid .dx-datagrid-rowsview {
    visibility: collapse;
}

.dx-toolbar-label .dx-toolbar-item-content > div {
    overflow: visible;
    width: 1000px;
}

.dx-texteditor.dx-editor-filled {
    background-color: transparent !important;
}

.dx-texteditor.dx-editor-filled.dx-state-hover {
    background-color: rgba(0,0,0,.04) !important;
}

.dx-texteditor.dx-editor-filled.dx-state-focused {
    background-color: rgba(0,0,0,.04) !important;
}

.svgLoader {
    animation: spin 0.5s linear infinite;
    margin: auto;
}
.divLoader {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.dx-selection td{
    background: #52caea !important;
}

.notify-content-wrapper {
    max-height: 150px;
    padding: 10px;
    overflow-y: auto;
    white-space: pre-wrap;
    font-size: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.notify-content-wrapper::-webkit-scrollbar {
    width: 6px;
}

.notify-content-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.notify-content-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    border: none;
}

.notify-content-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
}