html {
    position: relative;
    min-height: 100%;
}

/*@font-face {
    font-family: Quicksand;
    src: url("Quicksand-VariableFont_wght.ttf") format('truetype');
}*/

@font-face {
    font-family: Quicksand;
    src: url('../../../font/quicksand-variablefont_wght.ttf') format('truetype');
}

:root {
    --font-family: Quicksand;
    --font-size: 12px;
    --font-color: black;
}

body {
    font-family: var(--font-family);
    margin: 0;
    font-size: var(--font-size);
    /* padding-bottom: 60px; */
    overflow-x: hidden;
    color: var(--font-color);
    background-color: #ffffff;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h6 {
    color: var(--font-color);
    margin: 0px 0;
    font-weight: 600;
}

.h2,
h2 {
    font-size: 30px;
}

.h3,
h3 {
    font-size: 20px;
}

.h4,
h4 {
    font-size: 18px;
}

.h5,
h5 {
    font-size: 15px;
}

.h6,
h6 {
    font-size: 12px;
}

a:hover {
    outline: 0;
    text-decoration: none;
}

a:active {
    outline: 0;
    text-decoration: none;
}

a:focus {
    outline: 0;
    text-decoration: none;
}

p {
    line-height: 1.6;
}

.text-white {
    color: #fff;
}

.text-primary {
    color: #007bff;
}

.text-secondary {
    color: #6c757d;
}

.text-success {
    color: #28a745;
}

.text-info {
    color: #17a2b8;
}

.text-warning {
    color: #ffc107;
}

.text-danger {
    color: #dc3545;
}

.text-light {
    color: #f8f9fa;
}

.text-dark {
    color: #343a40;
}

.text-muted {
    color: #6c757d;
}

.bg-primary {
    background-color: #007bff;
}

.bg-secondary {
    background-color: #6c757d;
}

.bg-success {
    background-color: #28a745;
}

.bg-info {
    background-color: #17a2b8;
}

.bg-warning {
    background-color: #ffc107;
}

.bg-danger {
    background-color: #dc3545;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: #343a40;
}

.bg-white {
    background-color: #fff;
}

.bg-black {
    background-color: #000;
}

.bg-transparent {
    background-color: transparent;
}

.border {
    border: 1px solid !important
}

.border-primary {
    border-color: #007bff !important
}

.border-secondary {
    border-color: #6c757d !important
}

.border-success {
    border-color: #28a745 !important
}

.border-info {
    border-color: #17a2b8 !important
}

.border-warning {
    border-color: #ffc107 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f8f9fa !important
}

.border-dark {
    border-color: #343a40 !important
}

.border-white {
    border-color: #fff !important
}

.border-1 {
    border-width: 1px !important
}

.border-2 {
    border-width: 2px !important
}

.border-3 {
    border-width: 3px !important
}

.border-4 {
    border-width: 4px !important
}

.border-5 {
    border-width: 5px !important
}

.border-0 {
    border: none !important
}

.border-top {
    border-top: 1px solid
}

.border-top-0 {
    border-top: none !important
}

.border-end {
    border-right: 1px solid
}

.border-end-0 {
    border-right: none !important
}

.border-bottom {
    border-bottom: 1px solid
}

.border-bottom-0 {
    border-bottom: none !important
}

.border-start {
    border-left: 1px solid
}

.border-start-0 {
    border-left: none !important
}

