:root {
    --sat: env(safe-area-inset-top);
    --sar: env(safe-area-inset-right);
    --sab: env(safe-area-inset-bottom);
    --sal: env(safe-area-inset-left);
    --light-gray: #8c9196;
    --status-attention: #FFE46B;
    --status-critical: #FFC5C5;
    --status-warning: #FFD79D;
    --status-informational: #8FE0FF;
    --status-success: #AEE9D1;
    --link-color: #2196f3;
    --icon-primary: #757575;
    --icon-secondary: #d8d7d9;
    --text-critical: #dc0d0e;
    --text-orange: #f86b00;
    --stroke: var(--mud-palette-table-lines);
    --filter-dialog-max-height: 720px;
    --appbar-bottom-height: 56px;
    --fuchsia: #e43f6f;
    --pharmacy-color: #33b9b2;
    --brand-primary: #0081c2;
    --mud-palette-action-disabled: #D8D7D9 !important;
    --mud-zindex-dialog: 11000;
    --surface-success: #25A481;
    --surface-primary: #F8F8F8;
    --new-york-grey-200: #ECEBED;
    --color-dodger-blue-50: #EEFAFF;
    --color-dodger-blue-100: #DAF3FF;
    --color-dodger-blue-900: #1A548E;
    --color-ms-teams: #4B56BE;
    --color-zoom: #0B5CFF;
}

html, body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    overscroll-behavior: none !important;
    height: 100vh;
    touch-action: none !important;
    overflow: hidden !important;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    padding-top: var(--sat) !important;
    padding-bottom: var(--sab) !important;
    box-sizing: border-box;
}

    body::before,
    body::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        height: var(--sat);
        z-index: 1389; /*mobile filter dialog is 1400, CLM overlay is 1390*/
    }

    body::after {
        top: auto;
        bottom: 0;
        height: var(--sab);
    }

#app, .mud-rtl-provider, .mud-layout {
    touch-action: none !important;
    height: 100%;
    overflow: hidden !important;
    overscroll-behavior: none !important;
}

footer.mud-appbar.mud-appbar-fixed-bottom::after {
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: var(--sab);
}

.loading-index {
    width: 100vh;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .loading-index .line-box {
        width: 40%;
        height: 6px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 12px;
    }

        .loading-index .line-box .line {
            height: 6px;
            border-radius: 12px;
            opacity: 1;
            background: #fff;
            width: var(--blazor-load-percentage);
            /*transition: width 0.5s ease;*/ /*bar and percentage does not match but can be reused*/
        }

.loading-info {
    font-size: 0.9rem;
    color: #cfd8dc;
    width: 40vh;
    margin-top: 8px;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    gap: 8px;
}

    .loading-info:after {
        content: var(--blazor-load-percentage-text, "0%");
    }

.loading-status-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-grow: 1;
}

.loading-circle {
    width: 14px;
    height: 14px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    33% {
        transform: translateY(-1px);
    }

    66% {
        transform: translateY(1px);
    }
}

.bg-app {
    background-color: var(--mud-palette-background);
}

    .bg-app .bg-app {
        margin: 0;
    }

