/* _content/HERP/Pages/ForgotPassword.razor.rz.scp.css */

/* BASIC */

html[b-i3hoevh8ii] {
    background-color: #56baed;
}

body[b-i3hoevh8ii] {
    font-family: "Poppins", sans-serif;
    height: 100vh;
}

a[b-i3hoevh8ii] {
    color: #92badd;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2[b-i3hoevh8ii] {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}



/* STRUCTURE */

.wrapper[b-i3hoevh8ii] {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

#formContent[b-i3hoevh8ii] {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}

#formFooter[b-i3hoevh8ii] {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive[b-i3hoevh8ii] {
    color: #cccccc;
}

h2.active[b-i3hoevh8ii] {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

input[type=button][b-i3hoevh8ii], input[type=submit][b-i3hoevh8ii], input[type=reset][b-i3hoevh8ii] {
    background-color: #56baed;
    border: none;
    color: white;
    padding: 15px 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    input[type=button]:hover[b-i3hoevh8ii], input[type=submit]:hover[b-i3hoevh8ii], input[type=reset]:hover[b-i3hoevh8ii] {
        background-color: #39ace7;
    }

    input[type=button]:active[b-i3hoevh8ii], input[type=submit]:active[b-i3hoevh8ii], input[type=reset]:active[b-i3hoevh8ii] {
        -moz-transform: scale(0.95);
        -webkit-transform: scale(0.95);
        -o-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }

input[type=text][b-i3hoevh8ii], input[type=password][b-i3hoevh8ii] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

    input[type=text]:focus[b-i3hoevh8ii], input[type=password]:focus[b-i3hoevh8ii] {
        background-color: #fff;
        border-bottom: 2px solid #5fbae9;
    }

    input[type=text] :placeholder[b-i3hoevh8ii], input[type=password]:placeholder[b-i3hoevh8ii] {
        color: #cccccc;
    }



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown[b-i3hoevh8ii] {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown-b-i3hoevh8ii;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown-b-i3hoevh8ii {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn-b-i3hoevh8ii {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn[b-i3hoevh8ii] {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn-b-i3hoevh8ii ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

    .fadeIn.first[b-i3hoevh8ii] {
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .fadeIn.second[b-i3hoevh8ii] {
        -webkit-animation-delay: 0.6s;
        -moz-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .fadeIn.third[b-i3hoevh8ii] {
        -webkit-animation-delay: 0.8s;
        -moz-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

    .fadeIn.fourth[b-i3hoevh8ii] {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        animation-delay: 1s;
    }

/* Simple CSS3 Fade-in Animation */
.underlineHover[b-i3hoevh8ii]:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover[b-i3hoevh8ii] {
    color: #0d0d0d;
}

    .underlineHover:hover[b-i3hoevh8ii]:after {
        width: 100%;
    }



/* OTHERS */

*:focus[b-i3hoevh8ii] {
    outline: none;
}

#icon[b-i3hoevh8ii] {
    width: 25%;
}
/* _content/HERP/Pages/Login.razor.rz.scp.css */

/* BASIC */

html[b-8w5hxvjlzj] {
    background-color: #56baed;
}

body[b-8w5hxvjlzj] {
    font-family: "Poppins", sans-serif;
    height: 100vh;
}

a[b-8w5hxvjlzj] {
    color: #92badd;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2[b-8w5hxvjlzj] {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}



/* STRUCTURE */

.wrapper[b-8w5hxvjlzj] {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

#formContent[b-8w5hxvjlzj] {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}

#formFooter[b-8w5hxvjlzj] {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive[b-8w5hxvjlzj] {
    color: #cccccc;
}

h2.active[b-8w5hxvjlzj] {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

input[type=button][b-8w5hxvjlzj], input[type=submit][b-8w5hxvjlzj], input[type=reset][b-8w5hxvjlzj] {
    background-color: #56baed;
    border: none;
    color: white;
    padding: 15px 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    input[type=button]:hover[b-8w5hxvjlzj], input[type=submit]:hover[b-8w5hxvjlzj], input[type=reset]:hover[b-8w5hxvjlzj] {
        background-color: #39ace7;
    }

    input[type=button]:active[b-8w5hxvjlzj], input[type=submit]:active[b-8w5hxvjlzj], input[type=reset]:active[b-8w5hxvjlzj] {
        -moz-transform: scale(0.95);
        -webkit-transform: scale(0.95);
        -o-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }

input[type=text][b-8w5hxvjlzj], input[type=password][b-8w5hxvjlzj] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

    input[type=text]:focus[b-8w5hxvjlzj], input[type=password]:focus[b-8w5hxvjlzj] {
        background-color: #fff;
        border-bottom: 2px solid #5fbae9;
    }

    input[type=text] :placeholder[b-8w5hxvjlzj], input[type=password]:placeholder[b-8w5hxvjlzj] {
        color: #cccccc;
    }



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown[b-8w5hxvjlzj] {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown-b-8w5hxvjlzj;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown-b-8w5hxvjlzj {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn-b-8w5hxvjlzj {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn[b-8w5hxvjlzj] {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn-b-8w5hxvjlzj ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

    .fadeIn.first[b-8w5hxvjlzj] {
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .fadeIn.second[b-8w5hxvjlzj] {
        -webkit-animation-delay: 0.6s;
        -moz-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .fadeIn.third[b-8w5hxvjlzj] {
        -webkit-animation-delay: 0.8s;
        -moz-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

    .fadeIn.fourth[b-8w5hxvjlzj] {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        animation-delay: 1s;
    }

/* Simple CSS3 Fade-in Animation */
.underlineHover[b-8w5hxvjlzj]:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover[b-8w5hxvjlzj] {
    color: #0d0d0d;
}

    .underlineHover:hover[b-8w5hxvjlzj]:after {
        width: 100%;
    }



/* OTHERS */

*:focus[b-8w5hxvjlzj] {
    outline: none;
}

#icon[b-8w5hxvjlzj] {
    width: 25%;
}
/* _content/HERP/Shared/MainLayout.razor.rz.scp.css */
.page[b-w4mpxuoakg] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-w4mpxuoakg] {
    flex: 1;
}

.sidebar[b-w4mpxuoakg] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-w4mpxuoakg] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-w4mpxuoakg]  a, .top-row .btn-link[b-w4mpxuoakg] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-w4mpxuoakg] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-w4mpxuoakg] {
        display: none;
    }

    .top-row.auth[b-w4mpxuoakg] {
        justify-content: space-between;
    }

    .top-row a[b-w4mpxuoakg], .top-row .btn-link[b-w4mpxuoakg] {
        margin-left: 0;
    }
}

@media (min-width: 1100px) {
    .page[b-w4mpxuoakg] {
        flex-direction: row;
    }

    .sidebar[b-w4mpxuoakg] {
        width: 270px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-w4mpxuoakg] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-w4mpxuoakg] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

[b-w4mpxuoakg] .data-grid-responsive {
    width: calc(100vw - 20rem);
}
/* _content/HERP/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-oecub9x4ts] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-oecub9x4ts] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-oecub9x4ts] {
    font-size: 1.1rem;
}

.oi[b-oecub9x4ts] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

[b-oecub9x4ts] .nav-item {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-oecub9x4ts] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-oecub9x4ts] {
        padding-bottom: 1rem;
    }

    .nav-item[b-oecub9x4ts]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .nav-item[b-oecub9x4ts]  a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .nav-item[b-oecub9x4ts]  a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

@media (min-width: 1100px) {
    .navbar-toggler[b-oecub9x4ts] {
        display: none;
    }

    .collapse[b-oecub9x4ts] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}

/* Custom CSS */

/*.dashboard-nav {
    max-height: 238px;
    position: fixed;
    overflow: auto;
}*/

.dashboard-nav-item[b-oecub9x4ts] {
    min-height: 56px;
    padding: 8px 20px 8px 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: 0.02em;
    transition: ease-out 0.5s;
}

.dashboard-nav-dropdown[b-oecub9x4ts] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .dashboard-nav-dropdown.show[b-oecub9x4ts] {
        background: rgba(255, 255, 255, 0.04);
    }

[b-oecub9x4ts] .dashboard-nav-dropdown.show > .dashboard-nav-dropdown-toggle {
    font-weight: bold;
}

    [b-oecub9x4ts] .dashboard-nav-dropdown.show > .dashboard-nav-dropdown-toggle:after {
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }

[b-oecub9x4ts] .dashboard-nav-dropdown.show > .dashboard-nav-dropdown-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

[b-oecub9x4ts] .dashboard-nav-dropdown-toggle:after {
    content: "";
    margin-left: auto;
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(81, 81, 81, 0.8);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

[b-oecub9x4ts] .dashboard-nav .dashboard-nav-dropdown-toggle:after {
    border-top-color: rgba(255, 255, 255, 0.72);
}

.dashboard-nav-dropdown-menu[b-oecub9x4ts] {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dashboard-nav-dropdown-item[b-oecub9x4ts] {
    min-height: 40px;
    padding: 8px 20px 8px 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    transition: ease-out 0.5s;
}

    .dashboard-nav-dropdown-item:hover[b-oecub9x4ts] {
        background: rgba(255, 255, 255, 0.04);
    }
