/*Fonts*/
/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

@font-face {
    font-family: 'Arial Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Arial Regular'), url('../../new-theme/fonts/ARIAL.woff') format('woff');
}

body {
    font-family: 'Arial Regular';
    font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial Regular';
}

p {
    font-family: 'Arial Regular';
}

/*body {
    font-family: 'Inter', sans-serif;
}*/

.h5, h5 {
    font-size: 1.5rem;
}
/*Sidebar Changes*/
.sidebar-dark .nav-item .nav-link i {
    color: rgb(255 255 255);
    width: 20px;
    font-size: 18px;
}

.sidebar-dark.toggled .nav-item .nav-link i {
    color: rgb(255 255 255);
    font-size: 18px;
    display: block;
    text-align: center;
    width: auto;
    margin-right: 0.4rem;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item, .sidebar .nav-item .collapsing .collapse-inner .collapse-item {
    color: #fff
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item, .sidebar .nav-item .collapsing .collapse-inner .collapse-item {
    margin: 5px 0px;
    font-weight:400!important;
}

.sidebar .nav-item .collapse .collapse-inner, .sidebar .nav-item .collapsing .collapse-inner {
    padding: 5px 10px;
}

.sidebar {
    transition: all 0.5s;
}

.nav-item .collapse-inner i {
    margin-right: 10px
}

.nav-item i {
    margin-right: 0px;
}

@media (min-width: 768px) {
    .sidebar .nav-item .collapse, .sidebar .nav-item .collapsing {
        margin: 0;
    }

    .sidebar {
        width: 15rem !important;
        transition: all 0.5s;
    }

        .sidebar .nav-item .nav-link {
            width: 15rem;
            font-size: 0.9rem;
        }
        .sidebar.toggled .nav-item .nav-link {
            font-size: 0.7rem;
        }
}
/*Sidebar Changes*/
/*Button*/
.min-auto {
    min-width: auto!important;
}

.btn .icon-plus2 {
    line-height: 19px;
}
/*Button*/
.form-control {
    height: calc(1.5em + 0.75rem + 10px);
}

.card-header:first-child {
    padding: 1.5rem 1.25rem;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-title label {
    font-weight: 600;
}

.pb-100 {
    padding-bottom: 100px !important;
}
/*Table css*/
/* width */
.table-responsive::-webkit-scrollbar {
    width: 8px;
    height: 5px;
}

/* Track */
.table-responsive::-webkit-scrollbar-track {
    background: #f9fbff;
    border-radius: 10px;
}

/* Handle */
.table-responsive::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

    /* Handle on hover */
    .table-responsive::-webkit-scrollbar-thumb:hover {
        background: #f2f2f2;
    }

.table.dataTable {
    font-size: 0.92rem;
    min-height: 135px
}
.table.table-bordered td, .table.table-bordered th {
    padding: 5px 5px;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}
.table.dataTable td {
    padding: 0.30rem !important;
    vertical-align: middle;
}

.dataTables_wrapper .row {
    font-size: 0.92rem
}

.table thead {
    background-color: #f9fbff
}

.edit-icon {
    background: #eaf1ff;
    padding: 0 8px;
    width: 33px;
    height: 33px;
    line-height: 33px;
}

    .edit-icon i {
        color: #1b3b81
    }

.delete-icon {
    background: #fff3f3;
    padding: 0 8px;
    width: 33px;
    height: 33px;
    line-height: 33px;
}

    .delete-icon i {
        color: #e55353;
    }

table.dataTable.nowrap td.nowrap-actions {
    white-space: nowrap !important;
}

.table-overflow {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 350px;
    white-space: pre-line;
}

.text-overflow {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 200px;
}
.tabletext-overflow span {
    -webkit-line-clamp: 2;
    line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
/*table.dataTable.nowrap th, table.dataTable.nowrap td {
    white-space: break-spaces!important;
}*/
/*Checkbox*/
/* The container */
.custom-checkbox {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0 auto;
    display: table;
}

    /* Hide the browser's default checkbox */
    .custom-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
    background-color: #1b3b81;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
    left: 7px;
    top: 2px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/**Vehical Edit*/

.icon-set {
    margin-right: 10px;
    font-size: 22px;
    vertical-align: bottom;
}

.panel-title {
    border-bottom: 1px solid #acbde1;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
/*thank you*/
.main-thanku-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 82vh
}

    .main-thanku-card .card {
        width: calc(300px + (1200 - 300) * ((100vw - 300px) / (3840 - 375)));
        z-index: 1
    }

.reference-no {
    color: #03654e;
}

.thank-youcard {
    padding: 65px 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .thank-youcard h1.text-success {
        color: #03654d !important;
        font-size: calc(30px + (50 - 30) * ((100vw - 300px) / (3840 - 375)));
        line-height: calc(40px + (70 - 40) * ((100vw - 300px) / (3840 - 375)));
    }

    .thank-youcard h1.thank-you {
        font-family: 'Great Vibes', cursive;
        -webkit-animation-name: bounce;
        animation-name: bounce;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-iteration-count: 3;
        font-size: calc(60px + (200 - 60) * ((100vw - 300px) / (3840 - 375)));
        line-height: calc(70px + (280 - 70) * ((100vw - 300px) / (3840 - 375)));
        background: linear-gradient(180deg, #1b3b81 10%, #03654d 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative
    }

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

@media (max-width:1400px) {
    .main-thanku-card {
        height: auto;
    }
}
/**Jquery datatable Loader*/
.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
    margin: 0 auto;
    display: table;
}

    .loader::before, .loader::after {
        content: "";
        box-sizing: border-box;
        position: absolute;
        inset: 0px;
        border-radius: 50%;
        border: 4px solid #1b3b81;
        animation: prixClipFix 2s linear infinite;
    }

    .loader::after {
        border-color: #03654d;
        animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
        inset: 8px;
    }

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)
    }

    25% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)
    }

    50% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)
    }

    100% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)
    }
}

