:root {
    --theme-color: #152a75;
    --white-color: #ffffff;
    --border-color: #a7a1a1;
    --black-color: #000000;
    --bs-link-color: #152a75;
    --bs-link-color-rgb: 21, 42, 117;
    --bs-border-color: var(--border-color);
    --bs-btn-disabled-bg: var(--theme-color);
    --bs-btn-disabled-border-color: var(--theme-color);
}

.alert {
    padding: 9px 10px;
    font-size: 14px;
}

.login-wraper {
    display: flex;
    align-items: center;
    background-color: #f5f6fd;
}

.login-wraper .login-inner-wraper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wraper .login-form-wrap {
    background-color: var(--white-color);
    box-shadow: 0px 3px 6px #00000029;
    padding: 35px;
    max-width: 500px;
    margin: 20px auto;
    width: 100%;
}

.login-wraper .logo-wrap {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wraper .logo-wrap h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    color: #06184c;
    margin: 0;
    max-width: 230px;
}

.login-wraper .logo-wrap img {
    max-width: 55px;
    margin-right: 20px;
}

.login-wraper .form-title {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 25px;
    text-align: center;
}

.login-wraper .field-group {
    margin-bottom: 16px;
}

.login-wraper .field-group .icon {
    width: 35px;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.login-wraper .field-group .field {
    flex: 1 0 0;
}

.login-wraper .field-group .field input {
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 9px 10px;
    outline: none;
    font-size: 15px;
    color: var(--black-color);
    border-radius: 5px;
    line-height: 1;
}

.login-wraper .field-group .field label {
    font-size: 16px;
    margin-bottom: 5px;
}

.forgot-wrapper {
    margin: 10px 0 25px;
    text-align: right;
}

.login-wraper .forgot-password {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    color: var(--theme-color);
}

.login-wraper .submit {
    background: var(--theme-color);
    border-radius: 5px;
    font-size: 15px;
    color: var(--white-color);
    padding: 10px 20px;
    width: 100%;
    transition: all 0.3s;
    border: 1px solid var(--theme-color);
    line-height: 1.2;
}

.login-wraper .submit:hover {
    background-color: transparent;
    color: var(--theme-color);
}

.main-wraper {
    display: flex;
}

.sidebar-wrap {
    z-index: 99;
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, .05) 0px 8px 15px;
    max-width: 250px;
    position: fixed;
    min-height: 100vh;
    height: 100%;
    left: 0;
    top: 0;
    font-size: .875rem;
    border-right: 1px solid #e7e9ed;
}

.main-wraper .content-wrapper {
    flex: 1 0 0;
    padding: 72px 1.5rem 1.5rem;
}

