:root {
    --primary-orange: #DF3601;
    --primary-blue: #016C78;
    --secondary-yellow: #f2aa00;
    --secondary-lime: #73cb98;
    --secondary-blue: #00558c;
    --secondary-purple: #762582;
    --secondary-gray: #5a6770;
    --base-white: #ffffff;
    --base-gray: #F0F0F0;
    --base-black: #0D0D0D;
    --spot-text: #ffc374;
    --purple-bg: #673ab7;
    --blue: #1e9ff2;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #ff4961;
    --orange: #ff9149;
    --yellow: #ffc107;
    --green: #28d094;
    --teal: #20c997;
    --cyan: #666ee8;
    --white: #fff;
    --gray: #6b6f82;
    --gray-dark: #464855;
    --primary: #666ee8;
    --secondary: #6b6f82;
    --success: #28d094;
    --info: #1e9ff2;
    --warning: #ff9149;
    --danger: #ff4961;
    --light: #babfc7;
    --dark: #464855;
}

body{
    font-size: 16px;
}

* {
    font-family: 'Rubik', sans-serif;
    font-family: "Quicksand", Georgia, "Times New Roman", Times, serif;
}

option {
    font-family: "Quicksand", sans-serif !important;
}

/*====================================
        header style CSS
====================================*/

#mynavbar ul.navbar-nav, #mynavbarMobile ul.navbar-nav {
    margin-top: 2px;
}

.navbar-brand {
    font-size: 1.6em;    
    color: var(--base-white) !important;
    font-weight: 700;
}

#mynavbar > ul li.dark-theme, #mynavbar > ul li.notification,
#mynavbarMobile > ul li.dark-theme, #mynavbarMobile > ul li.notification {
    margin-left: 5px;
    display: flex;
    align-items: center;
}

#mynavbar a.nav-link, #mynavbarMobile a.nav-link {
    color: white;
}

#mynavbar a.nav-link:hover, #mynavbarMobile a.nav-link:hover {
    color: #cec6da;
}

header .profile-box span{
    font-size: .82rem;
}

html body.fixed-navbar {
    padding-top: 61px !important;
}

div#mynavbar .dropdown-menu.show {
    transform: scale(1, 1);
    opacity: 1;
    display: block;
}

/*switch button header*/

#mynavbar li.themebox a, #mynavbarMobile li.themebox a {
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    text-decoration: none;
    color: var(--base-white) !important;
    background: none !important;
}

.switch {
    display: inline-block;
    position: relative;
    width: 45px;
    height: 20px;
    border-radius: 20px;
    background: #c1b9cf;
    transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    vertical-align: middle;
    cursor: pointer;
}
.switch::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 17px;
    height: 17px;
    background: #fafafa;
    border-radius: 50%;
    transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.switch:active::before {
    box-shadow: 0 2px 8px rgba(0,0,0,0.28), 0 0 0 20px rgba(128,128,128,0.1);
}

.dark-theme .switch.checked:checked + .switch {
    background: #72da67;
}
.switch.checked::before {
    left: 27px;
    background: #fff;
}

.switch.checked {
    background: #72da67;
}

/*====================================
        Sidebar style CSS
====================================*/

html body .content .content-wrapper {
    padding: 0 !important;
}

.main-menu.menu-fixed {
    top: 61px !important;
    height: calc(100% - 105px) !important;
}

.main-menu .main-menu-content {
    height: 100% !important;
}

.main-menu.menu-light .navigation {
    height: 100%;
}

.main-menu.menu-light .navigation > li > a {
    margin: 0 !important;
    border-radius: 0 !important;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: normal !important;
    text-decoration: none !important;
    /*font-size: 0.99rem;*/
    text-align:center;    
    width: 100%;
    padding:10px 20px !important;
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e8e8e8;
}

.main-menu.menu-light .navigation > li.active > a {
    background: var(--indigo) !important;
    color: var(--base-white) !important;
}

.main-menu.menu-light .navigation > li > a i {
    display: block;
    width: 100%;
    font-size: 2.5rem;
    margin: 0.2rem 0 0.8rem 0;
    text-align: center;
}

.main-menu.menu-light .navigation > li {
    min-height: 16.66%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

#mynavbar .dropdown-menu[data-bs-popper] {
    left: auto !important;
    right: 0 !important;
}

.mobile-menu {
    display: none !important;
}


/*====================================
        Login page style CSS
====================================*/

.login-page {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 145px);
    justify-content: center;   
}

