﻿a {
    text-decoration: none;
}

.breadcrumb {
    background-color: #f5f5f5;
    padding: 8px 15px;
}

.gray {
    background-color: #eee;
    padding-bottom: 5px;
    padding-top: 5px;
}

:root {
    --main-button-color: #008200;
    --form-button-border-color: #BBBBBB;
    --font-color: #000000;
    --main-blue-color: #002d62;
    --side-nav-active-color: #EEEEEE;
    /*--body-height: 1300px;*/
    --border-color: #DDDDDD;
    --main-organge-color: #E75309;
}

html {
    overflow-y: scroll;
}
/*Bootstrap-extension*/
.has-error {
    border-color: #B22222;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(178,34,34, .3);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(178,34,34, .3);
}

.has-success {
    border-color: #4BB543;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(75,181,67, .3);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(75,181,67, .3);
}

.loading {
    background-color: #ffffff;
    background-image: url('../images/loading-icon.gif');
    background-size: 20px 20px;
    background-position: right center;
    background-repeat: no-repeat;
}

.customfilep {
    font-size: 14px !important;
    color: #0a9de7;
}

    .customfilep > i {
        padding-left: 5em;
        color: #e7540a;
    }


/* input[type="file"] {
    display: none;
} */

.custom-file-upload {
    border: 1px solid #cccccc;
    background-color: #aaaaaa;
    color: #ffffff;
    font-size: 14px;
    border-radius: 3px;
    padding: 6px 35px;
    cursor: pointer;
}

    .custom-file-upload > span {
        font-size: 18px
    }

.h-25 {
    height: 25%;
}

.h-50 {
    height: 50%;
}

.h-75 {
    height: 75%;
}

.h-100 {
    height: 100%;
}

.w-25 {
    width: 25%;
}

.w-50 {
    width: 50%;
}

.w-75 {
    width: 75%;
}

.w-100 {
    width: 100%;
}

.vcenter {
    display: flex;
    align-items: center;
}


.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutterheight {
    margin: 0 auto !important;
}

.no-gutterspad {
    padding-right: 0;
    padding-left: 0;
}

.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.inline-block {
    display: inline-block;
}

.control-label {
    font-weight: 400;
}

.form-row > div {
    padding-bottom: 15px;
}
/*Website specific*/
/*
a, p, b, i, h1, h2, h3, h4, h5, h6, span, div, label, .form-control, control-label {
    font-family: "Segoe UI", "Open Sans", "Arial", "sans-serif";
    font-size: 12pt;
}
*/

.navbar-dark a {
    text-decoration: none;
    color: white;
}

    .navbar-dark a:hover {
        text-decoration: underline;
        color: white;
    }

a {
    color: black;
    background-color: transparent !important;
}



#FooterText > p {
    color: black;
    background-color: transparent !important;
    font-size: 14px;
}

    a:hover {
        text-decoration: none;
        color: inherit;
    }

.activeLink {
    text-decoration: underline;
    text-decoration-line: underline;
    text-decoration-style: initial;
    text-decoration-color: initial;
    font-weight: 500;
}

label {
    font-size: 14px;
    color: black;
    font-weight: normal;
}

h1 {
    font-size: 32px;
}

h2 {
    font-weight: 400;
    font-size: 25px;
    color: var(--main-blue-color);
}

h4 {
    font-size: 18px;
}

.form-control {
    border-radius: 0;
}

body {
    padding-bottom: 20px;
}

footer {
    text-align: center;
    padding-top: 20px;
}

textarea {
    resize: none;
}

.checkbox {
    font-weight: lighter;
}

.downloadfile:link {
    text-decoration: underline;
    cursor: pointer;
    color: #0645AD;
}

.downloadfile:visited {
    text-decoration: underline;
    cursor: pointer;
    color: #0B0080;
}


.pagination-custom {
    padding-left: 8px;
}

    .pagination-custom > ul > li {
        margin-top: -5px;
    }

        .pagination-custom > ul > li:active {
            background-color: RGBA(255,255,255,0.4);
            border-radius: 10px;
        }

/*hide checkboxes for customization*/
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 25px !important;
    padding-right: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 200;
    line-height: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-checkbox-inline {
    display: inline-block !important;
}

