/*_layout.cshtml.css*/

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
}

.nygov-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
}

.layoutDiv {
    margin-bottom: 35px;
    max-width: 81% !important;
    padding-right: 0px !important;
}

@media (min-width: 768px) {
    .govTopPadding {
        padding-top: 10px !important;
    }

    .layoutDiv {
        margin-bottom: 35px;
        max-width: 100%;
    }

    .main-card {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        padding: 20px;
    }

    .fixed-width{
        min-width:260px !important;
    }
}

.leftNav-card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.leftNav-width {
    width: 54px;
}

.form-group {
    margin-bottom: 1rem !important;
}

.push-Main {
    margin-left: 280px !important;
}

.div-Round {
    border-radius: 10px;
}
/*:root{
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color: #4723D9;
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}
*,::before,::after{
    box-sizing: border-box
}
body{
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding: 0 1rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s
}
a{
    text-decoration: none
}*/
.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--white-color);
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    color: var(--first-color);
    font-size: 1.5rem;
    cursor: pointer
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

    .header_img img {
        width: 40px
    }

.l-navbar {
    /*position: fixed;*/
    margin-bottom: 350px;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 70vh;
    background-color: #b878f5;
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_logo, .nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.5rem
}

    .nav_link:hover {
        color: #fff;
        background-color: #5c636a;
        border-color: #565e64;
    }

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: var(--first-color-light);
    margin-bottom: 1.5rem;
    transition: .3s
}

    .nav_link:hover {
        color: var(--white-color)
    }

.nav_icon {
    font-size: 1.25rem
}

.show {
    left: 0
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem)
}

.active {
    color: var(--white-color)
}

    .active::before {
        content: '';
        position: absolute;
        left: 0;
        width: 2px;
        height: 32px;
        background-color: var(--white-color)
    }

.height-100 {
    height: 100vh
}

.headerDiv {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 150px;
    right: 0px;
    overflow: hidden;
}

.loginstate {
    float: right;
    margin-bottom: 10px;
    margin-right: 4px;
}

.imgProfile {
    width: 40px;
    height: 40px;
}

.contentDiv {
    position: inherit;
    top: 150px;
    left: 210px;
    right: 0px;
    overflow: auto;
    margin-bottom:30px;
}


.navLeft {
    position: absolute;
    top: 150px;
    left: 0px;
    z-index: 1;
    overflow: auto;
    bottom: 65px;
    background: #f0f0f0;
}

.footer1 {
    position: absolute;
    height: 120px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
}

@media (min-width: 768px) {

    .header {
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
    }

    .header_img {
        width: 40px;
        height: 40px
    }

        .header_img img {
            width: 45px
        }

    .l-navbar {
        left: 0;
        padding: 1rem 1rem 0 0;
        margin-bottom: 100px;
    }

    .show {
        width: calc(var(--nav-width) + 156px)
    }

    .body-pd {
        padding-left: calc(var(--nav-width) + 188px)
    }
}

@media (max-width: 768px) {    
    .layoutDiv {
        margin-bottom: 35px;
        max-width: 100% !important;
    }

    .headerDiv {
        position: unset;
        top: 0px;
        left: 0px;
        height: 200px;
        right: 0px;
        overflow: hidden;
    }

    .leftNav-width {
        width: 54px;
        height: 30px;
        left: -10px;
    }


    .loginstate {
        float: right;
        margin-right: 5px;
    }

    .imgProfile {
        width: 30px;
        height: 30px;
    }


    .contentDiv {
        position: relative;
        top: 0px;
        right: 0px;
        left: 0px;
        overflow: auto;
        bottom: 100px
    }

    .navLeft {
        position: absolute;       
        background: #f0f0f0;
        z-index: 1;
        bottom: auto;
        overflow: hidden;
    }

    .footer1 {
        position: absolute;
        height: 120px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        overflow: unset;
    }       
}


/*_layout.cshtml.css*/


html {
    font-size: 14px;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.ocfs-color {
    background-color: rgb(67,40,93);
}

.header-title-style {
    font-size: 25px;
    text-align: left;
    margin-top: -5px;
}

.header-margin {
    margin-bottom: 5px;
}

.content-box-style {
    padding-left: 10px;
}

.margin-style {
    margin-top: 2rem;
}

.display-7 {
    font-size: calc(1.325rem + 0.9vw);
    font-weight: 300;
    line-height: 1.2;
}

.display-8 {
    font-size: calc(1.275rem + 0.3vw);
    font-weight: 400;
    line-height: 1.2;
}

.display-9 {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.2;
}

p.page-title {
    margin: 0;
    padding: 0.375em 0 0.375em 0;
    color: #07658f;
    font-size: 2.25em;
    font-family: "ProximaNova Extrabold","ProximaNova",Helvetica,Verdana,"Arial Black",sans-serif;
    line-height: 1.125em;
}

.highlighted {
    background-color: #dee2e6;
}

.hovr:hover {
    background-color: darkgrey;
    cursor: pointer;
}

.govStyle {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media (min-width: 1200px) {
    .display-7 {
        font-size: 2rem;
    }

    .display-8 {
        font-size: 1.5rem;
    }

    .display-9 {
        font-size: 1.225rem;
    }
}

@media (min-width: 1600px) {
    .home-grid-padding {
        padding-left: 6% !important;
        padding-right: 6% !important;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 1050px) {
    .header-title-style {
        font-size: 40px;
        text-align: right;
        margin-top: -10px;
        padding-right: 5.2%;
    }

    .header-margin {
        margin-bottom: 15px;
    }

    .content-box-style {
        padding-left: 2em;
    }

    .margin-style {
        margin-top: 0px;
    }
}

@media (min-width: 415px) {
    .navbar-image {
        float: left !important;
        max-width: 300px;
        min-height: 30px;
    }
}

@media (max-width: 568px) {
    .navbar-image {
        float: left !important;
        width: 50%;
        min-height: 0px;
    }
}

.navbar-image {
    float: left !important;
    width: 100%;
    min-height: 30px;
}

.list-Border {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
}

.checkbox-round {
    width: 1.1em;
    height: 1.1em;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #888888;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

.profile:hover {
    cursor: pointer;
}

.checkbox-round:checked {
    border: 1px #888888;
    background-color: #0d6efd;
}
.userMenu-style {
    padding: 10px;
    text-align: justify;
    z-index: 1 !important;
}
    /**For testing*/
    @media (min-width: 1024px) and (max-width: 1920px) {
        .bodyDiv {
            height: 100%;
            width: 100%;
            position: inherit;
            overflow: auto;
        }

        .headerDiv {
            top: 0px;
            left: 0px;
            height: 150px;
            right: 0px;
            position: inherit;
        }

        .navLeft {
            top: 150px;
            left: 0px;
            bottom: 65px;
            z-index: 1;
            background: #f0f0f0;
            position: absolute;
        }

        .contentDiv {
            top: 10px;
            left: 0;
            right: 0px;
            bottom: 0;
            position: inherit;
        }

        .topcorner {
            top: 0px;
            right: 5px;
            width: 150px;
            border-radius: 10px;
            background: #f5f5f5;
            border-width: 2px;
            border-style: groove;
            box-shadow: 0 2px 8px rgba(0,0,0,0.8);
            position: inherit;
        }

        .footer {
            position: absolute;
            bottom: 0;
            width: 100%;
            white-space: nowrap;
        }

        input[type=radio] {
            accent-color: blue;
        }

        /* Chrome, Safari, Edge, Opera */
        input::-webkit-outer-spin-button,
        input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        /* Firefox */
        input[type=number] {
            -moz-appearance: textfield;
        }
    }