.login-page .card-header{
    background: none;
}

.line-on-side {
    border-bottom: 1px solid #dadada;
    line-height: 0.1em;    
}

.line-on-side span {
    background: #fff;
    padding: 0 10px;
}

.btn-block {
    display: block;
    width: 100%;
}

input#remember-me, input#notificationNord, input#termCheck {
    width: 22px;
    height: 22px;
    margin-right: 5px;
}

::placeholder {
    color: #212529 !important;
    opacity: 1; /* Firefox */
}

.dropdown-toggle::after {
    margin-left: .01em;
}

/*====================================
        Content area style CSS
====================================*/

html body .content.app-content {
    width: calc(100% - 129px);
    margin-left: auto;
    padding: 20px;
}



/*====================================
        Welcome box style CSS
====================================*/

.welcome-box {
    height: calc(100vh - 145px);
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.welcome-box P:first-child {
    font-size: 2rem;
    font-weight: 400;
}

.applicant-tile a {
    min-height: 125px;
    border-radius: 4px;
    min-width: 250px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    font-size: 1.125rem;
    color: var(--base-white) !important;
    padding: 10px;
    font-weight: 700;
    background-image: linear-gradient(50deg, #381479, #1068f2);
    background-repeat: repeat-x;
}

.applicant-tile a i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--base-white);
}

.form-control {
    height: calc(1.25em + 1.5rem + 2px);
}

select.form-control {
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
}

/*dashboard css*/

#secondSection .card {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

/*====================================
        footer style CSS
====================================*/

#page-footer {
    box-shadow: 0px 2px 30px 2px rgb(0 0 0 / 30%) !important;
    background: white;
    height: auto !important;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    min-width: 320px;
    max-width: 100%;
    width: auto;
}

#desktopFooter {
    padding: 5px 10px;
    align-items: center;
}

/*application page*/

.application td.p-status {
    font-weight: bold;
    text-transform: uppercase;
}

.application td.a-status {
    font-weight: bold;
}

/* !end application page*/

/* start new application page*/

#profile_container{
    margin-right: 5px;
}

#profile_container img {
    border-radius: 50%;
    height: 50px;
    border: 2px solid #6610f2;
}

.application-survey-body {
    border: 1px solid lightgrey;
    padding: 10px;
}

/* !end new application page*/


/*button CSS*/

.btn-info {
    background-image: linear-gradient(45deg, #032251, #616ff1);
    background-repeat: repeat-x;
    color: #FFFFFF;    
}

.btn-info:hover,.btn-info:focus {
    background-image: linear-gradient(45deg, #616ff1, #032251);
    background-repeat: repeat-x;
    color: #FFFFFF;
}

html body .content .content-wrapper {
    height: calc(100vh - 145px);
}

#secondSection {
    height: 100%;
}

.text-nodeco {
    text-decoration: none !important;
}

#secondSection .card:hover {
    transform: scale(0.92);
}

#awardsTable tbody td:nth-child(3), #applicationsTable tbody td:nth-child(4),
#awardsTable thead th:nth-child(3), #applicationsTable th:nth-child(4) {
    max-width: 300px;
    white-space: normal;
    word-wrap: break-word;
}

.btn-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

.btn-primary:hover{
    color: #ffffff !important;
    background-color: #0a58ca !important;
    border-color: #0a58ca !important;
}

#yourMessage {
    height: 100px;
}

#yourEmail + div {
    top: 0px;
}

.blockShow{
    display: none;
}


.border-none{
    border:none;
}

.steps > ul > li a {
    text-decoration: none;
}

.app-content .wizard > .actions {
    margin-top: 25px;
}

.app-content .wizard > .actions a{
    text-decoration:none;
}

#awardsTable_wrapper table.dataTable thead th,
#applicationsTable_wrapper table.dataTable thead th,
#expensesTable table.dataTable thead th,
#expensesTable_wrapper table.dataTable thead th {
    border-bottom: 2px solid #e3ebf3;
    vertical-align: middle;
}

#awardsTable_wrapper > .row:last-child > div:first-child {
    display: flex;
    align-items: center;
}

#awardsTable_wrapper > .row:last-child > div:first-child #awardsTable_info {
    padding-top: 0;
}

#awardsTable_wrapper .paginate_button.page-item.active a {
    color: #fff !important;
}

.user-profile-pic > img#profileImg {
    border: solid 2px #058db1;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 5px;
    max-width: 70px;
    width: 100%;
    height: auto;
}