/* Hide the browser's default checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
    cursor: pointer;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
    background-color: #FFFFFF;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}



/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    display: block;
}

.navbar {
    margin-bottom: 0;
    z-index: 1;
    border: 0px;
}

/* Header navigation */
.loginfield {
    background-color: black;
}

    .loginfield:hover {
        background-color: #191919;
    }

#header-navigation > li {
    width: 25%;
    text-align: center;
    height: 50px;
    padding: 5px;
}

.vertical-nav {
    height: 50px;
}

.header-background {
    background-color: var(--main-blue-color);
    height: 50px;
}

    .header-background a {
        color: #FFFFFF;
    }

        .header-background a:hover {
            text-decoration: none;
            cursor: pointer;
        }

.fill {
    padding-bottom: 18px;
}

.headertextcenter {
    text-align: center;
    padding-top: 12px !important;
}

.headertextright {
    text-align: right;
    padding-top: 12px !important;
}

.navbar-brand {
    float: left;
    height: 50px;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 1px;
    font-weight: 300
}

.logoutbotton {
    width: 100%;
    height: 100%;
}

#LoginNavigation > div:last-child {
    background-color: green !important;
    padding-bottom: 18px;
    text-align: center;
    padding-top: 12px !important;
}

    #LoginNavigation > div:last-child:hover {
        background-color: black;
    }

.hyphens {
    overflow-wrap: break-word;
}

.FileError {
    overflow: visible;
}


#LoginNavigation > div:last-child > a {
    font-size: 12px;
}

.container {
    margin-top: 50px;
    display: inline-block;
}

div #Container {
    margin-top: 100px;
}

.container-left {
    background-color: green;
}

.vertical-nav > ul > li:hover {
    border-bottom: solid;
    margin-bottom: -5px;
    border-bottom-color: #325681;
    border-width: 2px
}

.active.nav-item {
    border-bottom: solid;
    border-bottom-color: #002d62;
    border-width: 2px
}

.active-trans {
    border-bottom: solid;
    border-bottom-color: rgba(255, 255, 255, 0.0);
    border-bottom-width: 2px;
}

/* leftNavigationSection */

.sidenav > ul > li:hover {
    background-color: var(--border-color) !important;
}

.jstree-node {
    padding-top: 3px !important;
}

.jstree-default .jstree-wholerow-clicked {
    background: linear-gradient(to bottom, var(--border-color) 0, var(--border-color) 100%);
}


.btns {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
}

.glyphicon-right {
    float: right;
}

#main, main {
    border-top: 1px solid var(--border-color);
}

#jstree > ul, formnavigationtree > h2 {
    padding-left: 15px;
}

#leftNavigationSection {
    border-right: solid;
    border-width: 1px;
    border-color: var(--border-color);
}

    #leftNavigationSection > div:first-child, #leftNavigationSection > div:first-child {
        margin-top: 15px;
        margin-right: 5px;
    }

        #leftNavigationSection > div:first-child > a, #leftNavigationSection > div:first-child > a {
            padding-left: 5px;
        }

        #leftNavigationSection > div:first-child > div:last-child, #leftNavigationSection > div:first-child > div:last-child {
            padding-right: 5px;
            color: #AAAAAA;
        }

            #leftNavigationSection > div:first-child > div:last-child > span, #leftNavigationSection > div:first-child > div:last-child > span {
                margin: 9px 5px 15px -30px;
            }

            #leftNavigationSection > div:first-child > div:last-child:hover, #leftNavigationSection > div:first-child > div:last-child:hover {
                color: #000000;
            }

#sidenavleftborder {
    border-left: solid;
    border-width: 1px;
    border-color: var(--border-color);
}

#FormDatasDetailsh1 {
    padding-bottom: 0 !important;
}

.FormDetailsInfo > div > div > div.form-group > p,
.FormDetailsInfo > div > div > div.form-group > b,
.FormDetailsInfo > div > div > div.form-group,
.FormDetailsInfo .formLine,
.FormDetailsInfo .formLine b {
    font-size: 12px;
    font-family: "Segoe UI", "Open Sans", "Arial", "sans-serif";
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 1.428571429;
    border-radius: 50%;
    border-width: 2px;
    border-color: var(--main-button-color);
    color: var(--main-button-color);
    background-color: transparent;
}


    .btn-circle > i {
        position: relative;
        margin-left: -1px;
    }


        .btn-circle > i:hover {
            text-decoration: none;
        }