.bg-transparent {
    background-color: transparent !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-dark {
    background-color: #555 !important;
}

.bg-warning {
    background-color: #FFE46B !important;
}

.bg-link {
    background: var(--link-color) !important;
}

.bg-status-critical {
    background-color: var(--status-critical);
}

.bg-status-success {
    background-color: var(--status-success);
}

.bg-status-warning {
    background-color: var(--status-warning);
}

.bg-bright-gray {
    background-color: #e8eef6;
}

.bg-status-info {
    background-color: var(--status-informational);
}

.bg-surface-primary {
    background-color: var(--surface-primary);
}

.bg-brand-primary {
    background-color: var(--brand-primary) !important;
}

.bg-dodger-blue-50 {
    background-color: var(--color-dodger-blue-50) !important;
}

.bg-surface-success {
    background-color: var(--surface-success) !important;
}

.bg-surface-secondary {
    background-color: #F3F3F3 !important;
}

.text-dodger-blue-900 {
    color: var(--color-dodger-blue-900) !important;
}

.text-white {
    color: #fff;
}

.pb-safe {
    padding-bottom: max(env(safe-area-inset-bottom), 12px) !important;
}

.border-default {
    border: solid 1px var(--new-york-grey-200);
}

.border-default-color {
    border-color: var(--new-york-grey-200);
}

.border-brand-primary-color {
    border-color: var(--brand-primary);
}

/*body {
  padding-top: env(safe-area-inset-top) !important;
  padding-bottom: env(safe-area-inset-bottom) !important;
}*/

.min-safe-h-screen {
    /* equivalent to 100dvh in major browsers */
    min-height: calc( 100dvh - env(safe-area-inset-bottom, 0) - env(safe-area-inset-top, 0) );
}

@supports (-webkit-touch-callout: none) {
    .min-safe-h-screen {
        /* for ios safari 15, safe-area-inset-bottom is 0, so a special fix apply here */
        min-height: -webkit-fill-available;
    }
}

h1:focus {
    outline: none;
}



/* mobile variables */
.my-0\.5 {
    margin-top: 2px;
    margin-bottom: 2px;
}

.my-1\.5 {
    margin-top: 6px;
    margin-bottom: 6px;
}

.ml-6\.5 {
    margin-left: 26px !important;
}

.mr-0\.5 {
    margin-right: 2px !important;
}

.mr-2\.5 {
    margin-right: 0.625rem !important;
}

.pa-0\.5 {
    padding: 2px;
}

.py-0\.5 {
    padding-top: 2px;
    padding-bottom: 2px;
}

.px-0\.5 {
    padding-left: 2px;
    padding-right: 2px;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    color: black;
    box-shadow: 0 -0.0625rem 0.125rem rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        right: auto;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.circle-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20dvh auto 1rem auto;
}

    .circle-progress circle {
        fill: none;
        stroke: #0081c2;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .circle-progress circle:last-child {
            stroke: white;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 1s ease-in-out;
        }

.circle-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20dvh + 3.25rem) 0 auto 0.2rem;
}

    .circle-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }


.loading-progress {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    background-color: #0081c2; /*Arkaplan rengi ve saydamlık */
    /*background: linear-gradient(122deg, #c70b6f 27%, #ef7c00 86%);*/ /*background for acinocist */
    color: white; /* Metin rengi */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}


#loading-bar {
    pointer-events: none
}

    #loading-bar .bar {
        transition: width 350ms linear,opacity 350ms;
        background: var(--mud-palette-primary);
        border-bottom-right-radius: 0.0625rem;
        border-top-right-radius: 0.0625rem;
        position: fixed;
        z-index: 10002;
        top: 0;
        left: 0;
        height: 0.25rem;
        opacity: 0;
        width: 100%
    }

        #loading-bar .bar.in-progress {
            opacity: 1
        }

        #loading-bar .bar.no-trans {
            transition: opacity 350ms
        }

    #loading-bar .peg {
        position: absolute;
        width: 4.375rem;
        right: 0;
        top: 0;
        height: 0.125rem;
        opacity: .45;
        box-shadow: var(--toolbelt-loadingbar-color) 0.0625rem 0 0.375rem 0.0625rem;
        border-radius: 100%
    }

/* Data Grid */
.datagrid-header {
    flex-grow: 0 !important;
    font-family: Roboto !important;
    font-size: 0.875rem !important;
    font-weight: bold !important;
    font-stretch: normal !important;
    font-style: normal !important;
    line-height: normal !important;
    letter-spacing: 0.02625rem !important;
    border-bottom: none !important;
}

.datagrid-row-bold {
    flex-grow: 0 !important;
    font-family: Roboto !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    font-stretch: normal !important;
    font-style: normal !important;
    line-height: normal !important;
    letter-spacing: 0.02625rem !important;
    color: #333 !important;
}

.datagrid-row-content {
    flex-grow: 1 !important;
    font-family: Roboto !important;
    font-size: 0.875rem !important;
    font-weight: normal !important;
    font-stretch: normal !important;
    font-style: normal !important;
    line-height: normal !important;
    letter-spacing: 0.02625rem !important;
    color: #333 !important;
}

.datagrid-link {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    font-stretch: normal !important;
    font-style: normal !important;
    line-height: normal !important;
    letter-spacing: normal !important;
    color: #0c80df !important;
}
/* Data Grid */


.label-data-message {
    flex-grow: 1;
    font-family: Roboto;
    font-size: 0.875rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.02625rem;
    text-align: left;
    color: #8c9196;
}

.label-header {
    flex-grow: 0;
    font-family: Roboto;
    font-size: 0.875rem;
    font-weight: 600;
    color: #424242;
}

.label-detail {
    font-family: Roboto;
    font-size: 0.875rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #424242;
}

