@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Mega:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

:root {
    --font-primary: "Lato", "sans-serif";
    --font-secondary: "Montserrat", sans-serif;
    --font-accent: "Lexend Mega", sans-serif;
    --text-color: #3a3a3a;
    --background: #f3f4f8;
    --primary: #414c73;
    --accent: #ff974b;
    --highlight: #753100;
}

.text-accent-color {
    color: var(--accent);
}

.text-highlight {
    color: var(--highlight);
}

body {
    font-family: var(--font-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    background-color: var(--background);
}

body.no-scroll {
    overflow: hidden;
}

header {
    background-color: #4c5171;
}

header a,
footer a {
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
    transition: 0.2s;
}


footer {
    font-size: 0.9rem;
    margin-top: 2.5rem;
    padding: 2rem 1rem;
    color: #DEE3EB;
    background-color: #47494F;
}

.navbar-brand {
    background: #f79d37;
    background: linear-gradient(to right, #ffaf9a 0%, #ffa187 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.15rem;
}

.navbar-brand:focus,
.navbar-brand:hover {
    color: var(--accent);
}

.brand-name {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.error_footer a {
    text-decoration: none;
}

.org-logo {
    width: 2.7rem;
}

.dropdown-icon {
    font-size: 0.75rem;
}

.rotate-dropdown-icon {
    transition: transform 0.3s ease;
    /* Adjust the duration and easing as needed */
    transform: rotate(-180deg);
    /* Rotate the icon 180 degrees */
}

.revert-dropdown-icon-rotate {
    transition: transform 0.3s ease;
    /* Adjust the duration and easing as needed */
    transform: rotate(0deg);
}

td {
    vertical-align: baseline;
}

th {
    font-weight: 600;
}

.table-transparent td {
    background: none;
}

.table-transparent th {
    background: none;
}

.border-none {
    border: none;
}

.border-radius-none {
    border-radius: 0 !important;
}

.text-decoration-none {
    text-decoration: none;
}

/* LOADER */

.loader {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5000;
    background-color: #000000ae;
    justify-content: center;
    align-items: center;
    font-family: var(--font-secondary);
    font-weight: 600;
    transition: 1s;
}

#my-loader span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: #ffffff;
    margin: 35px 5px;
}

#my-loader span:nth-child(1) {
    animation: bounce 1s ease-in-out infinite;
}

#my-loader span:nth-child(2) {
    animation: bounce 1s ease-in-out 0.33s infinite;
}

#my-loader span:nth-child(3) {
    animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce {

    0%,
    75%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.breadcrumb-item a {
    text-decoration: none;
}

/* Dropdown Active */
.dropdown-item.active,
.dropdown-item:active {
    text-decoration: none;
    color: var(--bs-dropdown-link-active-color);
    background-color: #515c8a;
}

.footer_link {
    color: var(--accent);
}

.footer_link:hover {
    color: var(--accent);
}

.header-img {
    width: 100%;
}

.page_settings_div {
    position: absolute;
    right: 6vw;
    top: 0.5rem;
}

header .nav-link {
    font-size: .9rem;
    color: #ffffff;
    font-family: var(--font-secondary);
}

header .nav-link:hover,
header a:hover {
    color: var(--accent);
}

header .nav-link:focus,
header a:focus {
    color: var(--accent);
}

header .navbar-toggler {
    color: #ffffff;
    border: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

header .navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--accent);
}

.truncate-span {
    width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page_settings_btn_group {
    display: flex;
    gap: 1rem;
}

.card {
    border-radius: 8px;
    border: none;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.my-card-header {
    padding: 1rem 1.5rem;
    border-radius: 8px 8px 0 0;
    border: 0;
    border-bottom: 1px solid #d3d3d3;
}

.card-section {
    padding: 1.75rem 1rem 1rem 1rem;
    border: 1px solid #c0c8d0;
    border-radius: 8px;
}

.card-section-header {
    display: flex;
    justify-content: center;
    position: relative;
}

.card-section-header h5 {
    padding: 0 0.5rem;
    position: absolute;
    text-align: center;
    top: -2.55rem;
}

.form-error {
    color: #d22e2e;
}

/* LOGIN ERROR */
.login_error {
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    padding: 0.5rem 1.25rem;
    margin-bottom: 0.5rem;
    color: #ff4242;
    background-color: #fd00002a;
    border: 1px solid #ffa8a8;
}

/* DATATABLE PAGE LINK */
.active>.page-link,
.page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #515c8a;
    border: 1px solid #646f99;
}

/* Select2 */
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
    padding: 0.25em 0.45em;
    margin-left: 0.275rem;
    margin-bottom: 0.275rem;
}

/* ERROR PAGE */

.error_div {
    font-family: var(--font-secondary);
    margin: auto;
    text-align: center;
}

/* LANDING PAGE */

.parent_div {
    display: flex;
    flex-wrap: wrap;
    font-family: var(--font-primary);
}

.card_header {
    font-family: var(--font-secondary);
    text-align: center;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 1rem 0;
}

/* VERTICAL NAV TABS */