.icon-create {
    zoom: 1.71;
    color: var(--main-button-color);
}


.button-add {
    border: 0 solid transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding-right: 1px;
    margin-right: 1px;
    background-color: transparent;
}

    .button-add:active {
        border: 0 solid transparent;
        background-color: transparent;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .button-add:focus {
        background-color: transparent;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }


.sidenav-active {
    background-color: var(--border-color);
}

.leftNavigationSection > ul {
    margin-left: 0;
}

    .leftNavigationSection > ul > a > li {
        padding: 5px 0;
    }

        .leftNavigationSection > ul > a > li:hover {
            background-color: #f5f5f5;
        }

#container {
    height: var(--body-height) !important;
}

    #container > div {
        height: var(--body-height) !important;
    }

.nav-list {
    height: 30px;
}

    .nav-list > a > div {
        width: 100%;
        background-color: green;
    }
/*MainBody*/
.FormlineSubmit {
    background-color: #FFFFFF;
    height: 82px;
    border: solid;
    border-width: 1px;
    border-color: var(--form-button-border-color);
    line-height: 82px;
    text-align: center;
    color: var(--main-button-color)
}

/*Style for dynamic text boxes, Excluding SortOrder textbox*/
.TextboxStyleComponent {
    background-color: #E5E5E5;
    padding-bottom: 20px;
}

.SortOrderStyle {
    text-align: right;
    padding-right: 10px;
}

.SortOrderStyleComponent {
    width: 20px;
    font-size: 16px;
    text-align: center;
}

#maintitle {
    padding-left: 13px;
}

.btn-color-blue {
    color: var(--main-blue-color);
}

.button-add

#rightsidenav {
    text-align: right;
}

/*PORTAL INDEX*/
#portalbody {
    border: 1px solid #EEEEEE;
    border-radius: 0;
    /*1091px*/
}

#logo {
    padding-top: 1px;
    float: left;
    zoom: 0.65;
}


#Header-nav > a:first-child {
    color: #E75309;
}

#Header-nav > a > div {
    height: inherit;
    border-color: #DDDDDD;
    line-height: 70px;
    font-weight: bold;
    border-right: 1px solid #DDDDDD;
}

.b-423 {
    height: 423px;
}

#main-text-area-portal {
    position: relative;
}

    #main-text-area-portal > h1 {
        padding: 35px 10px;
    }

    #main-text-area-portal > div {
        position: absolute;
        bottom: 0;
    }

        #main-text-area-portal > div > h1 {
            font-size: 32px;
        }

        #main-text-area-portal > div > p {
            font-weight: normal;
            line-height: 24px;
            margin-right: 10px;
        }

#main-text-area-portal-nav {
    padding-top: 40px;
}

    #main-text-area-portal-nav > div {
        text-align: center;
    }

#main-text-area-portal-nav-btn1 {
    background-color: #E75309;
    color: #FFFFFF;
}

#main-text-area-portal-nav-btn2 {
    background-color: #EEEEEE;
}

#main-text-area-portal-nav-btn1, #main-text-area-portal-nav-btn2 {
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

#main-image, .formdataptext {
    margin-top: 14px;
}

#main-portal-nav {
    font-family: Raleway;
    text-align: left;
}

#main-portal-form-list {
    margin-right: 10px;
}

    #main-portal-form-list > div > a > h4 {
        margin: 20px 0;
        padding: 0 25px
    }

    #main-portal-form-list > div > a > p {
        margin: 20px 0;
        color: #000000;
        text-size-adjust: 70%;
    }

    #main-portal-form-list > div > p > a {
        color: #E75309
    }

#ApplicationList {
    background-color: #EEEEEE;
    min-height: 476px;
}


.portal-vertical-nav:first-child {
    padding: 0;
}

.portal-vertical-nav > div > ul > li > a {
    color: #B2B2B2
}

.activetext {
    color: #000000 !important;
}

.portal-main-block {
    background-color: #FFFFFF;
    padding: 30px;
}

.portal-main-block2 {
    padding-top: 30px;
    padding-bottom: 30px;
}

    .portal-main-block > h2, .portal-main-block2 > h2 {
        font-weight: 600;
    }

/*.portal-form {
    margin: 10px 0;
    margin-left: 0 !important;
}*/

