/* /Components/ButtonApp.razor.rz.scp.css */
.btn-app[b-du72z1g43c] {
    color:white !important;
}

    .btn-app:hover[b-du72z1g43c] {
        opacity: 0.9 !important;
        color:white !important;
    }
/* /Components/LoadingFullscreen.razor.rz.scp.css */
.progress:indeterminate[b-kuj2fqdv9g] {
    background-image: linear-gradient(to right,var(--secondary) 30%,#ededed 30%);
}
/* /Components/NavBar.razor.rz.scp.css */
/*.navbar-item-title {
    color: white;
    background-color: none;
}

.navbar-link, a.navbar-item {
    color: white !important;
}

.navbar-item, .navbar-link {
    color: white !important;
}

.navbar {
    background-color: var(--secondary);
}


  
.navbar-menu.is-active {
    background-color: var(--secondary);
}


.custom-navlink:hover .navbar-item-title {
    color: black;
    background-color: transparent;
}

.navbar-link:not(.is-arrowless)::after {
    border-color: white !important;
}

*/

.navbar-burger[b-eyia2pm62p] {
    color: var(--secondary);
}






*[b-eyia2pm62p] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    /* adds animation for all transitions */
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
}

/* Makes sure that everything is 100% height */

html[b-eyia2pm62p], body[b-eyia2pm62p] {
    height: 100%;
    overflow: hidden;
}

.nav-icon[b-eyia2pm62p] {
    width: 20px;
}

.nav-link[b-eyia2pm62p] {
    color: white;
    padding: 20px !important;
}

/* gets the actual input out of the way; 
we're going to style the label instead */

#drawer-toggle[b-eyia2pm62p] {
    position: absolute;
    opacity: 1;
}

#drawer-toggle-label[b-eyia2pm62p] {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    left: 0px;
    height: 50px;
    width: 50px;
    display: block;
    position: fixed;
    background: rgba(255,255,255,.0);
    z-index: 1;
}

.navbar-separator[b-eyia2pm62p] {
    color: black;
    width: 100%;
    border: 1px solid white;
    margin-bottom: 30px;
}

.navbar-user-name[b-eyia2pm62p] {
    font-size: medium;
}

.navbar-user-icon[b-eyia2pm62p] {
    color: black;
    margin-bottom: 15px;
}

.separator[b-eyia2pm62p] {
    color: white;
    width: 100%;
    border: 1px solid white;
    margin-bottom: 30px;
}

.user-icon[b-eyia2pm62p] {
    font-size: x-large;

}

.user-name[b-eyia2pm62p] {
    color: white;
    margin-bottom: 15px;
}
/* adds our "hamburger" menu icon */
/*    #drawer-toggle-label:before {
        content: '';
        display: block;
        position: absolute;
        height: 2px;
        width: 24px;
        background: #8d8d8d;
        left: 13px;
        top: 18px;
        box-shadow: 0 6px 0 #8d8d8d, 0 12px 0 #8d8d8d;
    }*/
header[b-eyia2pm62p] {
    width: 100%;
    position: fixed;
    left: 0px;
    background: #efefef;
    padding: 10px 10px 10px 50px;
    font-size: 30px;
    line-height: 30px;
    z-index: 0;
}

#burguer-button[b-eyia2pm62p] {
    left: 0px;
}

    #burguer-button.is-active[b-eyia2pm62p] {
        left: 300px;
    }

/* drawer menu pane - note the 0px width */

#drawer.is-active[b-eyia2pm62p] {
    position: fixed;
    top: 0;
    left: 0px;
    height: 100%;
    width: 300px;
    background: var(--secondary);
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
}


#drawer[b-eyia2pm62p] {
    position: fixed;
    top: 0;
    left: -300px;
    height: 100%;
    width: 300px;
    background: var(--secondary);
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
    overflow: hidden;
    
}

/* actual page content pane */

#page-content[b-eyia2pm62p] {
    margin-left: 0px;
    margin-top: 50px;
    width: 100%;
    height: calc(100% - 50px);
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
}

/* checked styles (menu open state) */

#drawer-toggle.is-active ~ #drawer-toggle-label[b-eyia2pm62p] {
    height: 100%;
    width: calc(100% - 300px);
    background: rgba(255,255,255,.8);
}

