﻿body {
    height: 100vh !important;
}

#app {
    height: 100% !important;
    background: url(../img/background.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /*opacity: 0.6;*/
}

.page {
    height: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.w-100 {
    width: 100% !important;
}

.glass {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.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;*/
        /*border-color: #eaaa00 transparent;*/
        border-color: #CD0060 transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}