.portal-form-btns {
    /*margin-top: 20px;
    margin-bottom: 20px;*/
    height: 38px;
}

.btn-default {
    background-color: #E75309;
    color: white;
}

.portal-form-btns > div > input:first-child,
#registrationsend, 
.rightsForm, 
.rightsForm:hover {
    background-color: #E75309;
    color: #FFFFFF;
    border: 0;
    border-radius: 0;
    /*padding: 11px 10px;*/
    font-weight: 500;
    font-size: 12px;
}

.portal-form-btns > button, 
#Payment, 
#ModalBackBtn {
    border: 0;
    border-radius: 2px;
    padding: 11px;
    color: #FFFFFF;
    font-weight: 600
}

    .portal-form-btns > button:first-child {
        background-color: #E75309;
        margin: 0 30px 0 15px;
    }

#Forgotpasswordbtn {
    border: 0;
    box-shadow: 0;
    margin-left: 15px;
    color: var(--main-organge-color);
    font-weight: 500;
    font-size: 12px;
}

.portal-form-btns > button:nth-child(2), #ModalBackBtn {
    background-color: #AAAAAA;
}

.portal-form-btns > button:last-child {
    background-color: #EEEEEE;
    color: #000000;
    margin: 0 30px
}

    .portal-form-btns > button:last-child:hover {
        color: #999999;
    }

.portal-form-btns > div > input:first-child:hover, #registrationsend, .rightsForm, .rightsForm:hover {
    background-color: #e9621f;
}

/*
.portal-form-btns > div > input:last-child {
    color: #E75309;
    margin-right: 11px;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    padding: 11px 0
}

    .portal-form-btns > div > input:last-child:hover {
        color: #e9621f;
    }
*/

#RemoveAttachment {
    cursor: pointer;
}

.jumpotron p {
    font-size: 14px;
}


/* Formdata */

#MainFormData {
    background-color: #FFFFFF;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 15px;
    border: 1px solid var(--border-color);
}

    #MainFormData > div > div > div > div > h3 {
        padding-left: 28px;
        color: var(--main-blue-color)
    }

    #MainFormData > div > div > div > div > .col-md-12 {
        padding-bottom: 50px;
    }

    #MainFormData a:hover {
        text-decoration: underline;
    }

    #FormDataHeader {
        border-bottom: 1px solid #DDDDDD;
    }

    #FormDataHeader > a {
        display: inline-block;
        color: var(--main-organge-color);
        line-height: 28px;
    }

        #FormDataHeader > a:first-letter {
            font-size: 20px;
        }

#FormTextBottom {
    padding-left: 13px;
    font-size: 14px;
    font-weight: normal;
}

    #FormDatasHeaderp a:hover, #FormTextBottom a:hover {
        text-decoration: underline;
    }

#FormDatasHeaderDiv {
    display: inline-block;
    width: 100%;
    padding: 5px 25px;
}

    #FormDatasHeaderDiv > div:first-child {
        width: 70%
    }

    #FormDatasHeaderDiv > div:last-child {
        width: 30%
    }

#FormDatasHeaderp {
    padding-left: 16px;
    font-size: 14px;
    font-weight: normal;
    padding: 0 40px;
}

#FormDatasHeaderDiv > div > h2 {
    text-align: right
}

#TitleArea > div > p {
    padding-left: 13px;
    font-size: 12px;
    line-height: 26px;
    font-weight: 500;
    white-space: pre-line;
}



#TitleArea > div > h1, #FormDatasHeaderDiv > div > h1 {
    font-size: 32px;
    color: var(--main-blue-color);
    font-weight: 400;
    padding-bottom: 40px;
}

#TitleArea > div > h2, #FormDatasHeaderDiv > div > h2 {
    padding-bottom: 20px;
    color: var(--main-blue-color);
    padding-top: 5px;
}

#oydublod > h3 {
    margin-left: 27px;
    padding-bottom: 15px;
    color: var(--main-blue-color);
    font-weight: 400;
}



#oydublod > h2 {
    margin-left: 27px;
    padding: 15px 0;
}

#oydublod > div {
    padding-bottom: 25px;
}

div.myapplicationbox {
    border: 1px #DDDDDD solid;
    width: 100%;
    background-color: white;
}