div.dataTables_wrapper div.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    margin-top: -26px;
    text-align: center;
    padding: 1em 0;
    height: 100px;
}

    div.dataTables_wrapper div.dataTables_processing div:last-child {
        display: none
    }

.accordionbtn-collapsed {
    background: #efefef;
    border: 1px solid #ddd;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

    .accordionbtn-collapsed[aria-expanded="false"], .accordionbtn-collapsed.collapsed {
        border-radius: 0.25rem;
    }

.opendiv {
    background: #fff;
    border: 1px solid #ddd;
    border-top: 0px;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}


/*Login*/
.login-bg {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #e8f0fe;
}

    .login-bg .card {
        width: 60%;
        border-radius: 0;
    }

.login-form h4 {
    font-size: 35px;
    color: #fff;
}

    .login-form h4 span {
        font-size: 28px;
        color: #fff;
    }

        .login-form h4 span.forgottext {
            margin: 10px auto 0px;
            display: block;
            max-width: 81%;
            font-size: 22px;
            line-height: 30px;
        }

.login-box {
    background-image: linear-gradient(180deg, #1f3370 10%, #456097 100%);
    height: 100%
}

.login-form {
    padding: 50px 10px
}

    .login-form .form-control {
        background-color: #fff !important;
        border-radius: 0px;
        height: 58px;
        border-top-right-radius: 6px !important;
        border-bottom-right-radius: 6px !important;
        border-left: 0px;
    }

    .login-form .input-group-text {
        border-radius: 0px;
        border-top-left-radius: 6px !important;
        border-bottom-left-radius: 6px !important;
        border-right: 0px
    }

    .login-form .input-group-text {
        background-color: #fff;
    }

        .login-form .input-group-text i {
            color: #213672 !important;
            line-height: 1.5;
            font-size: 22px;
        }

    .login-form .field-validation-error {
        color: #f97373;
        display: block;
        width: 100%;
    }

    .login-form .custom-checkbox {
        position: relative;
        padding-left: 35px;
        cursor: pointer;
        font-size: 15px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        margin: 0 auto;
        display: table;
        color: #fff;
    }

/*.loginsetimage {
    width: 100%;
    margin-top: 156px;
}*/
.background-container {
    position: relative;
    background: url('/Content/img/login4.jpg') no-repeat center center;
    background-size: cover;
}
.background-container-forgot-pass {
    position: relative;
    background: url('/Content/img/login5.jpg') no-repeat center center;
    background-size: cover;
}
.background-container-reset-pass {
    position: relative;
    background: url('/Content/img/login3.jpg') no-repeat center center;
    background-size: cover;
}

    .background-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    .background-container .whitebox {
        position: relative;
        z-index: 2;
    }

.login-form .form-group label {
    color: #fff;
    font-size: 1rem;
    line-height: 1;
}

.login-bg h2 {
    font-size: 20px;
    color: #263b77;
    text-align: center;
    max-width: 100%;
    margin-top: 15px;
    text-transform: uppercase;
}

.login-bg .btn-warning {
    font-size: 20px
}

.login-bg .custom-checkbox input:checked ~ .checkmark {
    background-color: #e36b0a;
}

.login-bg .custom-checkbox .checkmark:after {
    left: 6px
}

.login-footer a {
    cursor: pointer;
}

.whitebox {
    padding: 60px 40px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background: #fff;
    align-items: center
}

    .whitebox::before {
        content: '';
        display: block;
        width: 240px;
        height: 240px;
        background: rgb(148 163 211 / 10%);
        position: absolute;
        border-radius: 100%;
        top: -12%;
        left: -13%;
        z-index: -1;
    }

.loginlogo, .login-bg h2.logocontent {
    display: none;
}
.login-btn {
    color: #fff;
    background-color: #e36b0a;
    border-color: #e36b0a;
    font-size: 1.3rem;
}
    .login-btn:hover {
        border-color: #e36b0a;
        color: #e36b0a;
        background-color: transparent;
    }
    .login-btn:focus, .login-btn:not(:disabled):not(.disabled).active, .login-btn:not(:disabled):not(.disabled):active, .show > .login-btn.dropdown-toggle {
        color: #fff;
        background-color: #e36b0a;
        border-color: #e36b0a;
        box-shadow: 0 0 0 0.2rem rgba(231, 107, 10,0.5);
    }
@media(max-width:1600px) {
    .login-bg .card {
        width: 60%;
    }

    .login-bg {
        height: auto;
        overflow-y: auto;
    }
}

@media(max-width:1440px) {
    .login-bg .card {
        width: 80%;
    }
}

    @media(max-width:992px) {       
        .login-bg {
            height: auto;
            overflow-y: auto;
        }

            .login-bg .card {
                width: 70%;
                margin: 30px;
            }

        .loginlogo {
            display: table;
            margin: 0 auto 5px;
        }

        .login-bg h2.logocontent {
            color: #fff;
            display: block;
            margin-bottom: 40px;
            line-height: 30px;
        }

        .whitebox {
            display: none
        }
    }

@media(max-width:991px) {
    .background-container {
        display: none;
    }
}

    .sidebar .collapse-item.active,
    .sidebar .nav-item .collapse .collapse-inner .collapse-item:hover,
    .sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff !important;
    }

    .sidebar-dark.toggled .nav-item {
        font-size: 12px
    }

    .btn-circle {
        border-radius: 100%;
        height: 35px;
        width: 35px;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #838181;
        border-color: #838181;
    }

        .btn-circle i {
            font-size: 1.2rem;
            color: #fff;
        }

        .btn-circle:hover {
            background: #fff;
            border-color: #838181;
            color: #838181;
        }

            .btn-circle:hover i {
                color: #838181;
            }


    @media(max-width:767px) {
        .login-bg .card {
            width: 100%;
            margin: 15px 30px;
        }

        .sidebar .nav-item .nav-link {
            font-size: 0.7rem;
        }

        .sidebar-dark .nav-item .nav-link i {
            color: rgb(255 255 255);
            font-size: 18px;
            display: block;
            text-align: center;
            width: auto;
            margin-right: 0;
        }

        .card-header {
            flex-wrap: wrap;
            gap: 20px
        }
    }

    .btn-success {
        color: #fff;
        background-color: #03654d;
        border-color: #03654d;
        min-width: 120px;
        padding: 10px 20px;
    }

        .btn-success:hover {
            color: #fff;
            background-color: #03654d;
            border-color: #03654d;
        }

        .btn-success.disabled {
            color: #fff;
            background-color: #03654d;
            border-color: #03654d;
            opacity: 0.3
        }

    .icon-check2 {
        font-size: 22px;
    }

    .changedCheckbox {
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 3px;
        border-color: red transparent transparent red;
        margin: -0.45em 0 0 1.4em;
        padding: 0;
        overflow: hidden;
        vertical-align: top;
    }

    .move-journey button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: #ededed;
        margin-bottom: 5px
    }

    .move-journey .collapse-content {
        padding: 15px 10px;
        border: 1px solid #ededed;
        margin-top: -11px;
        border-top: 0px;
        margin-bottom: 10px;
        border-radius: 6px;
        overflow: hidden;
    }

    #tblassignroles .checkmark {
        top: -10px
    }

    .sidebar .sidebar-brand {
        height: auto;
        padding: 0.8rem;
    }

        .sidebar .sidebar-brand img {
            height: 85px;
            object-fit: contain;
            width: auto;
        }

#divrolesmodalPopup .table-responsive {
    max-height: calc(100vh - 400px);
    height: 100vh;
    overflow-y: auto;
}

#divrolesmodalPopup .gap-3 {
    gap: 10px;
}