﻿
/*@font-face {
    font-family: 'IBM Plex Sans';
    src: url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&amp;display=swap") format('IBM Plex Sans');
}*/

@font-face {
    font-family: "Cairo";
    src: url("../bootstrap/cairo/static/Cairo-SemiBold.ttf");
}

.mud-input {
    font-size: var(--mud-typography-default-size);
}

.mud-input-control > .mud-input-control-input-container > .mud-input-label-inputcontrol {
    font-size: var(--mud-typography-default-size);
}


    .mud-expand-panel .mud-expand-panel-header {
        font-size: var(--mud-typography-subtitle1-size);
    }

.mud-button-year {
    font-size: var(--mud-typography-default-size);
}

.mud-table-cell {
    font-size: var(--mud-typography-default-size);
}

.mud-typography-body1 {
    font-size: var(--mud-typography-body1-size);
}

.mud-typography-body2 {
    font-size: var(--mud-typography-body2-size);
}

.mud-button-outlined-size-small {
    font-size: var(--mud-typography-body2-size);
}




.mud-nav-link {
    white-space: normal !important;
}

.user-button {
    text-transform: none;
    background: rgba(var(--mud-palette-primary-rgb), 0.1)
}

.side-menu .mud-chip.mud-chip-size-small {
    font-size: 0.625rem;
    height: 1.125rem;
}
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e52660;
}

.validation-message {
    color: #e52660;
}
.my-custom-class {
    backdrop-filter: blur(10px);
}

.hz-container {
    display: flex;
    overflow-x: auto;
}

    .hz-container::-webkit-scrollbar {
        display: none;
    }


.bounceIn {
    opacity: 0;
    animation-delay: 0.5s;
    animation-duration: 0.5s;
    animation-name: bounceIn;
    animation-fill-mode: forwards;
}

.bounceOut {
    animation-duration: 0.5s;
    animation-name: bounceOut;
    animation-fill-mode: forwards;
}

.backInDown {
    opacity: 0;
    animation-delay: 0.5s;
    animation-duration: 0.5s;
    animation-name: backInDown;
    animation-fill-mode: forwards;
}

.backOutDown {
    animation-duration: 0.5s;
    animation-name: backOutDown;
    animation-fill-mode: forwards;
}

.rotateIn {
    opacity: 0;
    animation-delay: 0.5s;
    animation-duration: 0.5s;
    animation-name: rotateIn;
    animation-fill-mode: forwards;
}

.rotateOut {
    animation-duration: 0.5s;
    animation-name: rotateOut;
    animation-fill-mode: forwards;
}


chart: {
    fontFamily: var(--mud-typography-subtitle1-family);
    background-color: #42424200 !important;
}

.apexcharts-svg {
    background-color: #42424200 !important;
}
.apexcharts-canvas {
    background-color: #42424200 !important;
}
.mud-data-grid .mud-table-cell.edit-mode-cell .mud-input .mud-input-outlined-border {
    border:inherit !important;
}


.linear-progress {
    background: silver;
    width: 50vw;
    height: 1rem;
    border-radius: 10rem;
    overflow: hidden;
    position: relative;
}

    .linear-progress:after {
        content: '';
        position: absolute;
        inset: 0;
        background: blue;
        scale: var(--blazor-load-percentage, 0%) 100%;
        transform-origin: left top;
        transition: scale ease-out 0.5s;
    }

.mud-grid-spacing-xs-3 {
    width: calc(100% + 9px) !important;
    margin: -2px !important;
}

    .mud-grid-spacing-xs-3 > .mud-grid-item {
        padding: 4px !important;
    }

    .mud-grid-spacing-xs-3 > .mud-grid-item {
        padding: 5px !important;
    }

.mud-card-header {
    display: flex;
    padding: 5px !important;
    align-items: center;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.pb-12, .py-12 {
    padding-bottom: 13px !important;
}

.mud-input-control {
    margin-top: 1px;
}

.mud-drawer-overlay {
    pointer-events: none !important;
}

.animated-dialog {
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: fadeSlideIn 0.4s ease-out;
}

@keyframes fadeSlideIn {
    from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}