.nav-tabs .nav-link {
    margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.vertical-nav-tab-group {
    min-height: 22rem;
}

.nav-link:focus,
.nav-link:hover {
    color: #515c8a;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #515c8a;
    border-color: #465079;
}

.font-primary {
    font-family: var(--font-primary);
}

.font-secondary {
    font-family: var(--font-secondary);
}

.font-accent {
    font-family: var(--font-accent);
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.text-sm {
    font-size: 0.9rem !important;
}

.text-xsm {
    font-size: 0.85rem !important;
}

.text-xxsm {
    font-size: 0.75rem !important;
}

.text-md {
    font-size: 1rem !important;
}

.form-note {
    font-weight: 500;
    font-size: .9rem;
    text-align: justify;
}

.auth-card-logo {
    width: 5.6rem;
}

@import url(https://fonts.googleapis.com/css?family=Racing+Sans+One);

body {
    background: #EEE;
}

.form-group {
    margin-bottom: 0.5rem;
}

.my_header {
    margin: 0 0 1.25rem 0;
    font-weight: 500;
    font-size: 1.3rem;
    /* background-color: #ebeefa; */
    text-align: center;
    border-radius: .2rem;
    padding: .1rem 0;
    border: 1px solid #a9b6de;
    background: linear-gradient(270deg, rgba(210, 219, 255, 0.685) 0%, rgb(240, 235, 255) 100%);

}

.bg_load {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #EEE;
}

.wrapper {
    /* Size and position */
    font-size: 25px;
    /* 1em */
    width: 8em;
    height: 8em;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -100px;
    margin-left: -100px;

    /* Styles */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1em dashed rgba(138, 189, 195, 0.5);
    box-shadow:
        inset 0 0 2em rgba(255, 255, 255, 0.3),
        0 0 0 0.7em rgba(255, 255, 255, 0.3);
    animation: rota 6.5s linear infinite;

    /* Font styles */
    font-family: 'Racing Sans One', sans-serif;

    color: #444;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 .04em rgba(255, 255, 255, 0.9);
    line-height: 6em;
}

.wrapper:before,
.wrapper:after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: inherit;
    box-shadow: inset 0 0 2em rgba(255, 255, 255, 0.3);
    border: 1em dashed;
}

.wrapper:before {
    border-color: rgba(138, 189, 195, 0.2);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.wrapper:after {
    border-color: rgba(138, 189, 195, 0.4);
    top: 1em;
    right: 1em;
    bottom: 1em;
    left: 1em;
}

.wrapper .inner {
    width: 100%;
    height: 100%;
    animation: rota 6.5s linear reverse infinite;
}

.wrapper span {
    display: inline-block;
    animation: placeholder 1.5s ease-out infinite;
}

/* .inner img {
    display: inline-block;
    animation: rota 6.5s linear reverse infinite;
} */

.wrapper span:nth-child(1) {
    animation-name: loading-1;
}

.wrapper span:nth-child(2) {
    animation-name: loading-2;
}

.wrapper span:nth-child(3) {
    animation-name: loading-3;
}

.wrapper span:nth-child(4) {
    animation-name: loading-4;
}

.wrapper span:nth-child(5) {
    animation-name: loading-5;
}

.wrapper span:nth-child(6) {
    animation-name: loading-6;
}

.wrapper span:nth-child(7) {
    animation-name: loading-7;
}

@keyframes rota {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loading-1 {
    14.28% {
        opacity: 0.3;
    }
}

@keyframes loading-2 {
    28.57% {
        opacity: 0.3;
    }
}

@keyframes loading-3 {
    42.86% {
        opacity: 0.3;
    }
}

@keyframes loading-4 {
    57.14% {
        opacity: 0.3;
    }
}

@keyframes loading-5 {
    71.43% {
        opacity: 0.3;
    }
}

@keyframes loading-6 {
    85.71% {
        opacity: 0.3;
    }
}

@keyframes loading-7 {
    100% {
        opacity: 0.3;
    }
}

/* Document Upload Modal style */

#documentFile {
    opacity: 0;
}

#upload-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
}

.image-area {
    border: 2px solid rgba(184, 184, 184, 0.7);
    padding: .5rem;
    position: relative;
}

.image-area::before {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    top: 70%;
    left: 20%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    z-index: 1;
}

.image-area img {
    z-index: 2;
    position: relative;
}

/* nav tabs */
.input-group .m-btn {
    position: relative;
    z-index: 2;
}

.nav-pills {
    border-bottom: 1px solid #c1c1c1;
    align-items: center;
}

.nav-link {
    color: #474747;
}

.nav-link:hover {
    color: #575a64;
}

.nav-pills .nav-link.active {
    font-size: 1.15rem;
    font-weight: 600;
    background-color: transparent;
    border-radius: 0;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.pay {
    background-image: url("../images/paymentGateway.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.finished {
    border-left: 10px solid #16b540;
}

.incomplete {
    border-left: 10px solid #afa51c;
}

.rejected {
    border-left: 10px solid #97350e;
}

.reverted {
    border-left: 10px solid #3552d1;
}

.application-complete {
    background-image: url("../images/completed.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* ==============progress bar=========== */
.progress_bar {
    display: flex;
    justify-content: space-between;
}

.progress_step {
    font-size: 1.25rem;
    color: #77ae6c;
}

#line {
    width: 100%;
    margin-top: 0.25rem;
    background-color: #dbdbdb;
    height: 4px;
    border-radius: 50px;
    transition: all ease 0.75s;
}

#line-progress {
    content: " ";
    width: 5%;
    height: 100%;
    background-color: rgb(97, 146, 175);
    background: linear-gradient(to right #83bed0 0%, #93d6e2 100%);
    border-radius: 50px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.25);
}

.progress_step_div {
    cursor: pointer;
    text-align: center;
}

.progress_step_desc {
    font-family: 'Montserrat', 'sans-serif';
    font-weight: 600;
    font-size: 0.8rem;
    color: #575757
}

.form-label {
    margin-bottom: 0;
}

.m-thead {
    background-color: #dbe1f7;
}