.rounded {
    border-radius: .25rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.rounded-1 {
    border-radius: .2rem !important
}

.rounded-2 {
    border-radius: .25rem !important
}

.rounded-3 {
    border-radius: .3rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: 50rem !important
}

.rounded-top {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important
}

.rounded-end {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-start {
    border-bottom-left-radius: .25rem !important;
    border-top-left-radius: .25rem !important
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important
}

/* all side margin classes */
.m-0 {
    margin: 0px !important;
}

.m-5 {
    margin: 5px !important;
}

.m-10 {
    margin: 10px !important;
}

.m-15 {
    margin: 15px !important;
}


/* top side margin classes */
.mt-0 {
    margin-top: 0px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}


/* right side margin classes */
.mr-0 {
    margin-right: 0px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-15 {
    margin-right: 15px !important;
}


/* buttom side margin classes */
.mb-0 {
    margin-bottom: 0px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

/* left side margin classes */
.ml-0 {
    margin-left: 0px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-15 {
    margin-left: 15px !important;
}


/* All Side Padding Classes */
.p0 {
    padding: 0px !important;
}

.p5 {
    padding: 5px !important;
}

.p10 {
    padding: 10px !important;
}

.p15 {
    padding: 15px !important;
}


/* Padding Top Classes */
.pt-0 {
    padding-top: 0px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}


/* Padding right Classes */
.pr-0 {
    padding-right: 0px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-15 {
    padding-right: 15px !important;
}


/* Padding bottom Classes */
.pb-0 {
    padding-bottom: 0px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

/* Padding left Classes */
.pl-0 {
    padding-left: 0px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.container {
    width: 100%;
    margin: auto;
    padding: auto;
}

@media (min-width:1400px) {

    .container {
        max-width: 100%;
        margin: auto;
        padding: auto;
    }
}

@media (min-width:1600px) {

    .container {
        max-width: 100%;
        margin: auto;
        padding: auto;
    }
}

@media (min-width:1800px) {

    .container {
        max-width: 100%;
        margin: auto;
        padding: auto;
    }
}

@media (min-width:2000px) {

    .container {
        max-width: 80%;
        margin: auto;
        padding: auto;
    }
}

@media (min-width:2200px) {

    .container {
        max-width: 75%;
        margin: auto;
        padding: auto;
    }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 0px
}


.col {
    padding: 0px 5px 5px 5px;
    box-sizing: border-box;
    flex: 1 0 auto
}

.col-1 {
    flex: 0 0 auto;
    box-sizing: border-box;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    box-sizing: border-box;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    box-sizing: border-box;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

@media (max-width:757px) {

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width:768px) {

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width:992px) {

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width:1200px) {

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

select,
input[type=button],
input[type=checkbox],
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=email],
input[type=file],
input[type=hidden],
input[type=image],
input[type=month],
input[type=number],
input[type=password],
input[type=radio],
input[type=range],
input[type=reset],
input[type=search],
input[type=submit],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea {
    padding: 2px 4px !important;
    /* font-weight: 400; */
    line-height: 1.5;
    appearance: none;
    background-color: white;
    background-clip: padding-box;
    border: 1px solid #858585c2;
    border-radius: 3px;
    /* font-family: inherit; */
    width: -webkit-fill-available;
    font-family: var(--font-family);
    transition: border-color .15s ease-in-out, box-shadow .50s ease-in-out;
    margin: 2px 0px;
}

    select:focus,
    input[type=button]:focus,
    input[type=checkbox]:focus,
    input[type=color]:focus,
    input[type=date]:focus,
    input[type=datetime-local]:focus,
    input[type=email]:focus,
    input[type=file]:focus,
    input[type=hidden]:focus,
    input[type=image]:focus,
    input[type=month]:focus,
    input[type=number]:focus,
    input[type=password]:focus,
    input[type=radio]:focus,
    input[type=range]:focus,
    input[type=reset]:focus,
    input[type=search]:focus,
    input[type=submit]:focus,
    input[type=tel]:focus,
    input[type=text]:focus,
    input[type=time]:focus,
    input[type=url]:focus,
    input[type=week]:focus,
    textarea:focus {
        outline: 0;
        border: 1px solid #0c79d3;
        box-shadow: 0 0 0 4px rgb(12, 121, 211, 0.25);
    }

select,
input[type=radio],
input[type=checkbox] {
    appearance: auto;
    width: auto
}

select,
input[type=text],
input[type=date] {
    width: -webkit-fill-available;
    height: 20PX;
}

    select:disabled,
    input:disabled,
    textarea:disabled {
        background: #e7e7e7;
        color: #000;
    }

textarea {
    width: -webkit-fill-available;
}

.table {
    width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border: 1px solid black;
}

    .table td,
    .table th {
        padding: 5px;
        border: 1px solid #dee2e6;
        vertical-align: top;
    }

    .table thead th {
        vertical-align: middle;
        font-size: calc(var(--font-size) + 1px) !important;
    }

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, .075);
}

.table-responsive {
    width: 100%;
    height: calc(100vh - 145px);
    overflow-x: auto;
}

.card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 2px;
    box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
}

.card-header {
    padding: 5px;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.card-body {
    flex: 1 1 auto;
    padding: 5px;
}

.card-footer {
    padding: 10px;
    background-color: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .125);
}

button:not(:disabled) {
    cursor: pointer;
}

.btn {
    padding: 5px 10px;
    cursor: pointer;
    /* font-size: 16px; */
    border: 1px solid transparent;
    border-radius: 3px;
    font-family: var(--font-family);
    font-size: var(--font-size);
    vertical-align: middle;
    font-weight: 600;
    outline: 0;
    line-height: 1.5;
}

.btn-primary {
    color: #fff;
    background-color: #006db5;
    border-color: #006db5;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #0060a0;
        border-color: #0060a0;
    }

    .btn-primary:focus {
        box-shadow: 0 0 0 4PX rgba(0, 123, 255, .5);
    }

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

    .btn-secondary:hover {
        color: #fff;
        background-color: #5a6268;
        border-color: #545b62;
    }

    .btn-secondary:focus {
        box-shadow: 0 0 0 4px rgba(108, 117, 125, .5);
    }


.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

    .btn-success:hover {
        color: #fff;
        background-color: #218838;
        border-color: #1e7e34;
    }

    .btn-success:focus {
        box-shadow: 0 0 0 4px rgba(40, 167, 69, .5);
    }


.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

    .btn-info:hover {
        color: #fff;
        background-color: #138496;
        border-color: #117a8b;
    }

    .btn-info:focus {
        box-shadow: 0 0 0 4px rgba(23, 162, 184, .5);
    }


.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

    .btn-warning:hover {
        color: #212529;
        background-color: #e0a800;
        border-color: #d39e00;
    }

    .btn-warning:focus {
        box-shadow: 0 0 0 4px rgba(255, 193, 7, .5);
    }


.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

    .btn-danger:hover {
        color: #fff;
        background-color: #c82333;
        border-color: #bd2130;
    }

    .btn-danger:focus {
        box-shadow: 0 0 0 4px rgba(220, 53, 69, .5);
    }


.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

    .btn-light:hover {
        color: #212529;
        background-color: #e2e6ea;
        border-color: #dae0e5;
    }

    .btn-light:focus {
        box-shadow: 0 0 0 4px rgba(248, 249, 250, .5);
    }

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

    .btn-dark:hover {
        color: #fff;
        background-color: #23272b;
        border-color: #1d2124;
    }

    .btn-dark:focus {
        box-shadow: 0 0 0 4px rgba(52, 58, 64, .5);
    }

.btn-sm {
    padding: 0.25rem 0.5rem;
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem
}

.badge-primary {
    color: #fff;
    background-color: #007bff
}

    .badge-primary[href]:focus,
    .badge-primary[href]:hover {
        color: #fff;
        text-decoration: none;
        background-color: #0062cc
    }

.badge-secondary {
    color: #fff;
    background-color: #6c757d
}

    .badge-secondary[href]:focus,
    .badge-secondary[href]:hover {
        color: #fff;
        text-decoration: none;
        background-color: #545b62
    }

.badge-success {
    color: #fff;
    background-color: #28a745
}

    .badge-success[href]:focus,
    .badge-success[href]:hover {
        color: #fff;
        text-decoration: none;
        background-color: #1e7e34
    }

.badge-info {
    color: #fff;
    background-color: #17a2b8
}

    .badge-info[href]:focus,
    .badge-info[href]:hover {
        color: #fff;
        text-decoration: none;
        background-color: #117a8b
    }

.badge-warning {
    color: #212529;
    background-color: #ffc107
}

    .badge-warning[href]:focus,
    .badge-warning[href]:hover {
        color: #212529;
        text-decoration: none;
        background-color: #d39e00
    }

.badge-danger {
    color: #fff;
    background-color: #dc3545
}

    .badge-danger[href]:focus,
    .badge-danger[href]:hover {
        color: #fff;
        text-decoration: none;
        background-color: #bd2130
    }

.badge-light {
    color: #212529;
    background-color: #f8f9fa
}

    .badge-light[href]:focus,
    .badge-light[href]:hover {
        color: #212529;
        text-decoration: none;
        background-color: #dae0e5
    }

.badge-dark {
    color: #fff;
    background-color: #343a40
}

    .badge-dark[href]:focus,
    .badge-dark[href]:hover {
        color: #fff;
        text-decoration: none;
        background-color: #1d2124
    }

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem
}

.breadcrumb {
    /* background-color: #e7e7e7; */
    color: var(--font-color);
    border-radius: 3px;
    font-size: 11px;
}

    .breadcrumb ul {
        display: flex;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
        /* padding: 8px 10px; */
        list-style: none;
        /* background-color: #e7e7e7; */
        border-radius: 3px;
    }

        .breadcrumb ul li a {
            color: #0366d6;
            text-decoration: none !important;
        }

            .breadcrumb ul li a:hover {
                text-decoration: underline;
            }

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: gray;
    content: "/";
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none;
    height: calc(100vh - 60px);
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 3px;
    outline: 0;
    /* overflow: auto; */
    max-height: calc(100vh - 15px);
    box-shadow: 0 3px 15px rgb(0 0 0);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

    .modal-backdrop.fade {
        opacity: 0
    }

    .modal-backdrop.show {
        opacity: .5
    }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 10PX;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

    .modal-header .btn-close {
        padding: .5rem .5rem;
        margin: -.5rem -.5rem -.5rem auto
    }

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 10PX;
    overflow: auto;
    max-height: calc(100vh - 130px);
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 5PX;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px)
}

    .modal-footer > * {
        margin: 2PX 4PX;
    }

@media (min-width:576px) {
    .modal-dialog {
        max-width: 55%;
        margin: 1.75rem auto
    }

    .modal-dialog-centered {
        min-height: calc(100% - 60px)
    }

    .modal-sm {
        max-width: 30%;
    }
}

@media (min-width:992px) {

    .modal-lg,
    .modal-xl {
        max-width: 80%
    }
}

@media (min-width:1200px) {
    .modal-xl {
        max-width: 90%
    }
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: var(--font-color);
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5
}

    .btn-close:hover {
        color: var(--font-color);
        ;
        text-decoration: none;
        opacity: .75
    }

    .btn-close:focus {
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
        opacity: 1
    }

.d-flex {
    display: flex !important;
}

.float-start {
    float: left !important
}

.float-end {
    float: right !important
}

.float-none {
    float: none !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

/************************************************************************************************************************/
/***************************************************** 22-09-2025 /******************************************************/
/************************************************************************************************************************/

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-inline-grid {
    display: inline-grid !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-none {
    display: none !important
}

.text-start {
    text-align: left !important
}

.text-end {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

.fst-normal {
    font-style: normal !important
}

.fw-lighter {
    font-weight: lighter !important
}

.fw-light {
    font-weight: 300 !important
}

.fw-normal {
    font-weight: 400 !important
}

.fw-medium {
    font-weight: 500 !important
}

.fw-semibold {
    font-weight: 600 !important
}

.fw-bold {
    font-weight: 700 !important
}

.fw-bolder {
    font-weight: bolder !important
}


.setwidth60 {
    width: 60px !important;
    min-width: 60px !important;
}

.setwidth100 {
    width: 100px !important;
    min-width: 100px !important;
}

/* Switch css */
.switch {
    --button-width: 40px;
    --button-height: 20px;
    --toggle-diameter: 14px;
    --button-toggle-offset: calc((var(--button-height) - var(--toggle-diameter)) / 2);
    --toggle-shadow-offset: 10px;
    --toggle-wider: 35px;
    --color-grey: #cccccc;
    --color-green: #006feb;
}

.slider {
    display: inline-block;
    width: var(--button-width);
    height: var(--button-height);
    background-color: var(--color-grey);
    border-radius: calc(var(--button-height) / 2);
    position: relative;
    transition: 0.3s all ease-in-out;
}

    .slider::after {
        content: "";
        display: inline-block;
        width: var(--toggle-diameter);
        height: var(--toggle-diameter);
        background-color: #fff;
        border-radius: calc(var(--toggle-diameter) / 2);
        position: absolute;
        top: var(--button-toggle-offset);
        transform: translateX(var(--button-toggle-offset));
        box-shadow: var(--toggle-shadow-offset) 0 calc(var(--toggle-shadow-offset) * 4) rgba(0, 0, 0, 0.1);
        transition: 0.3s all ease-in-out;
    }

.switch input[type="checkbox"]:checked ~ .slider {
    background-color: var(--color-green);
}

    .switch input[type="checkbox"]:checked ~ .slider::after {
        transform: translateX(calc(var(--button-width) - var(--toggle-diameter) - var(--button-toggle-offset)));
        box-shadow: calc(var(--toggle-shadow-offset) * -1) 0 calc(var(--toggle-shadow-offset) * 4) rgba(0, 0, 0, 0.1);
    }

.switch input[type="checkbox"] {
    display: none;
}

    .switch input[type="checkbox"]:active ~ .slider::after {
        width: var(--toggle-wider);
    }

    .switch input[type="checkbox"]:checked:active ~ .slider::after {
        transform: translateX(calc(var(--button-width) - var(--toggle-wider) - var(--button-toggle-offset)));
    }

a {
    text-decoration: none;
    color: inherit;
}


/*body {
    height: 100%;
    overflow: hidden;
    height: calc(var(--vh, 1vh) * 100);
}*/

/*.mainarea {
    height: 100%;
    display: flex;
    align-items: center;
}*/

.img1 {
    width: 70%;
}

.formdiv {
    background: #e9f8ff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
    font-weight: 600;
}

.contentdiv {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
    font-weight: 600;
}

.logo {
    width: 100%;
    margin-bottom: 10px;
}

.loginlable {
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    display: block;
}

.logininput {
    font-size: 16px;
    background-color: transparent !important;
    border-top: 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
    box-shadow: none !important;
    font-weight: 700;
}

.loginbtn {
    width: -webkit-fill-available;
    font-size: 16px;
}

.divediscription {
    width: 80%;
}

    .divediscription p {
        font-size: 14px;
        font-weight: 400;
    }

.hiligthtext {
    color: #006db5
}

.f-16 {
    font-size: 16px;
}

.f-14 {
    font-size: 14px;
}

.text-end {
    text-align: end;
}

input[type=text],
input[type=password] {
    line-height: 0 !important;
}

.password-wrapper {
    position: relative;
    width: -webkit-fill-available;
}

.eye-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #333;
    font-size: 20px;
    z-index: 2;
}
/*===========================================================================*/
/*=============================NEW RESPONSIVE CSS============================*/
/*===========================================================================*/


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
}

/* MAIN LAYOUT */
.mainarea {
    display: flex;
    min-height: 100vh;
}

/* PANELS */
.left-panel,
.right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* LEFT */
.contentdiv {
    max-width: 500px;
    text-align: center;
}

.img1 {
    max-width: 100%;
    height: auto;
}

/* RIGHT */
.right-panel {
    background: #e9f8ff;
}

.form-container {
    width: 100%;
    max-width: 300px;
}

/* FORM */
.logo {
    width: 100%;
    max-width: 220px;
    margin-bottom: 10px;
}

.logininput {
    width: 100%;
    font-size: 16px;
    padding: 8px 4px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #999;
    outline: none;
}

.loginbtn {
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
}

/* PASSWORD */
/*.password-wrapper {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}*/

@media (max-width: 768px) {
    .mainarea {
        flex-direction: column;
    }

    .left-panel {
        order: 2;
        /*display: none;*/
    }

    .right-panel {
        order: 1;
    }

    .left-panel,
    .right-panel {
        padding: 20px;
    }

    .text-end {
        text-align: center;
    }

    .img1 {
        display: none;
    }
}

#password {
    padding: 0px !important;
}

.lbl-head {
    font-weight: 800;
    font-size: large;
}

.orgheading {
    font-size: 25px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .left-panel {
        order: 2;
        display: none;
    }
}

.text-upper {
    text-transform: uppercase !important;
}

.text-lower {
    text-transform: lowercase !important;
}

.logininput:disabled {
    background-color: #dbe7edc4 !important;
    color: #0e0e0e94 !important;
}


.toast-title {
    font-weight: 700;
}

.toast-message {
    text-wrap: wrap;
    font-weight: 600;
}

.toast-top-right {
    top: 12px;
    right: 12px;
}

.toast-container {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 999999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

    .toast-container * {
        box-sizing: border-box;
    }

    .toast-container > div .toast-primary {
        padding: 15px 15px 15px 15px;
    }

    .toast-container > div {
        position: relative;
        pointer-events: auto;
        padding: 15px 15px 15px 50px;
        width: 300px;
        border-radius: 6px;
        background-position: 10px center;
        background-repeat: no-repeat;
        box-shadow: 0 0 12px #999;
        color: #fff;
        opacity: 0;
        transform: translateX(120%);
        animation: slideIn 0.4s forwards;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(120%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(120%);
    }
}

.toast-container > :hover {
    box-shadow: 0 0 12px #000;
    opacity: 1;
    cursor: pointer;
}

.toast {
    background-color: #030303;
}

.toast-success {
    background-color: #51a351;
    background-image: url('/Content/assets/icons/check-solid-full.svg');
    /*background-image: url('~/Content/assets/icons/check-solid-full.svg');*/
    /*background-image: url(check-solid-full.svg);*/
    background-size: 32px 32px;
}

.toast-error {
    background-color: #bd362f;
    background-image: url('/Content/assets/icons/circle-xmark-solid-full.svg');
    background-size: 32px 32px;
}

.toast-info {
    background-color: #2f96b4;
    background-image: url('/Content/assets/icons/circle-info-solid-full.svg');
    background-size: 32px 32px;
}

.toast-warning {
    background-color: #f89406;
    background-image: url('/Content/assets/icons/triangle-exclamation-solid-full.svg');
    background-size: 32px 32px;
}

.toast-primary {
    background-color: #007bff;
    background-image: none;
    padding-left: 20px;
}

.toast-danger {
    background-color: #bd362f;
    background-image: none;
    padding-left: 20px;
}

.toast.no-title {
    padding-left: 20px;
}

    .toast.no-title .toast-message {
        padding-left: 30px;
    }

.toast-container .toast-primary-no-title .toast-message,
.toast-container .toast-danger-no-title .toast-message {
    padding-left: 0px;
}

.toast-container .toast-primary,
.toast-container .toast-danger {
    padding: 15px 15px 15px 15px;
}

.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: var(--font-family);
  font-style: 9px !important;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 1;
}

.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}

.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-end,
.bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}

.bs-tooltip-end .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}