.main-wraper .brand {
    padding-top: 1rem;
    padding-left: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

.main-wraper .brand img {
    width: 36px;
    height: 36px;
}

.brand .logo-text {
    color: #06184c;
    font-size: 20px;
    font-weight: 600;
    vertical-align: middle;
    line-height: 1.1;
}

.navigation-wrap ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.navigation-wrap ul li {
    display: block;
}

.navigation-wrap ul li a {
    padding: .875rem 1rem;
    color: #121212;
    position: relative;
    display: block;
    padding-left: 3rem;
    border-left: 3px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    line-height: 1.34;
    outline: none;
}

.navigation-wrap ul li a img {
    position: absolute;
    left: 1rem;
    top: 1rem;
    object-fit: contain;
    max-width: 16px;
}

.navigation-wrap ul li a.active {
    color: var(--theme-color);
    background: #f5f6fd;
    border-left: 3px solid var(--theme-color);
    font-weight: 500;
}

.main-header {
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
    border-bottom: 1px solid #e7e9ed;
    background: var(--white-color);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 98;
    margin-left: 250px;
    text-align: right;
    padding: 9px 12px;
}

.sidepanel-toggler {
    text-decoration: none;
    color: var(--theme-color);
}

.main-header .dropdown img {
    width: 36px;
}

.main-header button.btn {
    padding: 0;
    outline: none;
    box-shadow: none;
    border: none;
}

.main-wraper .content-wrapper {
    flex: 1 0 0;
    padding: 80px 1.5rem 1.5rem 274px;
    min-height: 100vh;
    max-width: 100%;
    background: #f5f6fd;
}

.title-wrapper h1 {
    font-size: 1.5rem;
    font-weight: bolder;
    margin-bottom: 0;
    line-height: 1.5;
}

.title-wrapper {
    margin-bottom: 1.5rem;
}

.app-btn-primary {
    background: var(--theme-color);
    color: var(--white-color);
    border: 1px solid var(--theme-color);
}
.app-btn-primary:disabled {
    --bs-btn-disabled-bg: var(--theme-color);
    --bs-btn-disabled-border-color: var(--theme-color);
}
.app-btn-primary:hover {
    background-color: transparent;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
}

.app-outline-primary {
    background-color: transparent;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
}

.app-outline-primary:hover {
    background: var(--theme-color);
    color: var(--white-color);
    border: 1px solid var(--theme-color);
}

.table-wrap table.dataTable tbody td {
    padding: .7rem 1.2rem;
    color: #5d6778;
    font-size: 14px;
    border: 0;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

.table-wrap table.dataTable thead th {
    color: #5d6778;
    font-size: 14px;
    border: 0;
    border-bottom: 1px solid #dee2e6;
    background-image: none;
    pointer-events: none;
}

.table-wrap table.dataTable.no-footer {
    border: none;
}

.table-wrap :is(.view-btn, .edit-btn) {
    background: transparent;
    color: currentColor;
    border: 1px solid currentColor;
    padding: 2px 9px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.table-wrap :is(.view-btn, .edit-btn):hover {
    border-color: var(--theme-color);
    color: var(--theme-color);
}

.table-wrap .dataTables_wrapper .dataTables_processing {
    background: #ffffffbf;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-wrap .dataTables_wrapper .dataTables_processing[style="display: block;"] {
    display: flex !important;
}

.table-wrap .dataTables_wrapper {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    background: var(--white-color);
}

.table-wrap .table-bottom {
    display: flex;
    justify-content: space-between;
    background: var(--white-color);
    padding: 10px 18px;
    align-items: center;
}

.table-wrap .table-bottom .dataTables_info {
    padding: 0;
    color: #5d6778;
    font-size: 14px;
    border: 0;
    font-weight: 500;
}

.table-wrap .table-bottom .dataTables_paginate {
    padding-top: 0;
}

body .table-wrap .table-bottom .dataTables_paginate .paginate_button {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-border-radius: var(--bs-border-radius);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background: transparent !important;
    color: var(--theme-color) !important;
    border: 1px solid var(--theme-color) !important;
    min-width: 40px;
    margin: 0 4px;
    font-size: 15px;
}


body .table-wrap .table-bottom .dataTables_paginate .paginate_button:is(:hover, .current) {
    background: var(--theme-color) !important;
    color: var(--white-color) !important;
    border: 1px solid var(--theme-color);
}

.table-wrap .table-bottom .dataTables_paginate .paginate_button.disabled {
    pointer-events: none;
    opacity: 0.7;
    color: var(--theme-color) !important;
}

.app-nav-tabs .nav-item {
    flex: 1 1 auto;
}

.app-nav-tabs .nav-item .nav-link {
    width: 100%;
    color: #5d6778;
    font-size: 15px;
    font-weight: 600;
}

.app-nav-tabs .nav-item .nav-link.active {
    color: var(--theme-color);
    border-bottom: 2px solid var(--theme-color);
}

.tf-tabs {
    background: var(--white-color);
}

.tabbing-form .tf-card {
    position: relative;
    background: var(--white-color);
    border-radius: .25rem;
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 5px;
}

.form-group .form-control {
    padding: 9px 10px;
    outline: none;
    font-size: 15px;
    line-height: normal;
    min-height: 40px;
    flex: 1 0 0;
}

.group-file {
    margin-bottom: 16px;
}

.group-file label {
    font-size: 16px;
    margin-bottom: 5px;
}

.group-file .form-control {
    border: 1px solid var(--border-color);
    outline: none;
    font-size: 15px;
    color: var(--black-color);
    border-radius: 5px;
    line-height: 1.74;
}

.inline-form-group {
    display: inline-flex;
    padding-right: 10px;
}

.inline-form-group a {
    font-size: 13px;
    display: block;
}

.form-group .dropdown.form-control button {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 0 10px;
    font-size: 15px;
    color: var(--black-color);
    border-radius: 5px;
    line-height: 1.5;
    min-height: 40px;
    box-shadow: none !important;
    outline: none !important;
}

.form-group .dropdown.form-control button.bs-placeholder {
    color: #919191;
}

.documentContainer,
.ongoingdocumentContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

:is(.documentContainer, .ongoingdocumentContainer)>div {
    flex: 1 0 0;
}

.sidebar-wrap .sidepanel-close {
    display: none;
    position: absolute;
    z-index: 20;
    right: -2rem;
    top: 0;
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
}
.alert.alert-dismissible .btn-close {
    padding: 0.8rem 1rem;
    width: 0.8rem;
    height: 0.8rem;
}
.pending a.btn {
    padding: 2px 10px 4px 10px;
    font-size: 12px;
}
.removeButton {
    width: 9px;
    padding: 4px 0 3px;
    background-size: 8px;
    margin-left: 7px;
    box-shadow: none !important;
    outline: none !important;
}
.ck.ck-content {
    min-height: 200px;
}
.ck.ck-powered-by {
    display: none;
}
.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #f5f5f5, #eaeaea);
    border-radius: 6px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #888, #bbb);
    border-radius: 6px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #666, #999);
}
.form-check-input[type=checkbox] {
    margin-right: 3px;
}
table tr:nth-child(odd) td {
    background-color: #f5f6fd7d;
}
.status-inactive {
    align-items: center;
    border-radius: 6px;
    color: #41464b;
    background-color: #e2e3e5;
    display: inline-flex;
    padding: 6px 9px;
    font-size: 14px;
    font-weight: 450;
    line-height: 1;
}

.status-active {
    align-items: center;
    background-color: #b4fed2;
    border-radius: 6px;
    color: #0f5132;
    display: inline-flex;
    padding: 6px 9px;
    font-size: 14px;
    font-weight: 450;
    line-height: 1;
}
.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-wrapper .fw-item {
    box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.075);
    padding: 20px;
}
.form-wrapper .fw-title {
    font-size: 20px;
    margin-bottom: 20px;
}
.fw-item.fw-table thead {
    display: none;
}
.no-product-secton .table-bottom {
    flex-direction: column;
    min-height: 300px;
    justify-content: center;
    gap: 20px;
}
.customValid {
    align-items: flex-start;
}
.cv-item:first-child input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.cv-item:not(:first-child) input {
    border-radius: 0;
}

.customValid .cv-item {
    flex: 1 0 0;
}
.customValid .remove-field {
    min-height: 40px;
}
@media (max-width: 1200px) {
    .sidebar-wrap {
        opacity: 0;
        left: -100%;
        transition: all 0.5s ease;
    }

    .sidepanel-visible .sidebar-wrap {
        opacity: 1;
        left: 0;
    }

    .main-wraper .content-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .main-header {
        margin-left: 0;
    }

    body:has(.sidepanel-visible) {
        overflow: hidden;
    }

    .main-wraper.sidepanel-visible {
        position: relative;
    }

    .main-wraper.sidepanel-visible:before {
        content: "";
        background: #0000008c;
        position: fixed;
        z-index: 99;
        inset: 0;
    }

    .sidepanel-visible .sidepanel-close {
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .table-wrap .table-bottom {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .table-wrap table.dataTable.no-footer {
        min-width: 1210px;
    }

    .tabbing-form .tf-card {
        padding: 1rem;
    }

    .documentContainer,
    .ongoingdocumentContainer {
        flex-direction: column;
        gap: 0;
    }

    :is(.documentContainer, .ongoingdocumentContainer) .group-file {
        width: 100%;
    }
    .promoter-details .input-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .promoter-details .input-group input.form-control {
        width: calc(50% - 5px);
        flex: none;
    }

    .promoter-details .input-group button.remove-field {
        border-radius: var(--bs-btn-border-radius) !important;
    }
    .table-wrap .dataTables_wrapper .dataTables_processing {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .login-wraper .login-form-wrap {
        padding: 30px 25px;
    }

    .login-wraper .logo-wrap h2 {
        font-size: 24px;
        max-width: 185px;
    }

    .login-wraper :is(.logo-wrap, .form-title) {
        margin-bottom: 20px;
    }    
}