.accounts-page label {
    margin-bottom: 5px;
}

h5.form-section {
    color: #2c343b;
    line-height: 3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #E4E5EC;
    font-weight: 400 !important;
}

/*button CSS end*/

@media (min-width: 768px) {
    .navbar > .container-fluid {
        justify-content: flex-start;
    }

    #mynavbarMobile{
        display: none !important;
    }
}

@media only screen and (max-width: 1024px) {
    section#secondSection > .row.w-50 {
        width: 100% !important
    }
}

@media only screen and (max-width: 992px){
    #secondSection > .row.w-50 > div:last-child {
        margin-top: 1rem;
    }
}

@media only screen and (max-width: 767px) {
    html body .content.app-content {
        width: 100%;
    }

    html body.fixed-navbar {
        padding-top: 51px !important;
    }

    html body .content.app-content {
        height: calc(100vh - 121px);
        min-height: auto !important;
    }

    .login-page {
        height: calc(100vh - 161px);
    }

    html body .content .content-wrapper {
        /*height: calc(100vh - 145px);*/
        height: auto;
    }

    .welcome-box {
        height: calc(100vh - 198px);
    }

    .mobile-menu {
        display: block !important;
    }

    #mynavbar > ul li, #mynavbarMobile > ul li {
        margin: 0 !important;
    }

    #mynavbar > ul li a, #mynavbarMobile > ul li a {
        padding: 10px;
        display: block;
        width: 100%;
    }

    #mynavbar > ul li.dark-theme,
    #mynavbar > ul li.notification,
    #mynavbarMobile > ul li.dark-theme,
    #mynavbarMobile > ul li.notification {
        padding: 10px;
    }

    #mynavbar > ul li a i, #mynavbarMobile > ul li a i, .switch {
        margin-right: 10px;
    }

    #mynavbar li.active > a, #mynavbarMobile li.active > a {
        background: var(--indigo) !important;
        color: var(--base-white) !important;
        text-decoration: none;
    }

    a#nameBtn {
        text-decoration: none;
        color: #fff;
    }

    a#nameBtn::after {
        padding-left: 2px;
    }

    .navbar-brand {
        font-size: 1.2em;
    }

    #page-footer {
        font-size: 0.85em;
    }

    #awardsTable thead, #applicationsTable thead, #expensesTable thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    table#awardsTable tr, table#applicationsTable tr, #expensesTable tr {
        display: block;
        margin-bottom: 20px;
        background: #f2f2f2;
        box-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.075), 0 2px 2px hsl(0deg 0% 0% / 0.075), 0 4px 4px hsl(0deg 0% 0% / 0.075), 0 8px 8px hsl(0deg 0% 0% / 0.075), 0 16px 16px hsl(0deg 0% 0% / 0.075);
        width: 96%;
        margin-left: 2%;
    }

    #awardsTable tr:last-child, #applicationsTable tr:last-child, #expensesTable tr:last-child {
        margin-bottom: 0;
    }

    table#awardsTable td, table#applicationsTable td, #expensesTable td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
        padding-left: 10px;
        padding-right: 10px;
    }

    table#awardsTable td:last-child, table#applicationsTable td:last-child, #expensesTable td:last-child{
        border-bottom: none !important;
    }

    #awardsTable tbody td:nth-child(3), #applicationsTable tbody td:nth-child(4) {
        max-width: 100%;
    }

    #awardsTable_wrapper > .row > div {
        padding: 0 !important;
    }

    table#awardsTable td::before, table#applicationsTable td::before, #expensesTable td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
        padding-right: 10px;
        color: rgb(33, 37, 41);
    }

    table#awardsTable td:last-child, table#applicationsTable td:last-child {
        border-bottom: 0;
    }

    #expensesTable tbody {
        display: block;
    }

    .mobile-none{
        display: none !important;
    }

    #expensesTable_wrapper .col-sm-12, #applicationsTable_wrapper .col-sm-12 {
        padding: 0;
    }

    .navbar > .container-fluid {
        justify-content: flex-start;
    }

    .navbar-toggler {
        margin-right: 10px;
    }

    .navbar-toggler.secondary {
      margin-left: auto;
      border: none;
      padding-right: 0;
      margin-right: 0;
    }

    #mynavbarMobile > ul li {
        justify-content: flex-end;
        text-align: right;
    }

    #mynavbarMobile li.themebox.dark-theme a {
        max-width: 45px;
        padding-right: 0;
        padding-left: 0;
    }

    #mynavbar {
        padding-top: 10px;
    }

    .dark-theme input:checked + .switch {
        background: #72da67;
    }

    .switch-label {
        display: inline-block;
        position: relative;
        width: 45px;
        height: 20px;
        border-radius: 20px;
        background: #c1b9cf;
        transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        vertical-align: middle;
        cursor: pointer;
    }

    .switch-label::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 17px;
        height: 17px;
        background: #fafafa;
        border-radius: 50%;
        transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .switch.checked {
        background: #72da67;
    }

    .switch.checked::before {
        left: 27px;
        background: #fff;
    }

    .mobile-menu a.active {
        background: var(--indigo) !important;
        color: var(--base-white) !important;
        text-decoration: none;
    }

    #name-link #name-dropdown {
        right: 0 !important;
        left: auto !important;
        text-align: right;
    }

    /*Navbar collapse styling*/

    .navbar-collapse {
        position: fixed;
        top: 52px;
        left: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        width: 75%;
        height: 100%;
        background-color: #212529;
    }
    
    .navbar-collapse.collapsing {
        left: -75%;
        transition: height 0s ease;
    }

    .navbar-collapse.show {
        left: 0;
        transition: left 300ms ease-in-out;
    }  

    .navbar-toggler.collapsed ~ .navbar-collapse {
        transition: left 500ms ease-in-out;
    }

    .navbar-toggler-icon i.close {
        display: none;
        font-size: 25px;
        transition: 500ms ease-in-out;
    }

    .navbar-toggler[aria-expanded~="true"] > span {
        background: none;
    }

    .navbar-toggler.collapsed .navbar-toggler-icon i.close {
        display: none;
        transition: 500ms ease-in-out;
    }

    .navbar-toggler[aria-expanded~="true"] .navbar-toggler-icon i.close {
        display: block;
        transition: 300ms ease-in-out;
    }
    .navbar-toggler:focus {
        box-shadow: none;
        border: 1px solid #4e4e4e;
    }

    /*!end Navbar collapse styling*/
}