.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-start,
.bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}

.bs-tooltip-start .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  font-size: 9px;
  background-color: #000000;
  border-radius: 0.25rem;
}
@font-face {
    font-family: 'FontAwesome';
    /* src: url('../fonts/fontawesome-webfont.eot?v=4.7.0'); */
    src: url('../../../font/fontawesome-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-user:before {
    content: "\f007"
}

.fa-tv:before,
.fa-television:before {
    content: "\f26c"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-file:before {
    content: "\f15b"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9"
}

.fa-user-circle-o:before {
    content: "\f2be"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-vcard:before,
.fa-address-card:before {
    content: "\f2bb"
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-moon-o:before {
    content: "\f186";
}

.fa-sun-o:before {
    content: "\f185";
}

.fa-gear:before, .fa-cog:before {
    content: "\f013";
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
    content: "\f2c3";
}

.fa-eye:before {
    content: "\f06e";
}

.fa-eye-slash:before {
    content: "\f070";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-warning:before, .fa-exclamation-triangle:before {
    content: "\f071";
}

.fa-power-off:before {
    content: "\f011";
    color: #ff0000;
}

.fa-address-book:before {
    content: "\f2b9";
    color: #009aff;
}

.fa-angle-down:before {
    content: "\f107";
}

.fa-search:before {
    content: "\f002";
}

.fa-university:before {
    content: "\f19c"
}

.fa-times:before {
    content: "\+";
}

.fa-image:before {
    content: "\f03e";
}

.fa-plus:before {
    content: "\f067";
}

.fa-history:before {
    content: "\f1da";
}

.fa-circle-exclamation:before {
    content: "\f06a";
}

.fa-circle-question:before {
    content: "\f059";
}

.fa-upload:before {
    content: "\f093";
}

.fa-file-lines:before {
    content: "\f15c"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-info-circle::before {
    content: "\f05a";
}

.fa-clock::before {
    content: "\f017";
}

.fa-check-circle::before {
    content: "\f058";
}

.fa-times-circle::before {
    content: "\f057";
}

.fa-hourglass-start:before {
    content: "\f251";
}

.fa-clipboard-check:before {
    content: "\f46c";
}

.fa-pen-to-square:before {
    content: "\f044";
}

.fa-refresh:before {
    content: "\f021";
}
