﻿
:root {
    --width: 280px;
    --padding: 10px;
    --bg-color: rgb(52,52,52);
    /*    --hovercolor: rgb(23,23,23);*/
    --hovercolor: rgba(0,0,0,0.4);
    --width-collapsed: 45px;
}


.mdc-snackbar__surface {
    padding-left: 0;
    padding-right: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    transform: scale(0.8);
    opacity: 0;
    background-image: linear-gradient(180deg, rgb(71, 111, 188) 0%, #2542c9 70%);
    color: var(--color-base-white);
}

.body-collapsed {
    padding: 0;
    margin: 0;
    margin-left: var(--width-collapsed);
}

/*.body-expanded {
    margin-left: var(--width);
}*/

.login-collapsed {
    padding: 0;
    margin: 0;
    margin-left: var(--width-collapsed);
    width: calc(100% - var(--width-collapsed));
}

.login-expanded {
    margin-left: var(--width);
    width: calc(100% - var(--width));
}

#main-container {
    color: var(--color-base-white);
}

/*#sidemenu {
    background-image: linear-gradient(180deg, rgb(71, 111, 188) 0%, #2542c9 70%);*/
    /*    background-color: var(--bg-color);*/
    /*color: white;
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    overflow-y: auto;
    font-family: Azo Sans;*/
    /*width:19%;*/
/*}

    #sidemenu a {
        color: white;
        text-decoration: none;
        font-family: Azo Sans;
    }

    #sidemenu #header {
        box-sizing: border-box;
        border-bottom: solid 1px var(--hovercolor);
        background-color: rgba(0,0,0,0.0);
    }

        #sidemenu #header #title {
            box-sizing: border-box;
            overflow: hidden;
            font-family: Azo Sans;
        }

        #sidemenu #header #title, #sidemenu #header #menu-btn {
            vertical-align: middle;
            font-family: Azo Sans;
        }

        #sidemenu #header #menu-btn {
            display: inline-block;
        }

        #sidemenu #header #menu-btn {
            cursor: pointer;
            padding: 10px;
            width: var(--width-collapsed);
            box-sizing: border-box;
        }

            #sidemenu #header #menu-btn:hover {
                background-color: var(--hovercolor);
            }

            #sidemenu #header #menu-btn .btn-hamburger {
                background-color: #fff;
                width: 100%;
                height: 2px;
                margin: 5px 0;
            }

    #sidemenu #menu-items {
        overflow: hidden;
    }

        #sidemenu #menu-items .item {
            width: var(--width);
        }

            #sidemenu #menu-items .item .subitem {
                width: var(--width);
                margin-left: 15px;
            }

                #sidemenu #menu-items .item .subitem a.active {
                    background-color: var(--hovercolor);
                    color: white;
                }

                    #sidemenu #menu-items .item .subitem a.active::after {
                        content: "<";
                        margin-left: 1em;
                    }

            #sidemenu #menu-items .item .icon {
                display: inline-block;
            }

            #sidemenu #menu-items .item .icon,
            #sidemenu #menu-items .item .title {
                font-size: 14px;
                vertical-align: middle;
                overflow: hidden;
                display: inline-block;
                font-family: Azo Sans;
            }

            #sidemenu #menu-items .item a {
                display: block;
            }

                #sidemenu #menu-items .item a:hover {
                    background-color: var(--hovercolor);
                }

                #sidemenu #menu-items .item a.active {
                    background-color: var(--hovercolor);
                    color: white;
                }

                    #sidemenu #menu-items .item a.active::after {
                        content: "<";
                        margin-left: 1em;
                    }

            #sidemenu #menu-items .item .icon {
                box-sizing: border-box;
                padding: var(--padding);
                width: var(--width-collapsed);
            }

                #sidemenu #menu-items .item .icon span {
                    width: 100%;
                }

            #sidemenu #menu-items .item .title {
                padding: var(--padding) 0;
                font-family: Azo Sans;
            }

            #sidemenu #menu-items .item.separator {
                height: 1px;
                border-bottom: solid 1px var(--hovercolor);
                margin: 15px 0;
            }*/