#drawer-toggle.is-active ~ #drawer-toggle-label[b-eyia2pm62p],
#drawer-toggle.is-active ~ header[b-eyia2pm62p] {
    left: 300px;
}

#drawer-toggle.is-active ~ #drawer[b-eyia2pm62p] {
    left: 0px;
}

#drawer-toggle.is-active ~ #page-content[b-eyia2pm62p] {
    margin-left: 300px;
}

/* Menu item styles */

#drawer ul[b-eyia2pm62p] {
    list-style-type: none;
}

    #drawer ul a[b-eyia2pm62p] {
        display: block;
        padding: 10px;
        color: white;
        text-decoration: none;
    }

        #drawer ul a:hover[b-eyia2pm62p] {
            color: lightgreen;
        }

/* Responsive MQ */

@media all and (max-width:350px) {

    #drawer-toggle.is-active ~ #drawer-toggle-label[b-eyia2pm62p] {
        height: 100%;
        width: 50px;
    }

    #drawer-toggle.is-active ~ #drawer-toggle-label[b-eyia2pm62p],
    #drawer-toggle.is-active ~ header[b-eyia2pm62p] {
        left: calc(100% - 50px);
    }

    #drawer-toggle.is-active ~ #drawer[b-eyia2pm62p] {
        width: calc(100% - 50px);
        padding: 20px;
    }

    #drawer-toggle.is-active ~ #page-content[b-eyia2pm62p] {
        margin-left: calc(100% - 50px);
    }
}
/* /Components/Notification.razor.rz.scp.css */

.notification-container[b-dxpdnh067p] {
    display: flex;
    justify-content: right;
    width: 100%;
    background-color: blue;
 
}

.notification[b-dxpdnh067p] {
    position: absolute;
    opacity: 1;
    width: 400px;
    margin-top: 50px;
    margin-right: 20px;
    z-index: 999999;
}

.show[b-dxpdnh067p] {
    animation: fadeIn-b-dxpdnh067p 400ms; 
    opacity:1
}


@keyframes fadeIn-b-dxpdnh067p {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* /Components/PaginationComponent.razor.rz.scp.css */
.pagination-link.is-current[b-7pldvzgu7b] {
    background-color: var(--primary) !important;
    border-color: var(--primary);
}
/* /Components/SelectEntity.razor.rz.scp.css */
.input-select[b-rvrreqxvbv] {
    cursor: pointer !important;
}
/* /Pages/Login.razor.rz.scp.css */
.login-column[b-aioo2hd1u4] {
    display: flex;
}

.image-column[b-aioo2hd1u4] {
    flex: 60%;
}

.form-column[b-aioo2hd1u4] {
    flex: 40%;
}

.imagem[b-aioo2hd1u4] {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.title[b-aioo2hd1u4] {
    margin-left: 22px;
}

.login-container[b-aioo2hd1u4] {
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 100vw;
}

.login-form[b-aioo2hd1u4] {
    display: flex;
    width: 40%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.login-content[b-aioo2hd1u4] {
    padding-left: 30px;
    padding-right: 30px;
}

.login-tamanho[b-aioo2hd1u4] {
    width: 680px;
}

.img-container[b-aioo2hd1u4] {
    width: 60%;
    height: 100%;
}


@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .login-form[b-aioo2hd1u4] {
        width: 100%;
    }

    .img-container[b-aioo2hd1u4] {
        visibility: hidden;
        width: 0%;
        height: 100%;
    }

    .login-tamanho[b-aioo2hd1u4] {
        width: 300px;
    }

    .login-content[b-aioo2hd1u4] {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media only screen and (max-width: 1500px) {
    .login-tamanho[b-aioo2hd1u4] {
        width: 300px;
    }
}
/*@media (max-width: 768px) {
    .login-form {
        width: 100%;
    }

    .img-container {
        visibility:hidden;
        width: 0%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .login-form {
        width: 100%;
    }

    .img-container {
        visibility: hidden;
        width: 0%;
        height: 100%;
    }
}

@media (max-width: 370px) {
    .login-form {
        width: 100%;
    }

    .img-container {
        visibility: hidden;
        width: 0%;
        height: 100%;
    }
}*/