.label-edited-text-new {
    flex-grow: 1 !important;
    font-family: Roboto !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    font-stretch: normal !important;
    font-style: normal !important;
    line-height: normal !important;
    letter-spacing: 0.02625rem !important;
    color: #333 !important;
}

.filter-button {
    background-color: white;
    color: #90a4ae;
    border-radius: 0.5rem;
    border: solid 0.031rem;
    border-color: var(--mud-palette-lines-default);
    text-transform: none
}

.chip-style {
    border-radius: 2.25rem !important;
    /*background-color: #e6f3f9 !important;*/
    background-color: #fff !important;
    border: solid 1px #ecebed !important;
    min-width: 64px;
    max-width: 320px;
}

.chip-style-selected {
    border-radius: 2.25rem !important;
    background-color: var(--mud-palette-primary) !important;
    color: #fff !important;
    border: 1px solid var(--mud-palette-primary) !important;
    min-width: 64px;
    max-width: 320px;
}

.button-group-style-default {
    font-size: 0.875rem;
    font-weight: 400;
    align-items: center;
    gap: 0.625rem;
    padding: 0.375rem 1rem;
    background-color: #fff;
    color: var(--mud-palette-text-primary));
    border-radius: 2rem;
    border: solid 0.0625rem var(--mud-palette-table-lines);
    white-space: nowrap;
}

.button-group-style-orange {
    font-size: 0.875rem;
    font-weight: 400;
    align-items: center;
    gap: 0.625rem;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    background-color: #ffd79d;
    border: solid 0.0625rem var(--mud-palette-table-lines);
    white-space: nowrap;
}

.button-group-style-green {
    font-size: 0.875rem;
    font-weight: 400;
    align-items: center;
    gap: 0.625rem;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    background-color: #aee9d1;
    border: solid 0.0625rem var(--mud-palette-table-lines);
    white-space: nowrap;
}

.button-group-style-red {
    font-size: 0.875rem;
    font-weight: 400;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    background-color: #fed3d1;
    align-self: stretch;
    flex-grow: 0;
    border: solid 0.0625rem var(--mud-palette-table-lines);
    white-space: nowrap;
}

.button-groups-style {
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    border-radius: 0.25rem;
}


.button-primary-box-shadow {
    box-shadow: inset 0 -0.0625rem 0 0 rgba(0, 0, 0, 0.2);
}

.font-4 {
    font-size: 0.25rem !important;
}

.font-8 {
    font-size: 0.5rem !important;
}

.font-10 {
    font-size: 0.625rem !important;
}

.font-12 {
    font-size: 0.75rem !important;
}

.font-13 {
    font-size: 0.8125rem !important;
}

.font-14 {
    font-size: 0.875rem !important;
}

.font-15 {
    font-size: 0.9375rem !important;
}

.font-16 {
    font-size: 1rem !important;
}

.font-18 {
    font-size: 1.125rem !important;
}

.font-20 {
    font-size: 1.25rem !important;
}

.font-21 {
    font-size: 1.3125rem !important;
}

.font-24 {
    font-size: 1.5rem !important;
}

.font-32 {
    font-size: 2rem !important;
}

.font-48 {
    font-size: 3rem !important;
}

.elevation-1 {
    box-shadow: var(--mud-elevation-1);
}

.rounded-l-full {
    border-top-left-radius: 50% !important;
    border-bottom-left-radius: 50% !important;
}

.rounded-r-full {
    border-top-right-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
}


/* Tailwind Styles */
.text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
}

.text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}

.text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
}

.text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
}

.text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
}

.float-right {
    float: right;
}

.text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
}