.menu-expanded {
    width: var(--width);
    box-shadow: 0 0 0px rgba(0,0,0,0.5);
}

    .menu-expanded #header #title {
        display: inline-block;
        width: calc(100% - 50px);
        margin-right: -5px;
        padding: var(--padding);
        font-family: Azo Sans;
    }

        .menu-expanded #header #title span {
            width: calc(var(--width) - var(--width-collapsed) - 5px);
            overflow: hidden;
            font-family: Azo Sans;
        }

.menu-collapsed {
    width: var(--width-collapsed);
}

    .menu-collapsed #header #title {
        width: 0;
        height: 0;
        padding: 0;
        margin: 0;
        font-family: Azo Sans;
    }

    .menu-collapsed .item {
        width: 100px;
    }
@media screen and (max-width:767.9px) {
    .body-expanded {
        display: inline-block;
        width: calc(100% - 50px);
        margin-right: -5px;
        padding: var(--padding);
    }
    .menu-expanded {
            z-index:3000;
    }
    .menu-expanded #header #title {
       
    }

    .menu-expanded .item {
        width: 100px;
    }
}

    










    article {
        width: 100%;
    }

    .CssClass {
        display: none;
    }

    .DDLFontSize {
        font-size: 12px;
    }

    .capi {
        text-transform: capitalize;
    }

    .spinner {
        border: 16px solid silver;
        border-top: 16px solid #337AB7;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        animation: spin 700ms linear infinite;
        top: 40%;
        left: 55%;
        position: absolute;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg)
        }

        100% {
            transform: rotate(360deg)
        }
    }

html, body {
    background-color: var(--color-neutrals-100);
}

    a, .btn-link {
        color: #0366d6;
    }