.myapplicationbox {
    padding: 10px 15px;
    margin: 10px 0;
    overflow: auto;
}

    .myapplicationbox:first-child {
        margin-top: 20px !important;
    }

    .myapplicationbox > a > div:first-child > p {
        font-size: 14px;
    }

        .myapplicationbox > a > div:first-child > p:last-child {
            display: inline-block;
        }

    .myapplicationbox > a > div:first-child > div {
        height: 14px;
        width: 14px;
        background-color: #DDDDDD;
        display: inline-block;
        margin-bottom: -2px;
        border-radius: 2px;
    }

#myapplicationboxlink {
    padding: 20px 0;
}

    #myapplicationboxlink > h4:nth-child(1) {
        width: 75%;
    }

/* Payment Modal Page */
.PaymentModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}


/* Modal Content/Box */
.PaymentModalContent {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 0 20px 20px;
    border: 1px solid #888;
    width: 483px; /* Could be more or less, depending on screen size */
    height: 400px;
}

.modalclose {
    color: #000000;
    float: right;
    font-size: 28px;
    font-weight: 400;
    margin-right: -12px;
}

    .modalclose:hover,
    .modalclose:focus {
        color: red;
        text-decoration: none;
        cursor: pointer;
    }

#Payment {
    background-color: #E75309;
}

    #Payment:hover, #Payment:active, #ModalBackBtn:hover, #ModalBackBtn:active {
        color: #000;
    }

.modal-body > h3 {
    font-size: 18px;
}

.modal-body > p, .formdataptext {
    font-size: 14px !important;
}

.modalbodyfix[style] {
    padding-right: 0 !important;
}

#OrangeLink {
    color: var(--main-organge-color);
    padding-bottom: 25px;
    display: block;
    font-size: 13px;
    font-weight: bold;
}

#SubmissionTimeParagraph {
    margin-top: -15px;
    margin-left: 15px;
    font-size: 16px;
    letter-spacing: 1px;
}

#displaypwdfield:hover {
    text-decoration: underline;
    cursor: pointer;
}

.sidenav label,
.radiobuttons > label:hover {
    cursor: pointer;
}

    .sidenav label:hover {
        text-decoration: underline;
    }

/*PDF AREA*/
.pdf-logo {
    margin-left: 5px;
    background: url(../images/vorn-logo.png) no-repeat;
    margin-top: 10px;
    cursor: pointer;
    height: 100px;
    width: 100px;
    zoom: 0.8;
}
    /*--TODO: Remove !important, it is slow. Currently it is getting overwritten*/
    .pdf-logo > p {
        font-size: 9px !important;
        line-height: 12px !important;
        margin: 3px 0 !important;
        padding-left: 10px !important;
    }

        .pdf-logo > p:first-child {
            padding-top: 100%;
        }

#searchFunction {
    font-size: 16px; /* Increase font-size */
    border: 1px solid #ddd; /* Add a grey border */
}


/*Forbidden specific*/
#ErrorPage > h2 {
    color: #E75309
}

#ErrorPage > p {
    font-size: 18px
}

#ErrorPage > div {
    padding: 30px 0
}

    #ErrorPage > div > a {
        background-color: #E75309 !important;
        color: #FFFFFF;
    }

#formdatatable > tbody > tr {
    height: 30px;
}

.detailheader {
    color: #9a9a9a;
    font-weight: 400
}

.Delete-item:hover {
    color: #dc3545;
    text-decoration: underline;
}

.Edit-item:hover {
    color: #005580;
    text-decoration: underline;
}




@media (min-width: 1024px) {
    #header-portal {
        padding-left: 0;
        padding-right: 0
    }

    .portal-form-btns > button:first-child {
        margin: 0;
    }

    .portal-form-btns > button:nth-child(2) {
        margin-left: 5px;
        margin-right: 5px;
    }

    #Header-nav {
        padding-left: 0;
    }

    #main-text-area-portal > h1 {
        margin-left: -15px;
    }
}

@media (max-width: 767px) {
    .mobile-collapse {
        display: none !important;
    }
}

.forms.sidenav li {
    padding: 10px 15px;
}


.navbar-dark li,
.navbar-light li {
    padding: 0px 20px;
    border-left: 1px solid var(--border-color);
}

.navbar-dark li:last-child,
.navbar-light li:last-child {
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}
}

