﻿html {
    width: 100vw;
    height: 100vh;
    height: -webkit-fill-available;
}

body {
    height: 100% !important;
}

#app {
    height: 100% !important;
}

.page {
    height: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.w-100 {
    width: 100% !important;
}

.mud-main-content {
    height: 100% !important;
}

.mud-drawer.mud-drawer-mini.mud-drawer-pos-left.mud-drawer--closed::-webkit-scrollbar {
    display: none;
}

.mud-drawer.mud-drawer-mini.mud-drawer-pos-left.mud-drawer--open::-webkit-scrollbar {
    display: none;
}

.mud-table {
    border: 2px solid var(--mud-palette-primary) !important;
}

.mud-input-control {
    flex: none !important;
}

.mud-dialog-title {
    padding: 15px 20px 15px 20px !important;
}

.mud-dialog-content {
    padding: 0px 20px 15px 20px !important;
}

.mud-dialog-actions {
    padding: 0px 20px 15px 20px !important;
}

.mud-select {
    flex-grow: 0 !important;
}

.mud-picker-inline {
    flex: 0 1 auto !important;
}

.mud-typography {
    word-break: break-word !important;
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 8px;
        border-radius: 50%;
        border: 6px solid #fff;
        border-color: #002C4B transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}