@media (max-width: 576px) {
    #desktopFooter {
        text-align: center !important;
    }
    #desktopFooter>div:first-child{
        text-align: center !important;
        margin-bottom: 5px;
    }
}

.table-footer {
    font-weight:bold !important;
}

.steps {
    position: relative;
    display: block;
    width: 100%;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.steps > ul {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps > ul > li {
    display: table-cell;
    width: auto;
    vertical-align: top;
    text-align: center;
    position: relative;
    line-height: 1.8;
}

.steps > ul > li a {
    position: relative;
    padding-top: 52px;
    margin-top: 20px;
    display: block;
}

.steps > ul > li.current > a {
    color: #333333;
    cursor: default;
}

.steps > ul > li.disabled a {
    color: #999999;
    cursor: default;
}

.steps > ul > li:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 9;
    right: 0;
}

.steps > ul > li:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 9;
    left: 0;
}

.steps > ul > li:after, .steps > ul > li:before {
    top: 43px;
    width: 50%;
    height: 5px;
    background-color: #666ee8;
}

.steps > ul > li.current:after {
    background-color: #f4f5fa;
}

 .steps > ul > li.current:after {
    background-color: #f4f5fa;
}

 .steps > ul > li.current ~ li:before {
    background-color: #f4f5fa;
}

.steps > ul > li.current ~ li:after {
    background-color: #f4f5fa;
}

.steps > ul > li.done .step {
    background-color: #666ee8;
    border-color: #666ee8;
    color: #fff;
}

.steps .step {
    background-color: #fff;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -24px;
    z-index: 10;
    text-align: center;
}

.steps .step {
    width: 50px;
    height: 50px;
    line-height: 40px;
    border: 5px solid #f4f5fa;
    font-size: 1.3rem;
    border-radius: 50%;
}

.steps > ul > li.first::before, .steps > ul > li.last::after {
    display: none;
}

.steps .current-info {
    position: absolute;
    left: -99999px;
}

.steps > ul > li.current .step {
    border-color: #666ee8;
    background-color: #fff;
    color: #666ee8;
}

.final-step {
    font-size: 1.1em;
}

.required:after {
    content: " *";
    color: red;
}

.section-1, .section-2, .section-3 {
    background: rgb(244, 245, 250);
    border-radius: .45rem;
    padding: 20px;
    margin-bottom: 20px;
}

#togglePassword.fa-eye-slash:before {
    content: "\f070" !important;
}