/*Styles for screens larger than 768 px*/
@media (min-width: 768px) {
    #header-portal {
        padding-left: 0;
        /*padding-right: 0;*/
    }

        #header-portal ul > li {
            height: 68px;
            padding-left: 5px;
            padding-right: 5px;
            border-radius: 2px;
        }

            #header-portal ul > li:last-child {
                border-left: 1px solid var(--border-color);
                border-right: 1px solid var(--border-color);
            }

            #header-portal ul > li > a {
                padding-top: 25px;
                padding-bottom: 25px;
            }

        #header-portal nav {
            margin-bottom: -2px;
        }

        #header-portal ul > li:nth-child(1):hover {
            background-color: RGBA(238,238,238,0.6);
        }

        #header-portal ul > li:nth-child(2):hover {
            background-color: RGBA(238,238,238,0.6);
        }

        #header-portal ul > li:nth-last-child(1):hover {
            background-color: RGBA(231,83,9,0.1);
        }

    .forms.sidenav li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

#SetupSidebar a:link {
    text-decoration: none;
}

#SetupSidebar a:visited {
    text-decoration: none;
}

#SetupSidebar a:hover {
    text-decoration: none;
}

#SetupSidebar a:active {
    text-decoration: none;
}


@media screen and (min-width: 768px) {
    .container .jumbotron, .container-fluid .jumbotron {
        padding-right: 0;
        padding-left: 0;
        padding-top: 5px;
    }

    .portal-form-btns > div > input:first-child, #registrationsend, .rightsForm {
        padding: 7px 25px;
    }

    #Main > section > nav > div {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (max-width: 768px) {

    .AddBorder {
        border-bottom: 1px solid var(--border-color);
    }

    #header-portal {
        border-bottom: 1px solid var(--border-color);
    }

        #header-portal ul > li:last-child {
            border-left: 1px solid var(--border-color);
            border-right: 0;
        }

    #main, main {
        border: 0;
    }

    #registrationsend, .rightsForm {
        padding-left: 35px;
        padding-right: 35px;
    }

    #main-text-area-portal > h1 {
        padding: 15px 0;
    }

    #Main > section > nav {
        margin-bottom: -6px;
    }
}


@media (max-width: 425px) {

    #FormDatasHeaderDiv {
        display: inline-block;
        width: 100%;
        padding: 5px 18px;
    }

    #myapplicationboxlink {
        padding-bottom: 15px;
        padding-top: 15px;
        margin-left: 8px;
    }

        #myapplicationboxlink > h4 {
            font-size: 15px;
            font-weight: 400;
        }

    #header-portal ul > li:last-child {
        border-left: 0;
        border-right: 0;
    }

    #Main > nav > div {
        margin-right: 0;
        margin-left: 0;
    }

    #main-portal {
        /*padding-right: 12px;*/
        margin-right: -2.6%
    }

    .portal-form-btns > button:last-child, .portal-form-btns > button:first-child {
        margin: 0;
    }

    .portal-form-btns {
        margin-left: 15px;
        margin-right: 15px;
    }

        .portal-form-btns > button {
            width: 100%
        }

        .portal-form-btns > div > input {
            padding: 8px 30px;
        }
}

@media (max-width: 375px) {
    .FormDataHeader-Mobile-sm > div > h1, .FormDataHeader-Mobile-sm > div > h2 {
        font-size: 22px !important;
    }
}

body > nav > div > ul > li.active > a {
    margin-bottom: 5px;
}

#ValidationSummaryText {
    display: none;
}

#main-portal .required input[type=text].requiredField,
#main-portal .required input[type=number].requiredField,
#main-portal .required textarea.requiredField,
#main-portal input[type=file],
#main-portal input[type=text],
#main-portal input[type=number],
#main-portal textarea.form-control {
    background-color: white;
}

.input-validation-error {
    border-color: red;
}

.align-bottom-div {
    height: 100%;
}

.btn-align-bottom {
    background-color: red;
    bottom: 0;
}

.form-group.no-padding {
    padding-right: 0px;
}

@media only screen and (max-width: 992px) {
    .btn-display {
        display: none;
    }

    .form-group.no-padding {
        padding-right: 15px;
    }
}

/* Customize the label (the container) */
.checkbox-container,
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkbox-container input,
    .custom-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: -2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark,
input:hover ~ .checkmark {
    background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark,
input:checked ~ .checkmark {
    background-color: #00644F;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after,
input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after,
.checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
