﻿:root {
    /* Brand & Primary Palette */
    --color-brand-primary: #d73740;
    --input-select-textarea-bg: #fbfafa;
    --input-select-textarea-disabled-bg: #dbdbdb;
    --color-brand-secondary: #1c3c5c;
    --color-h5-header: #1c3c5c;
    --color-h5-i-header: #d73740;
    --stat-color: #rfrfrfr;
    /* Background & Surface */
    --color-bg-default: #e7e7e7;
    --color-surface-default: #ffffff;
    --color-sidebar-bg: #003f7b;
    --color-sidebar-surface: #1c3c5c;
    --color-sidebar-icon: #2865a161;
    --color-sidebar-icon-hover: #c68f93;
    --color-fieldset-bg: #f5f5f5;
    --color-sidebar-header-bg: rgba(149, 55, 65, 0.31);
    --color-sidebar-selected-bg: #2e3c6994;
    /* Borders & Dividers */
    --color-border-default: #dddddd;
    --color-border-muted: #6c757d;
    --color-border-dark: #464a52;
    /* Text & Iconography */
    --color-text-muted: #bbc1cd;
    --color-text-secondary: #6c7b88;
    /* Overlay & Backdrop */
    --color-overlay-light: #ffffff99;
    --color-overlay-strong: #ffffffe0;
    /* Animation Keyframes */
    --color-anim-from: #41363e;
    --color-anim-to: #ffffff0a;
    /* Shadows */
    --shadow-card-default: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-footer: -2px -1px 5px #282c33;
    --shadow-text-highlight: 0 0 10px rgba(255, 255, 255, 0.48);
    /* Miscellaneous Grays */
    --color-grey-dark: #666666;
    --color-grey-medium: #bdbdbd;
    --color-grey-light: #cccccc;
    /* Transparent */
    --color-transparent: transparent;
}

body {
    min-height: 100vh;
    font-size: 0.9rem;
}

*::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom right, var(--color-brand-secondary) 0%, var(--color-brand-secondary) 100%);
}

*::-webkit-scrollbar-track {
    background-color: var(--color-brand-primary);
    border: 1px solid var(--color-brand-primary);
}
 
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

a {
    text-decoration: none;
}

@keyframes bellshake {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(5deg);
    }

    30% {
        transform: rotate(-5deg);
    }

    45% {
        transform: rotate(4deg);
    }

    60% {
        transform: rotate(-4deg);
    }

    75% {
        transform: rotate(2deg);
    }

    85% {
        transform: rotate(-2deg);
    }

    92% {
        transform: rotate(1deg);
    }

    100% {
        transform: rotate(0);
    }
}

[v-cloak] {
    display: none;
}

fieldset {
    border: 1px solid var(--color-border-default) !important;
    margin: 0 !important;
    min-width: 0 !important;
    padding: 10px !important;
    position: relative !important;
    border-radius: 4px !important;
    background-color: var(--color-fieldset-bg) !important;
    padding-left: 10px !important;
}

legend {
    font-size: 16px !important;
    font-weight: bold !important;
    width: auto !important;
    border: 1px solid var(--color-border-default) !important;
    border-radius: 4px !important;
    margin-top: -20px !important;
    padding: 10px !important;
    background-color: var(--color-surface-default) !important;
    text-align: start !important;
    color: var(--color-h5-header);
}

.home-image {
    height: calc(99vh - 44px);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 250px;
}

@keyframes sidebar-animation {
    from {
        background-color: var(--color-anim-from);
    }

    to {
        background-color: var(--color-anim-to);
    }
}