.btn-primary {
    color: var(--color-base-white);
    background-color: #1b6ec2;
    border-color: #1861ac;
}

    app {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .BackGrid !important {
        background-color: #1b6ec2
    }

    .top-row {
        height: 3.0rem;
        display: flex;
        align-items: center;
    }

    .main {
        flex: 1;
    }

        .main .top-row {
            background-color: #f7f7f7;
            border-bottom: 1px solid #d6d5d5;
            justify-content: flex-end;
        }

            .main .top-row > a, .main .top-row .btn-link {
                white-space: nowrap;
                margin-left: 1.5rem;
            }

            .main .top-row a:first-child {
                overflow: hidden;
                text-overflow: ellipsis;
            }

    .sidebar {
        background-image: linear-gradient(180deg, rgb(71, 111, 188) 0%, #2542c9 70%);
    }

        .sidebar .top-row {
            background-color: rgba(0,0,0,0.4);
        }

        .sidebar .navbar-brand {
            font-size: 1.1rem;
        }

        .sidebar .oi {
            width: 2rem;
            font-size: 1.1rem;
            vertical-align: text-top;
            top: -2px;
        }

        .sidebar .nav-item {
            font-size: 0.9rem;
            padding-bottom: 0.5rem;
        }

            .sidebar .nav-item:first-of-type {
                padding-top: 1rem;
            }

            .sidebar .nav-item:last-of-type {
                padding-bottom: 1rem;
            }

            .sidebar .nav-item a {
                color: #d7d7d7;
                border-radius: 4px;
                height: 3rem;
                display: flex;
                align-items: center;
                line-height: 3rem;
                font-size: 12px;
            }

                .sidebar .nav-item a.active {
                    background-color: rgba(255,255,255,0.25);
                    color: var(--color-base-white);
                }

                .sidebar .nav-item a:hover {
                    background-color: rgba(255,255,255,0.1);
                    color: var(--color-base-white);
                }

    .content {
        padding-top: 4.1rem;
    }

    .navbar-toggler {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .valid.modified:not([type=checkbox]) {
        outline: 1px solid #26b050;
    }

    .invalid {
        outline: 1px solid red;
    }

    .validation-message {
        color: red;
    }

    .Obligatorio {
        color: red;
    }

    .middle-box {
        margin: auto;
        margin-top: 68px;
        width: 377px;
        padding: 20px;
        box-shadow: 5px 10px 18px #888888;
        border-radius: 20px;
    }

    .ikrNoti_Button {
        width: 22px;
        height: 22px;
        line-height: 22px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        /*background: #2e467c;*/
        margin: -3px 10px 0 10px;
        cursor: pointer
    }

.ikrNoti_Counter {
    display: block;
    position: absolute;
    background: #e1141e;
    color: var(--color-base-white);
    font-size: 12px;
    font-weight: 400;
    padding: 1px 3px;
    margin: -8px 0 0 25px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    z-index: 1
}

    .ikrNotifications {
        display: none;
        width: 300px;
        position: absolute;
        top: 50px;
        background: #f7f7f7;
        border: solid 1px rgba(100,100,100,.2);
        -webkit-box-shadow: 0 3px 8px rgba(0,0,0,.2);
        z-index: 1000;
        overflow-y: scroll;
        height: 300px;
        right: 5px;
    }

        .ikrNotifications:before {
            content: '';
            display: block;
            width: 0;
            height: 0;
            color: transparent;
            border: 10px solid #ccc;
            border-color: transparent transparent var(--color-base-white);
            margin-top: -20px;
            margin-left: 10px
        }

        .ikrNotifications h3 {
            display: block;
            color: #333;
            background: var(--color-base-white);
            font-weight: 700;
            padding: 8px;
            margin: 0;
            font-size: 12px;
            border-bottom: solid 1px rgba(100,100,100,.3);
        }

        .ikrNotifications .ikrSeeAll {
            background: #f6f7f8;
            padding: 8px;
            font-size: 12px;
            font-weight: 700;
            border-top: solid 1px rgba(100,100,100,.3);
            text-align: center
        }

            .ikrNotifications .ikrSeeAll a {
                color: #3b5998
            }

                .ikrNotifications .ikrSeeAll a:hover {
                    background: #f6f7f8;
                    color: #3b5998;
                    text-decoration: underline
                }

    .ikrNotificationItems {
        overflow-y: scroll;
        background-color: #f7f7f7
    }

    .ikrSingleNotiDiv {
        border-top: 1px solid #ccc;
        margin-bottom: 20px;
        cursor: pointer;
        color: #000
    }

    .ikrSingleNotiDivUnReadColor {
        color: #c00
    }

    .ikrNotificationTitle {
        font-weight: 700;
        margin-left: 10px;
        font-size: 14px;
    }

    .ikrNotificationBody {
        margin: 0 10px 0 10px;
        font-size: 12px;
    }

    .ikrNofiCreatedDate {
        text-align: right;
        margin-right: 10px;
        font-size: 10px;
    }

    .ikrNotiFromPropName {
        text-align: right;
        font-size: 16px;
    }

    #blazor-error-ui {
        background: lightyellow;
        bottom: 0;
        box-shadow: 0 -1px 2px 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 {
            cursor: pointer;
            position: absolute;
            right: 0.75rem;
            top: 0.5rem;
        }

    @media (max-width: 767.99px) {
        .main .top-row:not(.auth) {
            display: none;
        }
            header h6 {
                float: right;
                right: 0px;
            }

        .main .top-row.auth {
            justify-content: space-between;
            text-align: right;
        }

        .main .top-row a, .main .top-row .btn-link {
            margin-left: 0;
        }

        .toolbar-width {
            width:100%;
        }
    }
    @media (min-width: 890px) {
        app {
            flex-direction: row;
        }

            header h6 {
                float: right;
                right: 0px;
            }

        .main {
            width: 79%;
        }

        

        .sidebar {
            width: 21%;
            position: sticky;
            top: 0;
            overflow-y: auto;
        }

        .main .top-row {
            position: sticky;
            top: 0;
        }

        .main > div {
            padding-left: 2rem !important;
            padding-right: 1.5rem !important;
        }

        .navbar-toggler {
            display: none;
        }

        .sidebar .collapse {
            /* Never collapse the sidebar for wide screens */
            display: block;
        }

        .nav-item a.active::after {
            content: "<";
            margin-left: 1em;
        }

        .toolbar-width {
            width: 50%;
        }

        .ikrNoti_Button {
            width: 22px;
            height: 22px;
            line-height: 22px;
            border-radius: 50%;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
            /*background: #2e467c;*/
            margin: -3px 10px 0 10px;
            cursor: pointer
        }

        .ikrNoti_Counter {
            display: block;
            position: absolute;
            background: #e1141e;
            color: var(--color-base-white);
            font-size: 12px;
            font-weight: 400;
            padding: 1px 3px;
            margin: -8px 0 0 25px;
            border-radius: 2px;
            -moz-border-radius: 2px;
            -webkit-border-radius: 2px;
            z-index: 1
        }

        .ikrNotifications {
            display: none;
            width: 300px;
            position: absolute;
            top: 50px;
            background: #f7f7f7;
            border: solid 1px rgba(100,100,100,.2);
            -webkit-box-shadow: 0 3px 8px rgba(0,0,0,.2);
            z-index: 1000;
            right: 5px;
        }

            .ikrNotifications:before {
                content: '';
                display: block;
                width: 0;
                height: 0;
                color: transparent;
                border: 10px solid #ccc;
                border-color: transparent transparent var(--color-base-white);
                margin-top: -20px;
                margin-left: 10px
            }

            .ikrNotifications h3 {
                display: block;
                color: #333;
                background: var(--color-base-white);
                font-weight: 700;
                padding: 8px;
                margin: 0;
                font-size: 12px;
                border-bottom: solid 1px rgba(100,100,100,.3);
            }

            .ikrNotifications .ikrSeeAll {
                background: #f6f7f8;
                padding: 8px;
                font-size: 12px;
                font-weight: 700;
                border-top: solid 1px rgba(100,100,100,.3);
                text-align: center
            }

                .ikrNotifications .ikrSeeAll a {
                    color: #3b5998
                }

                    .ikrNotifications .ikrSeeAll a:hover {
                        background: #f6f7f8;
                        color: #3b5998;
                        text-decoration: underline
                    }

        .ikrNotificationItems {
            overflow-y: scroll;
            background-color: #f7f7f7
        }

        .ikrSingleNotiDiv {
            border-top: 1px solid #ccc;
            margin-bottom: 20px;
            cursor: pointer;
            color: #000
        }

        .ikrSingleNotiDivUnReadColor {
            color: #c00
        }

        .ikrNotificationTitle {
            font-weight: 700;
            margin-left: 10px;
            font-size: 14px;
        }

        .ikrNotificationBody {
            margin: 0 10px 0 10px;
            font-size: 12px;
        }

        .ikrNofiCreatedDate {
            text-align: right;
            margin-right: 10px;
            font-size: 10px;
        }

        .ikrNotiFromPropName {
            text-align: right;
            font-size: 16px;
        }

        ::-webkit-scrollbar {
            width: 4px
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1
        }

        ::-webkit-scrollbar-thumb {
            background: #888
        }

            ::-webkit-scrollbar-thumb:hover {
                background: #555
            }
    }
    @media (min-width: 768px) and (max-width: 889.99px) {
        app {
            flex-direction: row;
        }

            header h6 {
                float: right;
                right: 0px;
            }

        .sidebar {
            width: 30%;
            position: sticky;
            top: 0;
            overflow-y: auto;
        }

        .main {
            width: 70%;
        }

            .main .top-row {
                position: sticky;
                top: 0;
            }

            .main > div {
                padding-left: 2rem !important;
                padding-right: 1.5rem !important;
            }

        .navbar-toggler {
            display: none;
        }

        .sidebar .collapse {
            /* Never collapse the sidebar for wide screens */
            display: block;
        }

        .nav-item a.active::after {
            content: "<";
            margin-left: 1em;
        }

        .toolbar-width {
            width: 50%;
        }

        .ikrNoti_Button {
            width: 22px;
            height: 22px;
            line-height: 22px;
            border-radius: 50%;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
            /*background: #2e467c;*/
            margin: -3px 10px 0 10px;
            cursor: pointer
        }

        .ikrNoti_Counter {
            display: block;
            position: absolute;
            background: #e1141e;
            color: var(--color-base-white);
            font-size: 12px;
            font-weight: 400;
            padding: 1px 3px;
            margin: -8px 0 0 25px;
            border-radius: 2px;
            -moz-border-radius: 2px;
            -webkit-border-radius: 2px;
            z-index: 1
        }

        .ikrNotifications {
            display: none;
            width: 300px;
            position: absolute;
            top: 50px;
            background: #f7f7f7;
            border: solid 1px rgba(100,100,100,.2);
            -webkit-box-shadow: 0 3px 8px rgba(0,0,0,.2);
            z-index: 1000;
            right: 5px;
        }

            .ikrNotifications:before {
                content: '';
                display: block;
                width: 0;
                height: 0;
                color: transparent;
                border: 10px solid #ccc;
                border-color: transparent transparent var(--color-base-white);
                margin-top: -20px;
                margin-left: 10px
            }

            .ikrNotifications h3 {
                display: block;
                color: #333;
                background: var(--color-base-white);
                font-weight: 700;
                padding: 8px;
                margin: 0;
                font-size: 12px;
                border-bottom: solid 1px rgba(100,100,100,.3);
            }

            .ikrNotifications .ikrSeeAll {
                background: #f6f7f8;
                padding: 8px;
                font-size: 12px;
                font-weight: 700;
                border-top: solid 1px rgba(100,100,100,.3);
                text-align: center
            }

                .ikrNotifications .ikrSeeAll a {
                    color: #3b5998
                }

                    .ikrNotifications .ikrSeeAll a:hover {
                        background: #f6f7f8;
                        color: #3b5998;
                        text-decoration: underline
                    }

        .ikrNotificationItems {
            overflow-y: scroll;
            background-color: #f7f7f7
        }

        .ikrSingleNotiDiv {
            border-top: 1px solid #ccc;
            margin-bottom: 20px;
            cursor: pointer;
            color: #000
        }

        .ikrSingleNotiDivUnReadColor {
            color: #c00
        }

        .ikrNotificationTitle {
            font-weight: 700;
            margin-left: 10px;
            font-size: 14px;
        }

        .ikrNotificationBody {
            margin: 0 10px 0 10px;
            font-size: 12px;
        }

        .ikrNofiCreatedDate {
            text-align: right;
            margin-right: 10px;
            font-size: 10px;
        }

        .ikrNotiFromPropName {
            text-align: right;
            font-size: 16px;
        }

        ::-webkit-scrollbar {
            width: 4px
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1
        }

        ::-webkit-scrollbar-thumb {
            background: #888
        }

            ::-webkit-scrollbar-thumb:hover {
                background: #555
            }
    }

    .mud-drawer {
        top: var(--altura-banner);
        margin-top: 1px;
    }

    @media (min-height: 740px) {
        header {
            height: 100px;
            position: fixed;
            z-index: 1000;
            width: 100%;
        }
        .imgLogo1 {
            display: block;
            height: 48px;
            position: fixed;
            top: 26px;
            padding-left: 60px;
        }
        .botonLogin {
            background-color: var(--color-primary-200);
            color: var(--color-primary-800) !important;
            border-radius: 50%;
            margin-top: 48px;
            width: 48px;
            height: 48px;
        }
        .mdc-icon-button {
            background-color: var(--color-primary-200);
            border-radius: 50%;
            margin-top: 50px;
            color: var(--color-primary-800);
        }
        .modal-dialog {
            top: 100px;
        }
        .modal-dialog-viewer {
            @extend .modal-dialog;
            max-width: 95%;
            margin: 1.75rem auto;
            height: 85%;
            margin-top: 100px;
            padding-top: 10px;
            margin-left: 100px;
        }
        .barra-content {
            padding: 10px 0px 10px 40px;
            padding-right: 0px;
            display: flex;
            align-items: center;
            width: 100%;
            margin-left: 80px;
            margin-top: 40px;
            margin-bottom: 40px;
        }
    }
    @media (min-height: 550px) and (max-height: 739.99px) {
        header {
            height: 64px;
            position: fixed;
            z-index: 1000;
            width: 100%;
        }
        .imgLogo1 {
            display: block;
            height: 48px;
            position: fixed;
            top: 8px;
            padding-left: 60px;
        }
        .botonLogin {
            background-color: var(--color-primary-200);
            color: var(--color-primary-800) !important;
            border-radius: 50%;
            margin-top: 8px;
            width: 48px;
            height: 48px;
        }
        .mdc-icon-button {
            background-color: var(--color-primary-200);
            border-radius: 50%;
            margin-top: 10px;
            color: var(--color-primary-800);
        }
        .modal-dialog {
            top: 64px;
        }
        .modal-dialog-viewer {
            @extend .modal-dialog;
            max-width: 95%;
            margin: 1.75rem auto;
            height: 85%;
            margin-top: 64px;
            padding-top: 8px;
            margin-left: 100px;
        }
        .barra-content {
            padding: 5px 0px 5px 0px;
            padding-right: 0px;
            display: flex;
            align-items: center;
            width: 100%;
            margin-left: 80px;
            margin-top: 30px;
            margin-bottom: 30px;
        }
    }
    @media (max-height: 549.99px) {
        header {
            height: 26px;
            position: absolute;
            z-index: 1000;
            width: 100%;
        }
        .mdc-icon-button {
            background-color: var(--color-primary-200);
            border-radius: 50%;
            margin-top: 0px;
            color: var(--color-primary-800);
        }
        .imgLogo1 {
            display: none;
            height: 0px;
        }
        .botonLogin {
            background-color: var(--color-primary-200);
            color: var(--color-primary-800) !important;
            border-radius: 50%;
            margin-top: 0px;
            width: 48px;
            height: 48px;
        }
        .modal-dialog {
            top: 28px;
        }
        .modal-dialog-viewer {
            @extend .modal-dialog;
            max-width: 95%;
            margin: 1.75rem auto;
            height: 85%;
            margin-top: 26px;
            padding-top: 5px;
        }
        .barra-content {
            padding: 3px 0px 3px 0px;
            padding-right: 0px;
            display: flex;
            align-items: center;
            width: 100%;
            margin-left: 80px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
    }

    @media (max-height: 599.99px) {
        .mud-card-home {
            background-color: var(--color-base-white) !important;
            padding: 0px 0px 0px 0px !important;
            margin: 0px 0px 0px 0px;
        }
    }
    @media (min-height: 600px) {
        .mud-card-home {
            background-color: var(--color-base-white) !important;
            padding: 20px 0px 20px 25px !important;
            margin: 0px 0px 5px 10px;
        }
        
    }

    @media (max-width: 800px) {
        .display-table {
            display: none;
        }

        .display-cards {
            display: block;
        }

        .img-firma img {
            height: 100px;
        }

        .display-timeline {
            display: none;
        }

        .display-alerts {
            display: block;
        }
        .mud-main-content {
            padding-top: calc(var(--altura-banner) + 100px);
            padding-left: 10px;
            padding-right: 10px;
            margin-left: var(--size-toolbar-collapsed);
        }
    }

    @media (min-width: 800.99px) {
        .display-table {
            display: block;
        }

        .display-cards {
            display: none;
        }

        @media (max-height: 739.99px) {
            .img-firma img {
                height: 120px;
            }
        }

        @media (min-height: 740px) {
            .img-firma img {
                height: 170px;
            }
        }

        .display-timeline {
            display: block;
        }

        .display-alerts {
            display: none;
        }
        .mud-main-content {
            padding-top: calc(var(--altura-banner) + 100px);
            padding-left: 40px;
            padding-right: 40px;
            margin-left: var(--size-toolbar-normal);
        }
    }


    .mdc-sub-menu-icon,
    .drawer-profile span,
    .miniHover,
    .brand {
        visibility: hidden;
        opacity: 0;
        position: fixed;
    }

    .full .drawer-profile span,
    .full .miniHover,
    .full .brand,
    .mdc-drawer:hover .drawer-profile span,
    .mdc-drawer:hover .miniHover,
    .mdc-drawer:hover .brand {
        visibility: visible;
        opacity: 1;
        position: relative;
    }

    .mini .after.mdc-sub-menu-icon,
    .mini .miniHover {
        transform: translateX(200%);
        animation: slide-out 1s forwards;
        transition: .4s ease-in-out;
        visibility: hidden;
        opacity: 0;
        position: fixed;
    }


    .mini .mdc-drawer:hover .after.mdc-sub-menu-icon,
    .mini .mdc-drawer:hover .miniHover {
        transform: translateX(0%);
        animation: slide-in 1s forwards;
        transition: width .4s ease-in-out;
        visibility: visible;
        opacity: 1;
        position: relative;
    }

    .mdc-sub-menu-icon,
    .drawer-profile span,
    .miniHover,
    .brand {
        visibility: hidden;
        opacity: 0;
        position: fixed;
    }


    .sub-menu {
        visibility: hidden; /* hides sub-menu */
        opacity: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        transform: translateY(-2em);
        z-index: -1;
        transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    }

    .hidden-mdc-down nav a {
        /*color: #E00;
    display: block;
    padding: 0.5em 1em;*/
        text-decoration: none;
    }

    /* .hidden-mdc-down nav a:hover {
        color: #F55;
    }*/

    .hidden-mdc-down nav ul,
    .hidden-mdc-down nav ul li {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .hidden-mdc-down nav > ul {
        background: #EEE;
        text-align: center;
    }

        .hidden-mdc-down nav > ul > li {
            display: inline-block;
            border-left: solid 1px #aaa;
        }

            .hidden-mdc-down nav > ul > li:first-child {
                border-left: none;
            }

    .sub-menu {
        background: #DDD;
    }



    .modal-content-viewer {
        @extend .modal-content;
        height: 95%;
    }

    .modal-body-viewer {
        @extend.modal-body;
        height: 100%;
    }

    .frame-viewer {
        width: 100%;
        height: 95%;
        border: none;
    }

    .frecTitle {
        margin: 0;
        margin-bottom: 0;
        font-weight: bold;
        color: #050d3c;
        text-transform: uppercase;
        font-size: 20px;
    }

.swal2-styled.swal2-cancel {
    background-color: var(--color-base-white) !important;
    /*padding: 6px 16px !important;
    color: var(--mud-palette-text-primary) !important;
    border: 1px solid var(--mud-palette-text-primary) !important;
    background-color: transparent !important;*/
}

    .swal2-styled {
        font-size: var(--mud-typography-button-size) !important;
        display: inline-flex !important;
        padding: 3px !important;
        border-radius: 50px !important;
        box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12) !important;
    }

        .swal2-styled.swal2-confirm {
            /*padding: 6px 16px !important;
    color: var(--mud-palette-info-text) !important;
    background-color: var(--mud-palette-info) !important;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12) !important;*/
        }


    .table td, .table th {
        padding: .4rem;
    }

    .mud-icon-button {
        padding: 6px;
    }

    .mail-list {
        border-radius: 25px;
        padding: 5px;
        border: 1px solid #007bff;
        margin: 3px;
    }

    .delete-mail-list {
        border-radius: 5px;
        background: #ffedda;
        padding: 5px;
        border: 2px dotted orange;
        margin: 3px;
    }

    .delete-mail-list-over {
        border-radius: 5px;
        background: orange;
        padding: 5px;
        border: 2px dotted #ffedda;
        margin: 3px;
    }

    .mud-paper {
        padding: 10px;
    }

    .mud-card-header {
        padding: 5px;
    }

    .mud-card-content {
        padding: 5px;
    }

    .mud-tab.mud-tab-active {
        color: #007bff;
    }

    .mud-tab-slider {
        position: absolute;
        background: #007bff;
    }

.mud-card-app {
    background-color: var(--color-base-white) !important;
    padding: 20px 10px 10px 20px !important
}

.mud-card-actions-app {
    background-color: var(--color-base-white) !important;
    border-radius: 4px;
    box-shadow: none!important;
    padding-top: 15px!important;
}

.notif-bell-1 {
    color: var(--mud-palette-secondary) !important;
    background-color: var(--color-base-white) !important;
    border-radius: 20px !important;
    padding: 3px !important;
    margin-left: 5px !important;
}

.confirmButtonSwAl {
    color: var(--mud-palette-info-lighten) !important;
    background-color: var(--color-base-white) !important;
    border-radius: 20px !important;
    padding: 3px !important;
    margin-left: 2px !important;
    margin-right: 4px !important;
}

    .cancelButtonSwAl {
        color: var(--mud-palette-drawer-icon) !important;
        border-radius: 20px !important;
        margin-left: 2px !important;
        margin-right: 4px !important;
        border: 2px solid var(--mud-palette-text-primary) !important;
    }

    .hideCancel {
        display: none !important;
    }

    .mud-layout {
        height: 100%;
        width: 100%;
        position: relative;
    }

.mud-appbar {
    background-color: var(--color-base-white);
}

    @media (min-width: 960px) {
        .mud-drawer-open-responsive-md-left.mud-drawer-left-clipped-never .mud-appbar {
            margin-left: 0px;
            width: 100%;
        }
    }

    .mud-tabs-toolbar-content {
        background-color: #fafafa;
    }

    .mud-tab.mud-tab-active {
        background-color: #e3e3e3;
        color: var(--color-primary-800);
    }

    .mud-tab {
        color: var(--color-primary-800) !important;
        text-transform: none;
    }

    .mud-tab-slider {
        background-color: var(--color-primary-800) !important;
        height: 4px !important;
    }

    .mud-card-actions {
        background-color: #e3e3e3;
        border-radius: 4px;
        box-shadow: var(--mud-elevation-2);
    }

    .mud-card-content {
        background-color: #fafafa;
        color: var(--color-primary-800);
        padding: 1px;
    }

    .mud-card-header {
        justify-content: center;
        color: var(--color-primary-800);
    }

    .mud-paper {
        background-color: #fafafa;
        padding: 4px;
    }

    .mud-theme-info {
        background-color: var(--color-info-200) !important;
    }

    .mud-list-item-icon {
        color: var(--mud-palette-action-default);
        display: inline-flex;
        min-width: 10px;
        flex-shrink: 0;
    }

    .mud-icon-button {
        color: var(--color-primary-800);
    }

    .modal-title {
        margin-bottom: 0;
        line-height: 1.5;
        padding-left: 60px;
    }

.swal2-title {
    position: relative;
    max-width: 100%;
    margin: 0 0 .4em;
    padding: 0;
    color: var(--color-primary-800) !important;
    font-size: 24px !important;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    word-wrap: break-word;
}
    .swal2-content {
        z-index: 1;
        justify-content: center;
        margin: 0;
        padding: 0;
        color: #545454;
        font-size: 20px!important;
        font-weight: 400;
        line-height: normal;
        text-align: center;
        word-wrap: break-word;
    }

.mud-menu {
    display: inline-flex;
    align-self: center;
    position: relative;
    color: var(--color-primary-800);
    background-color: var(--color-base-white);
    font-family: 'Montserrat', sans-serif;
}

.mud-menu * {
    cursor: pointer;
    color: var(--color-primary-800);
}

.rz-breadcrumb {
    display: flex;
    align-items: center;
}

.rz-label {
    margin-bottom: 0;
    font-weight: bold;
}

.help-panel {
    padding: 20px;
    background-color: var(--color-primary-100);
    border-left: 1px solid #ddd;
    border-radius: 4px;
}

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
/*
.mud-grid-spacing-xs-2 {
    width: calc(100% + 50px);
    margin: -8px;
}*/