/*begin::Global css*/
:root {
    --primary-color: #28306E;
    --primary-rgba: rgba(40, 48, 110, 0.5);
    --secondary-color: #D42128;
    --secondary-rgba: rgba(212, 33, 40, 0.3);
    --black-color: #0D0D0D;
    --white-color: #ffffff;
    --gray-color: #E5E5E5;
    --flow-chart-gray: #b7b7b7;
    --primary-gradient: linear-gradient(60deg, #28306E, #D42128);    
    --body-font: "DM Sans", sans-serif;
}

body {
    font-family: var(--body-font);
    overflow-x: hidden !important;
}

.bg_primary {
    background-color: #F6FEFA;
}

[data-bs-theme=light] {
    --bs-app-bg-color: #F4F6FA;
    --bs-app-header-primary-base-bg-color: #F4F6FA;
    --bs-app-header-secondary-base-bg-color: var(--primary-color);
    --bs-app-header-primary-sticky-bg-color: var(--white-color);
    --bs-app-content-bg-color: #F4F6FA;
    --bs-app-header-height: 60px;
    --bs-app-header-base-bg-color: #012F2F;
    --bs-app-header-base-border-bottom: #012F2F;
}

.btn-group-lg>.btn,
.btn-lg,
.btn {
    --bs-btn-border-radius: 6px !important;
}

.row.equal-cols {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row.equal-cols:before,
.row.equal-cols:after {
    display: block;
}

.row.equal-cols > [class*='col-'] {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.row.equal-cols > [class*='col-'] > * {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.show_passowrd_icon {
    position: absolute;
    display: inline-block;
    right: 20px;
    bottom: 15px;
    cursor: pointer;
}

.table-dark {
    --bs-table-bg: var(--primary-color);
}

.form_fieldset {
    width: 100%;
    border: 1px solid #dbdfe9;
    position: relative;
    padding: 20px 20px 0;
    margin-top: 10px;
    border-radius: 4px;
}

.form_fieldset h3 {
    font-size: 16px;
    background-color: var(--white-color);
    margin: 0;
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 12px;
    padding: 10px 8px;
    border-radius: 4px;
}

.table:not(.table-bordered) td:first-child,
.table:not(.table-bordered) th:first-child,
.table:not(.table-bordered) tr:first-child {
    padding-left: 1rem;
}

.table:not(.table-bordered) td:last-child,
.table:not(.table-bordered) th:last-child,
.table:not(.table-bordered) tr:last-child {
    padding-right: 1rem;
}

.jQBracket .highlight {
    background: #3c0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

div.jQBracket .connector.highlight {
    background: transparent !important;
}
/* end::Global css */

/* begin::App header customization css */
.header_logos {
    display: grid;
    align-items: center;
    grid-column-gap: 10px;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(4, 1fr);
}

.header_logos > a {
    display: block;
    height: 40px;
    overflow: hidden;
    width: 100%;
}

.header_logos > a > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
}
/* end::App header customization css */

/* begin::Datatables customization css */
.export_btn .btn-group button {
    min-height: 34px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.export_btn .btn-group button.border_none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

div.dataTables_wrapper div.dataTables_filter,
div.dataTables_wrapper div.dataTables_length {
    padding: 0;
}

.export_btn .dataTables_filter label input[type="search"] {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-left: 0;
    border: 1px solid var(--bs-card-border-color);
    border-right: 0;
    min-height: 34px;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table thead tr th {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-weight: 600;
}

.export_btn .buttons-collection {
    height: 32px;
    font-size: 12px;
    line-height: 12px;
}

.export_btn .dt-button-collection {
    right: 0.7rem !important;
    left: auto !important;
    border: none;
}

.export_btn .dropdown-menu {
    min-width: 14rem !important;
}

.export_btn .dropdown-item {
    padding: 0.7rem 1.2rem;
}
/* end::Datatables customization css */

/* begin::Header css */
[data-kt-app-header-stacked=true] .app-header {
    height: auto;
    min-height: 99px;
}
/* end::Header css */

.copy_text {
    position: relative;
    padding: 10px;
    background: #F4F6FA;
    border: 1px dashed #ddd;
    border-radius: 4px;
    max-width: 30%;
    margin: 15px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy_text input.pass_txt {
    font-size: 18px;
    color: #555;
    border: none;
    outline: none;
    background: transparent;
}

.copy_text button:before {
    content: "Copied";
    position: absolute;
    top: 10px;
    right: 40%;
    background: #000;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 15px;
    display: none;
}

.copy_text.active button:before {
    display: block;
}

/*begin:: Registration page customization css*/
.stepper.stepper-pills.stepper-multistep {
    --bs-stepper-icon-bg-color-current: var(--bs-primary);
    --bs-stepper-icon-check-color-completed: var(--bs-primary);
    --bs-stepper-line-border: 1px dashed rgba(72, 72, 72, 0.3);
    --bs-stepper-icon-border: 1px dashed rgba(72, 72, 72, 0.3);
    --bs-stepper-icon-border-completed: 1px dashed rgba(72, 72, 72, 0.3);
    --bs-stepper-icon-bg-color-completed: 1px dashed rgba(72, 72, 72, 0.3);
    --bs-stepper-label-title-color-completed: rgba(72, 72, 72, 0.4);
    --bs-stepper-label-title-color: rgba(72, 72, 72, 0.4);
    --bs-stepper-label-title-color-current: #484848;
    --bs-stepper-icon-number-color: rgba(72, 72, 72, 0.4);
    --bs-stepper-pills-size: 40px;
}

.stepper.stepper-pills .stepper-item .stepper-label .stepper-title {
    margin-bottom: 0;
}

.stepper.stepper-pills .stepper-item .stepper-icon .stepper-number {
    font-size: 1rem;
}

.stepper.stepper-pills .stepper-item.current .stepper-icon .stepper-number {
    font-size: 1rem;
}

.register_bg {
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow: hidden !important;
    z-index: 9;
}

.bg_gif_left {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.4;
    z-index: -1;
}

.bg_gif_left > span {
    display: block;
    width: 250px;
    height: 250px;
    overflow: hidden;
}

.bg_gif_left > span > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.bg_gif_right {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    position: absolute;
    bottom: 0;
    right: -50px;
    opacity: 0.4;
    z-index: -1;
}

.bg_gif_right > span > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media all and (max-width: 991px) {
    .stepper.stepper-pills.stepper-column .stepper-nav {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .stepper.stepper-pills.stepper-column .stepper-line {
        display: none;
    }
}

.adhar_profile {
    width: 135px;
    height: 150px;
    overflow: hidden;
    display: block;
    border-radius: .75rem;
}

.adhar_profile > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.login_gif_left {
    position: absolute;
    left: -100px;
    bottom: -40px;
    z-index: -1;
}

.login_gif_left > span {
    display: block;
    width: 350px;
    height: 350px;
    overflow: hidden;
}

.login_gif_left > span > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.login_gif_right {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
    right: -100px;
    z-index: -1;
}

.login_gif_right > span > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
/*end:: Registration page customization css*/