@keyframes swing {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(10deg);
    }

    30% {
        transform: rotate(0deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(5deg);
    }

    70% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes sonar {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand > a,
.sidebar-wrapper .sidebar-dropdown > a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page-wrapper {
    min-height: 100vh;
    background: var(--color-bg-default);
    padding: 15px;
}

.page-wrapper.toggled .sidebar-wrapper {
    left: 0px;
}

.page-wrapper .page-content {
    width: 100%;
    background: var(--color-surface-default);
    border-radius: 7px;
}

    .page-wrapper .page-content .main-content {
        height: fit-content;
        width: 100%;
        overflow-x: hidden;
        padding: 10px
    }

@media screen and (min-width: 768px) {
    .page-wrapper.toggled {
        padding-left: 275px;
    }
}

#addToggle {
    position: fixed;
    left: 0;
    bottom: 10px;
    border-radius: 0 4px 4px 0px;
    width: 35px;
    transition-delay: 0.3s;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page-wrapper.toggled #addToggle {
    left: -40px;
}

.sidebar-wrapper {
    width: 260px;
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    left: -260px;
    z-index: 1002;
}

.sidebar-wrapper ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar-wrapper a {
    text-decoration: none;
}

.sidebar-content {
    overflow-y: auto;
    position: relative;
    min-height: 100vh;
}

.sidebar-wrapper .sidebar-brand {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-wrapper .sidebar-brand img {
    height: 40px;
    flex-grow: 1;
}

.sidebar-wrapper .sidebar-brand #close-sidebar {
    cursor: pointer;
    font-size: 20px;
}

.sidebar-header {
    padding: 10px 10px;
    background: var(--color-sidebar-header-bg);
    border-top: 1px solid var(--color-border-muted);
    border-bottom: 1px solid var(--color-border-muted);
    display: flex;
}

.sidebar-header img {
    width: 50px;
    border: 3px solid var(--color-border-muted);
}

.sidebar-wrapper .sidebar-header .user-pic {
    float: left;
    width: 70px;
    max-width: 70px;
    padding: 2px;
    border-radius: 12px;
    margin-right: 7px;
    overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.sidebar-wrapper .sidebar-header .user-info {
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-wrapper .sidebar-header .user-info > span {
    display: block;
}

.sidebar-wrapper .sidebar-header .user-info .user-role {
    font-size: 14px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status {
    font-size: 14px;
}

.sidebar-wrapper .sidebar-menu {
    padding-bottom: 40px;
    max-height: calc(100vh - 9rem);
    overflow-y: auto;
}

.sidebar-wrapper .sidebar-menu .header-menu span {
    font-weight: bold;
    font-size: 14px;
    padding: 15px 20px 5px 20px;
    display: inline-block;
}

.sidebar-wrapper .sidebar-menu ul li a {
    display: inline-block;
    width: 100%;
    text-decoration: none;
    position: relative;
    padding: 8px 30px 8px 10px;
}

.sidebar-wrapper .sidebar-menu ul li a i {
    margin-right: 2px;
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 4px;
}

.sidebar-dropdown.selected {
    background: var(--color-sidebar-selected-bg);
}

.sidebar-wrapper .sidebar-menu ul li.selected > a {
    color: var(--color-surface-default);
    background: var(--color-anim-to);
    border-radius: 2px 0px 0px 2px;
    animation: sidebar-animation ease-in-out 0.1s 1 alternate; 
}

.sidebar-wrapper .sidebar-menu ul li.selected .active {
    color: #31353d;
    background: #ffffffbd;
    border-radius: 2px 0px 0px 2px; 
    font-weight: 600;
}

.sidebar-wrapper .sidebar-menu ul li a:hover > i::before {
    display: inline-block;
    animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
    font-family: "FontAwesome";
    font-weight: 900;
    content: "\f0d7";
    font-style: normal;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    background: 0 0;
    position: absolute;
    right: 15px;
    top: 12px;
    transition: transform .2s ease;
}


.sidebar-wrapper .sidebar-menu .sidebar-dropdown.selected > a::after {
    content: "\f0d8"; 
    transform: none; 
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown li {
    padding-left: 25px;
    font-size: 13px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown li a:before {
    content: "\f068";
    font-family: "FontAwesome";
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 10px;
    font-size: 8px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown > .active:after {
    display: none;
}

.sidebar-wrapper .sidebar-menu ul li a span.label,
.sidebar-wrapper .sidebar-menu ul li a span.badge {
    float: right;
    margin-top: 8px;
    margin-left: 5px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
    float: right;
    margin-top: 0px;
}

.sidebar-wrapper .sidebar-menu .sidebar-submenu {
    display: none;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
    transform: rotate(90deg);
    right: 17px;
}

.sidebar-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
}

.sidebar-footer > a {
    flex-grow: 1;
    text-align: center;
    height: 30px;
    line-height: 30px;
    position: relative;
}

.sidebar-footer > button {
    flex-grow: 1;
    text-align: center;
    height: 30px;
    line-height: 30px;
    position: relative;
    border: 0;
    background: transparent;
}

.sidebar-wrapper {
    background: var(--color-sidebar-bg);
}

.sidebar-wrapper .sidebar-search,
.sidebar-wrapper .sidebar-menu {
    border-top: 1px solid var(--color-sidebar-surface);
}

.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text {
    border-color: transparent;
    box-shadow: none;
}

.sidebar-wrapper .sidebar-header .user-info .user-role,
.sidebar-wrapper .sidebar-header .user-info .user-status {
    color: var(--color-text-muted);
}

.sidebar-wrapper .sidebar-header .user-info,
.sidebar-wrapper .sidebar-brand > a,
.sidebar-wrapper .sidebar-menu ul li a,
.sidebar-footer > a, .sidebar-footer > button {
    color: var(--color-surface-default);
}

.sidebar-wrapper .sidebar-brand > a:hover,
.sidebar-footer > a:hover i, .sidebar-footer > button:hover i {
    color: var(--color-brand-primary);
}

.sidebar-wrapper .sidebar-menu ul li:hover > a,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a {
    color: var(--color-surface-default);
    background: var(--color-anim-to);
    border-radius: 2px;
    transition: all 0.3s; 
}

.page-wrapper.chiller-theme.toggled #close-sidebar {
    color: var(--color-grey-medium);
}

.page-wrapper.chiller-theme.toggled #close-sidebar:hover {
    color: var(--color-surface-default);
}

.sidebar-wrapper ul li:hover a i,
.sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before,
.sidebar-wrapper .sidebar-search input.search-menu:focus + span,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
    color: var(--color-sidebar-icon-hover);
    text-shadow: var(--shadow-text-highlight);
}

.sidebar-wrapper .sidebar-menu ul li a i,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown div,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text {
    background: var(--color-sidebar-icon);
}

.sidebar-wrapper .sidebar-menu .header-menu span {
    color: var(--color-text-secondary);
}

.sidebar-footer {
    background: var(--color-sidebar-surface);
    box-shadow: var(--shadow-footer);
    border-top: 1px solid var(--color-border-dark);
}

.sidebar-footer > a:first-child {
    border-left: none;
}

.sidebar-footer > a:last-child {
    border-right: none;
}

.stat-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-card-default);
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.progress {
    height: 8px;
    border-radius: 4px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

a:focus, a:active {
    text-decoration: none;
    outline: none;
    transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    -ms-transition: all 300ms ease 0s;
}

input, select, textarea {
    outline: none;
    appearance: unset !important;
    -moz-appearance: unset !important;
    -webkit-appearance: unset !important;
    -o-appearance: unset !important;
    -ms-appearance: unset !important;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    -o-appearance: none !important;
    -ms-appearance: none !important;
    margin: 0;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: none;
}

input[type=checkbox] {
    appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    -webkit-appearance: checkbox !important;
    -o-appearance: checkbox !important;
    -ms-appearance: checkbox !important;
}

input[type=radio] {
    appearance: radio !important;
    -moz-appearance: radio !important;
    -webkit-appearance: radio !important;
    -o-appearance: radio !important;
    -ms-appearance: radio !important;
}

input:read-only, input:disabled {
    background: var(--input-select-textarea-disabled-bg) !important;
    pointer-events: none;
}

input, select, textarea {
    background: var(--input-select-textarea-bg) !important;
} 

.limiter {
    width: 100%;
    margin: 0 auto;
}

.login-box {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

    .login-box::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: var(--color-overlay-light);
    }

.login-form {
    width: 400px;
    border-radius: 10px;
    overflow: hidden;
    padding: 25px;
    background: var(--color-overlay-strong);
    margin-left: 10%;
    text-align: center;
}

.login-form img {
    width: 250px;
}

#overlay {
    background: var(--color-surface-default);
    color: var(--color-grey-dark);
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    opacity: .60;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 100px;
    aspect-ratio: 1;
    background: radial-gradient(farthest-side,var(--color-brand-secondary) 90%,var(--color-transparent)) center/26px 26px, radial-gradient(farthest-side,var(--color-brand-primary) 90%,var(--color-transparent)) bottom/22px 22px;
    background-repeat: no-repeat;
    animation: l17 1s infinite linear;
    position: relative;
}

.loader::before {
    content: "";
    position: absolute;
    width: 8px;
    aspect-ratio: 1;
    inset: auto 0 16px;
    margin: auto;
    background: var(--color-grey-light);
    border-radius: 50%;
    transform-origin: 50% calc(100% + 10px);
    animation: inherit;
    animation-duration: 0.5s;
}

@keyframes l17 {
    100% {
        transform: rotate(1turn)
    }
}

.swal2-title {
    padding: 1rem !important;
} 

.canvas-header {
    background: #f0f0f0;
    padding: 10px;
    border-radius: 0 0 7px 7px;
    box-shadow: var(--bs-box-shadow-sm) !important;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between; 
}

.menu-items { 
    height: 310px;
    overflow-y: auto;
}

.menu-field-legend {
    width: 100% !important;
    margin-top: 1px !important;
}

.dx-datagrid-rowsview .dx-selection.dx-row:not(.dx-row-focused):not(.dx-row-removed) > td {
    background-color: #002a8836;
    color: unset;
}

.form-label {
    font-weight: 400;
    margin-bottom: 0px;
    color: #646464;
}

.dx-datagrid-rowsview {
    max-height: 450px; 
}

.dx-datagrid .dx-datagrid-headers {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dx-datagrid .dx-datagrid-columns-separator {
    z-index: 1001;
}

.placeholder {
    box-sizing: border-box;
    width: 100%;
    height: 300px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-family: Arial, sans-serif;
    font-size: 18px;
}

.v-select {
    box-shadow: var(--bs-box-shadow-sm) !important;
    border-radius: var(--vs-border-radius);
}
 
.offcanvas-body {
    height: calc(99vh - 35px);
}

.modal-header {
    background: var(--color-brand-primary);
    color: #e1e1e1;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #d9534f12;
    outline: 0;
    box-shadow: 0 0 0 0.15rem #d9534f21;
}

.w-35 {
    width: 35% !important;
}

.w-65 {
    width: 65% !important;
}

.button-form-margin {
    margin-top: 17px;
}


.toast-container {
    bottom: 0;
    right: 0;
    top: 0;
    left: auto;
}

.close {
    background: transparent;
    border: none;
    margin-top: 5px;
}

.user-username {
    position: relative;
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-header {
    position: relative;
    z-index: 1;
}

.sidebar-header .bg {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(/img/logo-white-small.png) no-repeat right;
    opacity: .1;
    width: 100%;
    height: 100%;
}

.main-content .page-header {
    background: #f0f0f0;
    padding: 10px;
    border-radius: 7px;
    box-shadow: var(--bs-box-shadow-sm) !important;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    margin-top: -10px;
    height: 53px;
}

.main-content .page-header h5 {
    margin-bottom: 0px;
    font-size: 18px;
    color: var(--color-h5-header);
}

.main-content .page-header i {
    color: var(--color-h5-i-header);
}

.dx-datagrid-headers .dx-header-row { 
    background: #003f7bd1;
    color: #fff;
}

.dxgrid-size {
    min-height: 300px;
}

#sidebarBackdrop {
    display: none;  
    z-index: 1001;
}

#sidebarBackdrop.show {
    display: block;
}

.offcanvas.w-100 .offcanvas-header input {
    width: 25%;
}

.offcanvas.w-50 .offcanvas-header h5, .offcanvas.w-25 .offcanvas-header h5 {
    font-size: 22px;
    color: var(--color-h5-header);
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .offcanvas.w-100 .offcanvas-header input {
        width: 100%;
        margin-bottom: 9px;
    }
    .offcanvas.w-100 .offcanvas-header, .offcanvas.w-50 .offcanvas-header, .offcanvas.w-25 .offcanvas-header {
        flex-direction: column;
    }
    .offcanvas.w-50, .offcanvas.w-25 {
        width: 100% !important;
    }
    .offcanvas-header-buttons {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
}

.dx-goto-wrapper {
    display: inline-flex;
    align-items: baseline;
    margin-left: 12px;
}

.dx-pages {
    display: flex;
    align-items: center;
}

    .dx-pages .input-group {
        width: 105px;
    }

.dx-grid-header-color-1 {
    background-color: #FF6B6B;
    color: #333333;
}

.dx-grid-header-color-2 {
    background-color: #4ECDC4;
    color: #333333;
}

.dx-grid-header-color-3 {
    background-color: #FFD93D;
    color: #333333;
}

.dx-grid-header-color-4 {
    background-color: #1A535C;
    color: #333333;
}

.dx-grid-header-color-5 {
    background-color: #FF9F1C;
    color: #333333;
}

.dx-grid-header-color-6 {
    background-color: #6A4C93;
    color: #333333;
}

.dx-grid-header-color-7 {
    background-color: #2EC4B6;
    color: #333333;
}

.dx-grid-header-color-8 {
    background-color: #E63946;
    color: #333333;
}

.dx-grid-header-color-9 {
    background-color: #457B9D;
    color: #fff;
}

.dx-grid-header-color-10 {
    background-color: #8AC926;
    color: #000000;
}

.cropper-container {
    max-width: 100%;
}

#cropperHost {
    width: 100%;
    max-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border: 1px dashed #ccc;
    border-radius: 10px;
    overflow: hidden;
}

#cropImage {
    max-width: 100%;
    max-height: 65vh;
    display: block;
}

.dx-fileuploader-show-file-list .dx-fileuploader-files-container {
    padding-top: 0;
}

.dx-datagrid-filter-row .dx-editor-cell .dx-editor-with-menu .dx-menu {
    display: contents !important;
}

.dx-editor-cell .dx-editor-with-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
}

.dx-editor-cell .dx-texteditor-container {
    order: 0 !important;
    flex: 1 1 auto !important;
}

.dx-filter-menu .dx-menu-horizontal {
    order: 1 !important;
}

.dx-texteditor .dx-texteditor-input-container {
    padding-left: 3px !important;
}

.dx-datagrid-filter-row .dx-editor-cell .dx-editor-with-menu .dx-placeholder::before, .dx-datagrid-filter-row .dx-editor-cell .dx-editor-with-menu .dx-texteditor-input {
    padding-left: 3px !important;
}

.dx-datagrid-filter-row .dx-editor-container {
    width: 100%;
}

    .dx-datagrid-filter-row .dx-editor-container .dx-texteditor-input-container > input {
        text-align: left !important;
    }

.dx-filter-menu.dx-menu .dx-menu-item .dx-menu-item-content {
    padding: 4px;
    margin-top: -0.5px !important;
}