.font-bold {
    font-weight: 700 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-normal {
    font-weight: 400 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.italic {
    font-style: italic;
}

.hidden {
    display: none !important;
}

.underline {
    text-decoration-line: underline;
}

.overline {
    text-decoration-line: overline;
}

.line-through {
    text-decoration-line: line-through;
}

.no-underline {
    text-decoration-line: none;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

.collapse {
    visibility: collapse;
}

.h-10 {
    height: 2.5rem;
}

.h-11 {
    height: 2.75rem;
}

.h-12 {
    height: 3rem !important;
}

.h-13 {
    height: 3.25rem !important;
}

.h-14 {
    height: 3.5rem !important;
}

h-15 {
    height: 3.75rem;
}

.h-16 {
    height: 4rem !important;
}

.h-17 {
    height: 4.25rem;
}

.h-18 {
    height: 4.5rem;
}

.h-33 {
    height: 8.25rem;
}

.h-2 {
    height: 0.5rem;
}

.h-2\.5 {
    height: 0.625rem;
}

.h-3 {
    height: 0.75rem;
}

.h-3\.5 {
    height: 0.875rem;
}

.h-3\/4 {
    height: 75%;
}

.h-4 {
    height: 1rem;
}

.h-48 {
    height: 12rem;
}

.h-5 {
    height: 1.25rem !important;
}

.h-5\/6 {
    height: 83.333333%;
}

.h-56 {
    height: 14rem;
}

.h-72 {
    height: 18rem;
}

.h-6 {
    height: 1.5rem !important;
}

.h-7 {
    height: 1.75rem;
}

.h-7\.5 {
    height: 1.875rem;
}

.h-8 {
    height: 2rem !important;
}

.h-8\.5 {
    height: 2.125rem;
}

.h-9 {
    height: 2.25rem !important;
}

.h-10 {
    height: 2.5rem;
}

.h-11 {
    height: 2.75rem;
}

.h-13 {
    height: 3.25rem;
}

.h-14 {
    height: 3.5rem;
}

.h-20 {
    height: 5rem;
}

.h-\[600px\] {
    height: 600px;
}

.h-\[650px\] {
    height: 650px;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.max-h-full {
    max-height: 100%;
}

.min-h-unset {
    min-height: unset !important;
}

.min-h-full {
    min-height: 100%;
}

.min-h-fit {
    min-height: fit-content !important;
}

.min-h-9 {
    min-height: 2.25rem !important;
}

.w-0 {
    width: 0px;
}

.w-11 {
    width: 2.75rem;
}

.w-12 {
    width: 3rem;
}

.w-14 {
    width: 3.5rem !important;
}

.w-15 {
    width: 3.75rem !important;
}

.w-16 {
    width: 4rem !important;
}

.w-18 {
    width: 4.5rem !important;
}

.w-2 {
    width: 0.5rem;
}

.w-2\.5 {
    width: 0.625rem;
}

.w-3 {
    width: 0.75rem;
}

.w-3\.5 {
    width: 0.875rem;
}

.w-36 {
    width: 9rem;
}

.w-4 {
    width: 1rem;
}

.w-4\/5 {
    width: 80%;
}

.w-48 {
    width: 12rem;
}

.w-5 {
    width: 1.25rem;
}

.w-52 {
    width: 13rem;
}

.w-6 {
    width: 1.5rem;
}

.w-72 {
    width: 18rem;
}

.w-8 {
    width: 2rem !important;
}

.w-9 {
    width: 2.25rem !important;
}

.w-10 {
    width: 2.5rem !important;
}

.w-\[1200px\] {
    width: 1200px;
}

.w-\[800px\] {
    width: 800px;
}

.w-auto {
    width: auto;
}

.w-fit {
    width: -moz-fit-content;
    width: fit-content;
}

.w-full {
    width: 100%;
}

.w-px {
    width: 1px;
}

.py-1\.5 {
    padding-bottom: 0.375rem;
    padding-top: 0.375rem;
}

.py-4\.25 {
    padding-bottom: 1.0625rem;
    padding-top: 1.0625rem;
}

.mb-0\.5 {
    margin-bottom: 0.125rem;
}

.w-screen {
    width: 100vw;
}

.w-unset {
    width: unset !important;
}

.min-w-unset {
    min-width: unset !important;
}

.min-w-0 {
    min-width: 0px;
}

.min-w-full {
    min-width: 100%;
}

.max-w-full {
    max-width: 100%;
}

.min-w-fit {
    min-width: fit-content;
}

.min-w-48 {
    min-width: 196px;
}

.min-w-76 {
    min-width: 19rem;
}

.min-w-16 {
    min-width: 64px;
}

.min-w-18 {
    min-width: 4.5rem !important;
}

.max-w-fit {
    max-width: fit-content;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-xs {
    max-width: 20rem;
}

.max-w-60 {
    max-width: 15rem; /* 240px */
}

.max-w-55 {
    max-width: 13.75rem;
}

.max-w-54 {
    max-width: 13.50rem;
}

.max-w-53 {
    max-width: 13.25rem;
}

.max-w-43\.5 {
    max-width: 10.875rem;
}

.break-words {
    overflow-wrap: break-word;
}

.text-wrap {
    text-wrap: wrap;
}

.text-nowrap {
    text-wrap: nowrap;
}

.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-start {
    text-align: start;
}

.text-end {
    text-align: end;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.truncate-wrap {
    overflow: hidden;
    text-overflow: ellipsis;
}

.block {
    display: block;
}

top-0 {
    top: 0 !important;
}

sticky {
    position: sticky !important
}

/* Tailwind Styles End */

/* Custom Date Picker */
.datepicker-filter-item {
    padding: 1.125rem 0 1.125rem 1rem;
    align-self: stretch;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.875rem;
    font-stretch: normal;
    font-style: normal;
    font-weight: normal;
    text-align: left;
    min-width: 15rem;
    max-width: 20rem;
    color: var(--mud-palette-text-secondary);
}

.datepicker-filter-item-focus {
    background-color: #e6f3f9;
    color: var(--mud-palette-text-primary);
    font-weight: 500;
}

.datepicker-button-outline {
    outline: 0.0625rem solid #e6f3f9;
    outline-offset: 0.125rem;
}
/* Custom Date Picker End*/

.primary-light-background-color {
    background-color: #e6f3f9;
}

.primary-text-color {
    color: var(--mud-palette-text-primary) !important;
}

.secondary-text-color {
    color: var(--mud-palette-text-secondary) !important;
}

.gray-text-color {
    color: var(--mud-palette-text-disabled) !important;
}

.link-text-color {
    color: var(--link-color) !important;
}

.brand-text-color {
    color: var(--brand-primary) !important;
}

.main-bg-color {
    background-color: var(--mud-palette-background);
}

.primary-bg-color {
    background-color: var(--mud-palette-primary) !important;
}

.critical-bg-color {
    background-color: var(--text-critical) !important;
}

.brand-bg-color {
    background-color: var(--brand-primary) !important;
}

.primary-color {
    color: var(--mud-palette-primary);
}

.critical-color {
    color: var(--text-critical) !important;
}

.surface-success-color {
    color: var(--surface-success);
}

.space-cadet-color {
    color: #123458;
}

.manatee-color {
    color: #969fae;
}

.persian-green-color {
    color: #00b4a2;
}

.jonquil-color {
    color: #facc15;
}

.dark-electric-blue-color {
    color: #5e6c84;
}

.light-gray-color {
    color: var(--light-gray);
}

.dodger-blue-700-color {
    color: #167BDF;
}

.magic-mint-green-400-color {
    color: #48BF9A !important;
}

.new-york-grey-400-color {
    color: #BDBBBE;
}

.overlay-color {
    background-color: rgba(0, 0, 0, 0.2);
}

.overlay-white-color {
    background-color: #FFFFFF33;
}

.overflow-anchor-none {
    overflow-anchor: none;
}


highlight-animation {
    animation: highlightAnimation 2s linear 0s 1 alternate backwards;
}

tr.highlight-animation {
    animation: highlightAnimation 2s linear 0s 1 alternate backwards;
}

@keyframes highlightAnimation {
    0% {
        background-color: #EEFAFF;
    }
}

@media only screen and (max-width: 600) {
    @supports(padding: max(0px)) {
        .safe-area-t {
            padding-top: max(env(safe-area-inset-top), 1.25rem) !important;
        }

        .safe-area-b {
            padding-bottom: max(env(safe-area-inset-bottom), 1.25rem) !important;
        }

        .safe-area-l {
            padding-left: max(env(safe-area-inset-left), 1.25rem) !important;
        }

        .safe-area-r {
            padding-right: max(env(safe-area-inset-right), 1.25rem) !important;
        }
    }
}

.mud-dialog-custom {
    display: grid;
    align-content: end;
    justify-content: space-between;
    justify-items: end;
}

    .mud-dialog-custom .mud-dialog {
        padding-bottom: var(--sab);
    }

.mobile_filter_dialog.mud-dialog-fullscreen {
    padding: var(--sat) 0 var(--sab) 0;
}

.filter_dialog_no_overflow.mobile_filter_dialog.mud-dialog-fullscreen .outline-none,
.filter_dialog_no_overflow.mobile_filter_dialog.mud-dialog-fullscreen .outline-none > div:not(.fixed),
.filter_dialog_no_overflow.mobile_filter_dialog.mud-dialog-fullscreen .outline-none > div:not(.fixed) .mud-dialog-content {
    height: 100%;
}

    .filter_dialog_no_overflow.mobile_filter_dialog.mud-dialog-fullscreen .outline-none > div:not(.fixed) {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

        .filter_dialog_no_overflow.mobile_filter_dialog.mud-dialog-fullscreen .outline-none > div:not(.fixed) .mud-dialog-content {
            overflow: hidden;
        }

        .filter_dialog_no_overflow.mobile_filter_dialog.mud-dialog-fullscreen .outline-none > div:not(.fixed) .mud-dialog-actions {
            height: auto;
        }


.activity_plan_card_select_dialog .mud-dialog-content {
    min-height: 0;
}

.table-header-hidden:before {
    display: none;
    padding-top: 1rem !important;
}

.infini-chip-style {
    flex-grow: 0;
    pointer-events: none;
}

    .infini-chip-style .green {
        height: 24px;
        background-color: var(--status-success) !important;
        font-size: 0.75rem;
    }

    .infini-chip-style .red {
        height: 24px;
        color: var(--mud-palette-text-primary);
        background-color: var(--status-critical) !important;
        font-size: 0.75rem;
    }

    .infini-chip-style .blue {
        height: 24px;
        color: var(--mud-palette-text-primary);
        background-color: var(--status-informational) !important;
        font-size: 0.75rem;
    }

    .infini-chip-style .orange {
        height: 24px;
        color: var(--mud-palette-text-primary);
        background-color: var(--status-warning) !important;
        font-size: 0.75rem;
    }

    .infini-chip-style .attention {
        height: 24px;
        color: var(--mud-palette-text-primary);
        background-color: var(--status-attention) !important;
        font-size: 0.75rem;
    }

    .infini-chip-style .gray {
        height: 24px;
        color: var(--mud-palette-text-primary);
        background-color: var(--new-york-grey-200) !important;
        font-size: 0.75rem;
    }

/* infini-chip-style */

.text-disabled {
    color: var(--mud-palette-text-disabled) !important;
}

.text-fuchsia {
    color: var(--fuchsia) !important;
}

.text-overflow-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    align-content: center;
    text-align: center;
}

.two-line-ellipsis {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.one-line-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 100%;
    vertical-align: bottom;
}

.search-bar {
    height: 2.25rem !important;
    background-color: var(--mud-palette-background) !important;
    border: solid 0.0625rem;
    border-color: #ecebed;
    border-radius: 0.25rem !important;
}

.search-input {
    border: none;
    outline: none;
    background-color: var(--mud-palette-background);
    color: var(--mud-palette-text-disabled);
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02625rem;
    text-transform: none;
}

.hide-scroll-x {
    overflow-x: scroll; /* Kaydırma çubuğunu görünmez hale getirin */
    scrollbar-width: none; /* Firefox için scrollbar'ı gizleyin */
    -ms-overflow-style: none; /* IE11 için scrollbar'ı gizleyin */
}

    .hide-scroll-x::-webkit-scrollbar {
        height: 0; /* Chrome ve Safari için scrollbar'ı gizleyin */
    }


/*Mobile Paper */
.mobile-paper {
    border-radius: 0.5rem;
    padding: 1rem;
}

.mobile-page-top {
    border: solid 1px var(--stroke);
    background-color: #fff;
    top: var(--sat) !important;
}

.mobile-page-header {
    font-family: Roboto;
    font-size: 1rem;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.03rem;
    text-align: center;
    color: #555;
    padding: 0.875rem 0 0,9375rem 0;
}
/*Mobile Paper */

.input-text-align-center input {
    text-align: center;
}

.datagrid-row-content input {
    flex-grow: 1 !important;
    font-family: Roboto !important;
    font-size: 0.875rem !important;
    font-weight: normal !important;
    font-stretch: normal !important;
    font-style: normal !important;
    line-height: normal !important;
    letter-spacing: 0.02625rem !important;
    color: #333 !important;
}

.input-pa-4 input {
    padding: 16px !important;
}

.input-mx-4 input {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

input::placeholder {
    color: var(--light-gray) !important;
    opacity: 1 !important;
}

.cancel-button-border {
    height: 1.5rem;
    width: 1.5rem;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 0.125rem;
    border: solid 0.063rem #ecebed;
    color: var(--mud-palette-text-secondary);
}

.accept-button-border {
    height: 1.5rem;
    width: 1.5rem;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 0.125rem;
    background-color: var(--mud-palette-primary);
    color: #ffffff;
}

.icon-primary-color {
    color: var(--icon-primary);
}

.icon-secondary-color {
    color: var(--icon-secondary);
}


/* MainLayout*/

.desktop-appbar {
    border-bottom: 1px solid var(--stroke);
    background-color: var(--mud-palette-appbar-background);
}


.desktop-navlink-text {
    margin: 0.125rem 0 0.125rem 0,4875rem;
    font-family: Roboto;
    font-size: 0.875rem;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.02625rem;
    text-align: left;
    color: var(--mud-palette-text-secondary);
}

.desktop-menu-searchbar {
    height: 2.5rem;
    background-color: var(--mud-palette-background);
    gap: 0.5rem;
    padding: 0.625rem 0.625rem;
    border-radius: 0.25rem;
    border: solid 0.625rem var(--mud-palette-background-gray);
    font-family: Roboto;
    font-size: 0.875rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.02625rem;
    text-align: left;
}

/* MainLayout*/

/* Conference */

.bg-conf-status-unposted {
    background-color: #9b9b9b;
}

.bg-conf-status-active {
    background-color: #6fb240;
}

.bg-conf-status-published {
    background-color: #fc0;
}

.bg-conf-status-approved {
    background-color: #1c6ece;
}

.bg-conf-status-rejected {
    background-color: #e03b24;
}

.bg-conf-status-ended {
    background-color: #7f6cf2;
}

.bg-conf-status-canceled {
    background-color: #e03b24;
}

.bg-conf-status-completed {
    background-color: #964b00;
}

.bg-part-appr-status-unposted {
    background-color: #6fb240;
}

.bg-part-appr-status-pending {
    background-color: #ffcc00;
}

.bg-part-appr-status-init {
    background-color: #fc0;
}

.bg-part-appr-status-last {
    background-color: #7f6cf2;
}

.bg-part-appr-status-rejected {
    background-color: #e03b24;
}

.text-red-600 {
    color: #e03b24;
}

.text-brand {
    color: #1c6ece;
}

.text-gray-400 {
    color: #636363;
}

.nav-group-conference > .mud-nav-link > .mud-nav-link-text {
    display: flex;
    justify-content: center;
    margin-left: 0px;
    margin-inline-start: 0px;
    font-size: 14px !important;
}

.nav-group-conference > .mud-nav-link {
    padding: 8px 16px 8px 16px !important;
}

/* Conference End */

/*Sales Order List and Detail*/
.order_list_summary {
    background-color: inherit;
}

.display_button {
    font-size: 1rem;
    padding: 6px;
}

.order_list_summary .summary_item {
    width: 192px;
    height: 56px;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.order_title.color_blue {
    color: var(--brand-primary);
}

.order_title.color_green {
    color: var(--surface-success);
}

.order_sub_title {
    color: var(--light-gray);
}

.order_list_container {
    position: relative;
    padding: 0 0 0 16px;
}

    .order_list_container:before {
        display: block;
        content: "";
        position: absolute;
        left: 2px;
        top: 0;
        width: 2px;
        height: 100%;
        background-color: #d8d7d9;
    }

.order_group_header {
    position: relative;
    color: #8c9196;
}

    .order_group_header:before {
        position: absolute;
        left: -23px;
        top: 0;
        content: "";
        display: block;
        width: 16px;
        height: 16px;
        background-color: #b9e6fe;
        border: 2px solid #fff;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
        border-radius: 100%;
    }

.order_group.today .order_group_header:before {
    background-color: #0081c2;
}

.order_list_item {
    margin-top: 8px;
}

    .order_list_item + .order_list_item {
        margin-top: 16px;
    }

.order_group + .order_group {
    margin-top: 16px;
}

.trans_group + .trans_group {
    margin-top: 16px;
}

.order_status_badge, .expense_status_badge {
    padding: 0 12px !important;
}

    .order_status_badge.order_status_badge_X, .expense_item_status_badge.expense_item_status_badge_I {
        background-color: #ffc5c5 !important;
    }

    .order_status_badge.order_status_badge_K {
        background-color: #ffd79d !important;
    }

    .order_status_badge.order_status_badge_0, .expense_status_badge.expense_status_badge_U { /* Taslak */ /* Onay Bekliyor */
        background-color: var(--new-york-grey-200) !important;
    }

    .order_status_badge.order_status_badge_1, .expense_status_badge.expense_status_badge_R { /* MF Onayı Bekliyor */ /* Ön Onaylı */
        background-color: #ffe46b !important;
    }

    .order_status_badge.order_status_badge_2 { /* Miktar Onayı Bekliyor */
        background-color: #ffe46b !important;
    }

    .order_status_badge.order_status_badge_3 { /* MF ve Miktar Onayı Bekliyor */
        background-color: #ffe46b !important;
    }

    .order_status_badge.order_status_badge_A { /* Onayla */
    }

    .order_status_badge.order_status_badge_D, .expense_status_badge.expense_status_badge_X { /* Ret */
        background-color: #ffc5c5 !important;
    }

    .order_status_badge.order_status_badge_F, .expense_status_badge.expense_status_badge_O, .expense_status_badge.expense_status_badge_E, .expense_item_status_badge.expense_item_status_badge_A { /* Depo Faturaladı */ /* Kabul Edildi */ /* Muhasebeye Gönderildi */ /* Gönderildi */ /* Aktif */
        background-color: #aee9d1 !important;
    }

    .order_status_badge.order_status_badge_K, .expense_status_badge.expense_status_badge_P { /* Kısmi Faturalandı */
        background-color: #ffd79d !important;
    }

    .order_status_badge.order_status_badge_L { /* Depo - Eczacı İptal */
        background-color: #ffc5c5 !important;
    }

    .order_status_badge.order_status_badge_S { /* Yarı-Açık */
        background-color: #ecebed !important;
    }

    .order_status_badge.order_status_badge_T { /* Depo - İptal */
        background-color: #ffc5c5 !important;
    }

    .order_status_badge.order_status_badge_U { /* Açık */
        background-color: #ecebed !important;
    }

    .order_status_badge.order_status_badge_W { /* Depoya Okundu */
        background-color: #8fe0ff !important;
    }

    .order_status_badge.order_status_badge_X { /* İptal */
        background-color: #ffc5c5 !important;
    }

    .order_status_badge.order_status_badge_Y { /* Depoya İletildi */
        background-color: #8fe0ff !important;
    }

.new_order {
    animation-name: new_order_animation;
    animation-duration: 2s;
    background-color: #FFF;
    ;
    animation-timing-function: ease-in-out;
}

@keyframes new_order_animation {
    from {
        background-color: var(--color-dodger-blue-100);
    }

    to {
        background-color: #FFF;
    }
}

/*EOF Sales Order List and Detail*/


/*Dashboard*/

.scrollbar-hidden::-webkit-scrollbar {
    display: none;
}

.scrollbar-hidden {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

@keyframes barChartHorizontalSlideAnimation {
    from {
        width: 0%
    }

    to {
        width: 100%
    }
}

/*End Of Dashboard*/

.horizontal-checkbox {
    display: flex;
    height: 56px;
    padding: var(--Gap-gap-2, 8px);
    justify-content: space-between;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: var(--Gap-gap-2, 8px);
    border: 1px solid var(--Border-border-primary, #ECEBED);
    word-wrap: break-word;
    overflow: hidden;
}

    .horizontal-checkbox .mud-typography-body1 {
        width: 100%;
    }

    .horizontal-checkbox .flex-row-reverse .mud-icon-button {
        padding: 0px;
    }

    .horizontal-checkbox .mud-input-control-input-container {
        height: 100%
    }

    .horizontal-checkbox .mud-checkbox.flex-row-reverse {
        height: 100%
    }

.textfield-helpertext-color-success .mud-input-helper-text {
    color: var(--surface-success) !important;
}

.textfield-errorhelpertext-color-critical .mud-input-helper-text.mud-input-error {
    color: var(--text-critical) !important;
}

.corvette-500-color {
    color: #FC8013;
}

.corvette-400-color {
    color: #FD9D3A;
}

.main_content_wrapper {
    padding: 20px;
}

.mobile_container_wrapper {
    padding-top: var(--mud-appbar-height) !important;
    padding-bottom: var(--appbar-bottom-height) !important;
}

.popover-width {
    min-width: 240px;
    width: 280px;
    max-width: 320px;
}

.cursor-pointer {
    cursor: pointer;
}

.mud-layout.is_tablet_True .mud-main-content,
.mud-layout.is_phone_True .mud-main-content {
    padding-bottom: var(--appbar-bottom-height) !important;
}

.gap-0\.5 {
    gap: 0.125rem;
}

.gap-2\.5 {
    gap: 0.625rem;
}

.ai-assistant-linear-gradient {
    background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%);
}

.rounded-4 {
    border-radius: 16px !important;
}

.scroll-smooth {
    scroll-behavior: smooth;
}

.justify-self-center {
    justify-self: center;
}



.map_container {
    width: 40%;
    border-right: solid 1px var(--mud-palette-table-lines);
    height: calc(100% + 16px);
}


@media (max-width: 600px) {
    .map_container {
        width: 100%;
        border-right: none;
        height: 45%;
        margin-bottom: 20px;
    }

        .map_container + #daily-list-container {
            width: 100%;
            height: 55%;
        }
}


.no_select{
    user-select: none;
}