﻿/* Custom style.css */
@import url(myicons.css);

:root {
    --form-field-border: #ced4da;
    --form-field-bg: #fff;
    --bg-base: #fff;
    --running-color: #55585c;
    --bg-table: #fff;
    --grey-02: #e9ecef;
    --base-border2: var(--grey-02);
    --primary: var(--hcl-blue03);
    --primary-hover: var(--hcl-blue01);
    --form-field-bg: #fff;
    --hcl-blue03: #0786c1;
    --hcl-blue01: #0049B2;
}
/*body{font-family: 'poppinsregular', sans serif; font-size:1rem;} */
*:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

a {
    cursor: pointer;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

ul,
ol,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

svg:focus {
    outline: none;
}

.navbar {
    padding: 0;
    z-index: 99;
}

.navbar-brand {
    border: 0;
    border-right-width: 1px;
    border-style: solid;
}

.navbar-nav .nav-item {
    border: 0;
    border-right-width: 1px;
    border-style: solid;
}

    .navbar-nav .nav-item .nav-link,
    .dropdown-item,
    .mega-content .list-group-item {
        -webkit-transition: background-color 0.3s;
        transition: background-color 0.3s;
    }

        .mega-content .list-group-item:after {
            -webkit-transition: width 0.3s;
            transition: width 0.3s;
        }

.mega-content .list-group-item {
    position: relative;
}

.navbar-nav .nav-item .nav-link.dropdown-toggle::after {
    display: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "";
    padding: 0;
}

.dropdown-toggle::after,
.breadcrumb-item + .breadcrumb-item::before,
.topology-chips2 .gbl-chips span:first-child::after,
.topology-chips .gbl-chips span:not(:first-child)::after {
    border-top: 2px solid;
    border-left: 2px solid;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    transform: rotate(225deg);
    width: 8px;
    height: 8px;
    transition: all 0.2s;
}

.breadcrumb-item + .breadcrumb-item::before,
.topology-chips2 .gbl-chips span:first-child::after,
.topology-chips .gbl-chips span:not(:first-child)::after {
    transform: rotate(135deg) translate(19px, -4px) !important;
}

.dropdown-toggle.show::after {
    vertical-align: 0;
    border-top: 2px solid;
    border-left: 2px solid;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
}

.mega-content .list-group-item:after {
    content: "";
    height: 1px;
    width: 0;
    opacity: 0;
    position: absolute;
    transition: all 0.5s;
    bottom: 0;
    left: 0;
}

.mega-content .list-group-item:hover:after {
    width: 100%;
    opacity: 0.7;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

/* Mega Menu */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dropdown-menu.show {
    -webkit-animation: fadeIn 0.3s alternate;
    animation: fadeIn 0.3s alternate;
}

.nav-item.dropdown.dropdown-mega {
    position: static;
}

    .nav-item.dropdown.dropdown-mega .dropdown-menu {
        width: 90%;
        top: auto;
        left: 5%;
    }

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler .hamburger-toggle {
        position: relative;
        /* display: inline-block; */
        width: 50px;
        height: 50px;
        z-index: 11;
        float: right;
    }

        .navbar-toggler .hamburger-toggle .hamburger {
            position: absolute;
            transform: translate(-50%, -50%) rotate(0deg);
            left: 50%;
            top: 50%;
            width: 50%;
            height: 50%;
            pointer-events: none;
        }

            .navbar-toggler .hamburger-toggle .hamburger span {
                width: 100%;
                height: 4px;
                position: absolute;
                background: #333;
                border-radius: 2px;
                z-index: 1;
                transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
                left: 0px;
            }

                .navbar-toggler .hamburger-toggle .hamburger span:first-child {
                    top: 10%;
                    transform-origin: 50% 50%;
                    transform: translate(0% -50%) !important;
                }

                .navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
                    top: 50%;
                    transform: translate(0, -50%);
                }

                .navbar-toggler .hamburger-toggle .hamburger span:last-child {
                    left: 0px;
                    top: auto;
                    bottom: 10%;
                    transform-origin: 50% 50%;
                }

            .navbar-toggler .hamburger-toggle .hamburger.active span {
                position: absolute;
                margin: 0;
            }

                .navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
                    top: 45%;
                    transform: rotate(45deg);
                }

                .navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
                    left: 50%;
                    width: 0px;
                }

                .navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
                    top: 45%;
                    transform: rotate(-45deg);
                }

/* -/Mega Menu End */
#page-content-wrapper {
    margin-top: 32px;
}

@media (min-width: 992px) {
    #page-content-wrapper {
        margin-top: 64px;
    }
}

.content-area {
    margin: 0 0 1rem;
    padding: 0 1rem 1rem;
    border-radius: 0;
    position: relative;
}

.page-title {
    margin: 0 -16px;
    padding: 0.5rem 1rem;
    border-radius: 0;
    position: relative;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item {
    position: relative;
}

    .page-title h1,
    .breadcrumb-item a {
        font-size: 1rem;
        line-height: 37px;
        margin: 0;
        font-weight: bold;
    }

    .breadcrumb-item + .breadcrumb-item {
        padding-left: 1rem;
    }

.with-dropdown .input-group-text {
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid;
    /* border-top: 1px solid #ddd; */
}

.home-tabs {
    display: flex;
    gap: 10px;
    margin: 10px 0px 4px 0px;
}

    /* #homeViewTab.nav-tabs .nav-link,  */
    .home-tabs .nav-link {
        border: 0;
        border-bottom-width: 2px;
        border-style: solid;
        margin-bottom: 3px;
    }

        /* #homeViewTab.nav-tabs .nav-link.active,  */
        .home-tabs .nav-link.active {
            border: 0;
            border-bottom-width: 2px;
            border-style: solid;
        }

    .home-tabs .nav-link {
        border-width: 0px 0px 2px;
        border-color: initial;
        border-image: initial;
        border-style: solid;
    }

.tab-pane {
    padding: 1rem 0;
}

#actionableTabContent .tab-pane {
    padding: 0;
}

.actionstabs.nav-tabs {
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    border: 0;
}

    .actionstabs.nav-tabs li:not(first-child),
    .notificationtabs.nav-tabs li:not(first-child),
    .customertabs.nav-tabs li:not(first-child) {
        margin-left: 6px;
    }

    .actionstabs.nav-tabs .nav-link,
    .notificationtabs.nav-tabs .nav-link,
    .customertabs.nav-tabs .nav-link {
        border: 1px solid;
        border-style: solid;
        background: #fff;
        border-radius: 16px;
        line-height: 14px;
    }

.customertabs.nav-tabs .nav-link {
    border-radius: 6px;
    box-shadow: 1px 2px 4px rgb(0 0 0 / 10%);
    position: relative;
}

    .customertabs.nav-tabs .nav-link span {
        position: absolute;
        left: 0.5rem;
        top: 4px;
        height: 8px;
        border-radius: 4px;
        width: 8px;
        border: 1px solid #fff;
    }

.customertabs .list-group-item-action span {
    top: 50%;
    height: 10px;
    border-radius: 5px;
    width: 10px;
    border: 1px solid #fff;
    float: right;
}

.actionstabs.nav-tabs .nav-link.active,
.notificationtabs.nav-tabs .nav-link,
.customertabs.nav-tabs .nav-link.active {
    border: 1px solid;
    border-style: solid;
}

.customertabs.list-group {
    border-radius: 6px;
}

.customertabs .list-group-item {
    padding: 1rem;
}

/*form elements*/
.form-label {
    color: #585858;
    font-weight: bold;
    font-size: 13px;
}

.form-control,
.form-select {
    border: 0;
    border-bottom: 1px solid;
    border-radius: 0;
}

.with-dropdown .form-control {
    border-left: 1px solid;
}

.input-group-text {
    background-color: #ffffff;
    border: 0;
    border-bottom: 1px solid #ced4da;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-radius: 0;
}

.btn-icon {
    width: 36px;
}

/*form elements end*/
/*Input type file start*/
.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

    .inputfile + label {
        text-overflow: ellipsis;
        white-space: nowrap;
        cursor: pointer;
        display: inline-block;
        padding: 0.625rem 1.25rem;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
        border-radius: 0px;
        text-align: left;
        border: 0;
        width: 100%;
        position: relative;
        margin: 0;
    }

    .inputfile:focus + label,
    .inputfile.has-focus + label {
        outline: 1px dotted #000;
        outline: -webkit-focus-ring-color auto 5px;
    }

    .inputfile + label {
        padding: 0;
    }

        .inputfile:focus + label,
        .inputfile.has-focus + label,
        .inputfile + label:hover {
            border-color: var(--primary);
            outline: none;
        }

        .inputfile + label span {
            padding: 10px;
        }

        .inputfile + label > span {
            max-width: 100%;
            min-height: 2em;
            display: inline-block;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            vertical-align: top;
            text-align: left;
            line-height: 20px;
            position: absolute;
            z-index: 1;
            left: 0px;
            padding: 10px 0.75rem;
            border-bottom: 1px solid #e2e2ea;
            width: calc(100% - 93px);
            height: 41px;
        }

            .inputfile + label > span > span:first-child {
                width: 178px;
                padding: 0;
                float: left;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .inputfile + label > span > span:last-child i {
                text-decoration: underline;
                font-size: 13px;
            }

        .inputfile + label strong {
            height: 100%;
            line-height: 21px;
            text-align: center;
            float: right;
        }

/* .inputfile:focus + label strong, .inputfile.has-focus + label strong, .inputfile + label:hover strong {background-image:var(--gradient-primary);color:#fff} */
/*Input file End*/

/*multiple input type file*/
.file-input {
    width: 100%;
    float: left;
    color: rgba(0, 0, 0, 0.3);
    line-height: 30px;
}

.btn-file,
.btn-file:hover {
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    padding: 0.75rem 0.75rem;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    text-align: left;
    border: 0;
    border-bottom: 1px solid #e2e2ea;
    width: calc(100% - 93px);
    position: relative;
    margin: 0;
    color: #808080;
}

    .btn-file input[type="file"] {
        position: absolute;
        top: 0;
        left: 0;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        cursor: inherit;
        display: block;
    }

.fileList {
    margin: 0;
    padding: 0;
}

    .fileList li {
        line-height: 16px;
        list-style-type: none;
    }

        .fileList li > span {
            text-overflow: ellipsis;
            width: calc(100% - 50px);
            overflow: hidden;
            display: inline-block;
        }

.removeFile {
    text-decoration: underline;
    font-size: 12px;
    line-height: 20px;
    vertical-align: bottom;
}

/*multiple input type file End*/
/*Chosen Dropdown*/
.chosen-container,
.custom-select {
    font-size: 14px;
}

.custom-box-select {
    padding: 0;
    position: relative;
}

.chosen-container.chosen-container-multi {
    padding: 0 0.25rem;
}

.custom-box-select:after {
    content: "";
    clear: both;
    display: block;
    overflow: hidden;
    border-top: 2px solid;
    border-left: 2px solid;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    transform: rotate(225deg);
    width: 0.5rem;
    height: 0.5rem;
    transition: all 0.2s;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -0.25rem;
}

/* .custom-box-select label {position:absolute; color:#c7c7d4; font-weight:600;text-transform:uppercase;padding: 13px 0 00;line-height: 12px;transition: .2s;top:0;left:0;} */
.custom-box-select select::placeholder {
    color: #ff0000 !important;
}

.custom-box-select.active label {
    top: -30px;
    font-size: 11px;
    left: 0;
}

.custom-box-select input {
    margin-top: 0px !important;
}

.chosen-container-single .chosen-single span {
    font-size: 1rem;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
    height: 34px;
    color: #212529;
    font-size: 1rem;
}

.custom-box-select i {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 6px;
    right: 0;
    z-index: 10;
}

.custom-box-select .chosen-container-multi .chosen-choices {
    border: 0;
    background-image: none !important;
    padding: 0;
}

.custom-box-select .chosen-container {
    width: 100% !important;
}

.custom-box-select .chosen-container-active .chosen-choices {
    border: 0;
    box-shadow: none;
    width: 100% !important;
}

/* .custom-box-select .chosen-container-multi .chosen-choices li.search-field input[type="text"] {color: #136998;font-weight: 600;} */
.custom-box-select .chosen-container .chosen-drop {
    border: 1px solid #e2e2ea !important;
}

.custom-box-select .chosen-container-multi .chosen-choices li.search-choice,
.form-control .badge {
    box-shadow: none;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    border: 1px solid #a9ceed;
    background: #f5fbff;
    color: #3d3d3d;
    line-height: 18px;
}

    .custom-box-select .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
        background: url(../Image/cross.svg) 0 0 no-repeat !important;
        width: 16px;
        height: 16px;
        display: inline-block;
        margin-top: 2px;
        margin-right: 3px;
        background-size: 16px;
    }

.chosen-container-multi .chosen-choices li.search-choice {
    padding: 5px 20px 5px 8px;
}

.custom-box-select .chosen-container-multi .chosen-choices li.search-choice:hover .search-choice-close {
    background: url(../Image/cross.svg) 0 0 no-repeat;
    background-size: 16px;
}

.custom-box-select .chosen-container-multi .chosen-choices li.search-choice span {
    margin-right: 10px;
}

.custom-box-select .chosen-container .chosen-results li {
    padding: 8px 15px;
    border: none;
    margin: 0;
}

.custom-box-select .chosen-container .chosen-results {
    max-height: 130px;
}

.custom-box-select .chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 8px;
    height: 37px;
    border: 0;
    /* border-bottom:1px solid #E2E2EA; */
    border-radius: 0;
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #212529;
    text-decoration: none;
    white-space: nowrap;
    line-height: 34px;
}

.custom-box-select .chosen-container-active.chosen-with-drop .chosen-single {
    border: 0;
    border-bottom: 1px solid #e2e2ea;
    border-radius: 0;
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #212529;
}

/* .custom-box-select .chosen-container-single .chosen-single div b{background: url(../images/down-arrow.svg) no-repeat 0px 2px;} */
.custom-box-select .chosen-container-single .chosen-search input[type="text"] {
    border: 0;
    border-bottom: 1px solid #e2e2ea;
    padding: 4px 20px 4px 16px;
    height: 37px;
}

.custom-box-select .chosen-container .chosen-results li.highlighted {
    background-color: #f0f8ff;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f0f8ff), color-stop(90%, #f0f8ff));
    background-image: linear-gradient(#f0f8ff 20%, #f0f8ff 90%);
    color: #212529;
}

.chosen-container-multi .chosen-drop .result-selected {
    background: #f0f8ff;
}

/*Chosen Dropdown End*/
/*Bootstrap Multi select*/
.custom-select {
    border: 1px solid transparent;
    background: transparent url("../Image/sort_desc.png") no-repeat right 0.75rem center;
    border-radius: 0;
    border-bottom: 1px solid #e2e2ea;
    color: #808080;
    height: 36px;
    text-align: left;
}

    .custom-select:focus {
        border-width: 1px;
        border-color: transparent transparent #83a8bc transparent;
        color: #007bff;
    }

.multiselect-container.dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
}

.multiselect-container .multiselect-option.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-group.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-all.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-option:not(.multiselect-active-item-fallback):active,
.multiselect-container .multiselect-group:not(.multiselect-active-item-fallback):active,
.multiselect-container .multiselect-all:not(.multiselect-active-item-fallback):active,
.multiselect-option.dropdown-item:hover {
    background-color: #f0f8ff;
    color: #808080;
}

.multiselect-container .multiselect-option,
.multiselect-container .multiselect-group,
.multiselect-container .multiselect-all {
    padding: 1rem 0.25rem 0.5rem 0.75rem;
}

.multiselect-container .multiselect-filter > .fa-search {
    padding: 0;
}

.multiselect-container .multiselect-filter > input.multiselect-search {
    padding-left: 1rem;
    margin-left: 0;
}

.multiselect-container {
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e2ea !important;
}

.ms-options-wrap > button:focus,
.ms-options-wrap > button {
    border: 1px solid transparent;
    padding: 7px 20px 7px 5px;
    border-bottom: 1px solid #e2e2ea;
    color: #808080;
}

.ms-options-wrap > .ms-options {
    border: 1px solid #e2e2ea !important;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

    .ms-options-wrap > .ms-options > .ms-search input {
        border-bottom: 1px solid #e2e2ea !important;
    }

/*Bootstrap Multi select End*/

/*Table start*/
.table > :not(:first-child) {
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.table {
    border: 0;
}

    .table th,
    .table td {
        border-top: 1px solid #ddd;
        vertical-align: middle;
        font-size: 14px;
        border: 0;
    }

    .table th {
        border-bottom: 1px solid #ddd;
    }

.hiddensearch {
    padding: 0;
    display: none;
    border: 1px solid #ffffff;
    box-shadow: 1px 3px 6px 0px rgb(41 39 39 / 39%);
    position: absolute;
    width: 400px;
    background: #fff;
    top: 0;
    z-index: 1;
    right: 1px;
}

    .hiddensearch input {
        margin: 0;
        border: transparent 0;
        height: 48px;
        color: rgba(0, 0, 0, 0.84);
        font-size: 16px;
        width: 100% !important;
        border-bottom: 1px solid #a9abac;
        margin-left: 0 !important;
    }

        .hiddensearch input:focus {
            border: 0;
            border-bottom: 1px solid var(--bs-primary);
            box-shadow: none;
        }

    .hiddensearch label {
        display: block;
    }

.dataTables_filter {
    width: 100%;
}

#mainTable,
#table_id_wrapper {
    height: 100%;
    transition: all 0.3s;
}

.main-table-wrapper {
    height: 480px;
    overflow-y: auto;
}

.col-md-4 .main-table-wrapper {
    height: 520px;
}

/* .table#table_id{table-layout:fixed;} */
table.dataTable tbody th,
table.dataTable tbody td {
    padding: 6px 10px;
}

table.dataTable,
table.dataTable th,
table.dataTable td {
    box-sizing: border-box;
    border-collapse: collapse;
}

table {
    margin: 0 auto;
    clear: both;
    width: 100%;
}

td [type="checkbox"] + span:not(.lever) {
    margin-top: 10px;
}

table.dataTable thead th,
table.dataTable thead td,
table.dataTable tbody th,
table.dataTable tbody td {
    padding-left: 10px;
    padding-right: 10px;
    /* border-top: 1px solid #dddddd; */
    white-space: nowrap;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    vertical-align: middle;
    border-bottom-color: #ddd;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f8f8;
}

table.dataTable.no-footer,
table.dataTable thead th {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #dddddd;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
    background: none;
}

th.sorting_disabled span {
    background: none;
}

table.dataTable thead th span {
    margin-left: 5px;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background-position: center center;
    background-size: contain;
}

table.dataTable thead .sorting_asc span {
    background-image: url(../Image/sort_asc.png);
}

table.dataTable thead .sorting_desc span {
    background-image: url(../Image/sort_desc.png);
}

/* table.dataTable thead .sorting span {background-image: url(../images/sort.png)} */
.table-heading {
    font-size: 1rem;
    font-weight: bold;
    line-height: 36px;
}

.table-action .dataTables_filter {
    height: 39px;
    width: auto;
}

/* table.dataTable td.sorting_1 {
  background-color: #f0f8ff;
} */
/*
    .table-action .dataTables_filter input,
    .dataTables_filter input {
        border-radius: 0;
        height: 37px;
        background-color: inherit;
        margin-left: 0;
    }

    .table-action .dataTables_filter label {
        margin-bottom: 0;
        width: 100%;
    }

    .table-action .dataTables_filter.search-box {
        border-radius: 30px;
        border: 1px solid #f5f5f5;
    }

        .table-action .dataTables_filter.search-box input[type="search"]:not(.browser-default):focus:not([readonly]) {
            border: 0;
        }

        .table-action .dataTables_filter.search-box input:parent,
        .table-action .dataTables_filter.search-box .input-group-text:parent,
        .table-action .dataTables_filter.search-box input[type="search"]:not(.browser-default):focus:not([readonly]) {
            border: 1px solid #000;
        }
        */
tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: none;
    border-width: 0;
}

table.dataTable tbody td.select-checkbox {
    position: relative;
}

table.dataTable thead th.select-checkbox button:after {
    position: absolute;
    display: block;
}

table.dataTable tbody td.select-checkbox:before,
table.dataTable tbody th.select-checkbox:before {
    content: "";
    width: 18px;
    height: 18px;
    top: 50%;
    border: 1px solid #c3c3c3;
    background: #fff;
    margin-top: -9px;
    margin-left: -9px;
    left: 25px;
    position: absolute;
    border-radius: 3px;
}

table.dataTable tr.selected td.select-checkbox:after,
table.dataTable tr.selected th.select-checkbox:after {
    content: "";
    transform: rotate(45deg);
    position: absolute;
    left: 25px;
    top: 50%;
    width: 6px;
    height: 13px;
    border-width: 2px;
    border-style: solid;
    border-top: 0;
    border-left: 0;
    border-color: var(--bs-primary);
    z-index: 997;
    margin-top: -8px;
    margin-left: -3px;
    background: transparent;
}

table.dataTable thead th.select-checkbox {
    position: relative;
}

    table.dataTable thead th.select-checkbox button {
        position: absolute;
        width: 18px;
        height: 18px;
        top: 50%;
        border: 1px solid #c3c3c3;
        background: #fff;
        margin-top: -9px;
        margin-left: -9px;
        left: 25px;
        border-radius: 3px;
    }

table.dataTable thead th button.selected:after {
    content: "";
    transform: rotate(45deg);
    position: absolute;
    left: 8px;
    top: 50%;
    width: 6px;
    height: 13px;
    border-width: 2px;
    border-style: solid;
    border-top: 0;
    border-left: 0;
    border-color: var(--bs-primary);
    z-index: 997;
    margin-top: -8px;
    margin-left: -3px;
    background: transparent;
}

.table-footer {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    flex-direction: row;
    padding-top: 8px;
}

.dataTables_length .form-control {
    width: auto;
    display: inline-block;
}

table.dataTable.hover tbody > tr.selected:hover,
table.dataTable.hover tbody > tr > .selected:hover,
table.dataTable.display tbody > tr.selected:hover,
table.dataTable.display tbody > tr > .selected:hover,
table.dataTable tbody > tr.selected,
table.dataTable tbody > tr > .selected {
    background-color: #d1e6f9;
}

    table.dataTable.display tbody > tr.selected:hover > .sorting_1,
    table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_1 {
        background-color: transparent !important;
    }

table.dataTable tbody > tr.is-disabled,
table.dataTable tbody > tr > .is-disabled {
    background-color: #f7f7f7;
    opacity: 0.6;
}

#table_id tbody tr td:nth-of-type(1),
#table_id tbody tr td:nth-of-type(2),
#table_id tbody tr td:nth-of-type(3) {
    cursor: pointer;
}

#table_id tbody tr td:nth-of-type(1),
#table_id_wrapper .dataTables_scrollHeadInner thead tr th:nth-of-type(1),
#table_id tbody tr td:nth-of-type(2),
#table_id_wrapper .dataTables_scrollHeadInner thead tr th:nth-of-type(2) {
    background-color: #fff;
    border-right: 1px solid #ddd;
}

#table_id tbody tr td:nth-of-type(3),
#table_id_wrapper .dataTables_scrollHeadInner thead tr th:nth-of-type(3) {
    background-color: #fff;
    border-right: 2px solid #ddd;
    box-shadow: 12px 2px 1rem rgb(0 0 0 / 12%);
}

th,
td {
    white-space: nowrap;
}

div.dataTables_wrapper {
    width: 100%;
    margin: 0 auto;
}

/* .dataTables_scrollHeadInner,.dataTables_scrollHeadInner>table{width: 100%!important} */
.dataTables_scrollBody #table_id > thead > tr > th > span {
    display: none;
}

.table > :not(caption) > * > * {
    box-shadow: none;
}

/* Table End */

/*global Chips*/
.gbl-chips {
    padding: 5px 8px;
    border: 1px solid #bcdcf5;
    background: #fff;
    color: #056aa5;
    cursor: pointer;
    border-radius: 2px;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 10px;
    line-height: 18px;
}

    .gbl-chips i {
        /* background: url(../Image/plus.svg) 50% 50% no-repeat; */
        width: 10px;
        height: 10px;
        display: inline-block;
        margin-left: 10px;
        vertical-align: middle;
        margin-top: -3px;
        background-size: 10px;
    }

    .gbl-chips:hover,
    .gbl-chips.selected {
        border: 1px solid #a9ceed;
        background: #f5fbff;
        color: #3d3d3d;
    }

        .gbl-chips.selected i {
            background: url(../Image/cross.svg) 50% 50% no-repeat;
            transform: rotate(0deg);
            background-size: 16px;
        }

.gbl-selected {
    padding: 10px 5px 0 5px;
    background: #ffffff;
}

.accordion.more-filters .card,
.accordion .card {
    border-radius: 4px;
    border: 1px solid #e2e2ea;
    overflow: inherit;
}

.accordion.more-filters .card-header,
.accordion .card-header {
    padding: 0.25rem 1rem;
}

    .accordion.more-filters .card-header .gbl-chips {
        padding: 6px 8px;
        border: 1px solid #bcdcf5;
        background: #fff;
        color: #056aa5;
        cursor: pointer;
        border-radius: 2px;
        margin-right: 10px;
        display: inline-block;
        margin-bottom: 0;
    }

        .accordion.more-filters .card-header .gbl-chips i {
            background: url(../Image/cross.svg) 50% 50% no-repeat;
            background-size: 16px;
        }

        .accordion.more-filters .card-header .gbl-chips:hover,
        .gbl-chips.selected {
            border: 1px solid #a9ceed;
            background: #f5fbff;
            color: #3d3d3d;
        }

        .accordion.more-filters .card-header .gbl-chips.selected i {
            background: url(../Image/cross.svg) 50% 50% no-repeat;
            transform: rotate(0deg);
        }

    .accordion.more-filters .card-header .gbl-selected {
        padding: 10px 5px 0 5px;
        background: #ffffff;
    }

/*global Chips End*/

/*Pills*/
.badge-pill {
    padding: 0.35em 0.75em;
    border-radius: 5px;
    border: 1px solid;
    font-weight: normal;
}

/*Pills End*/
.legends li {
    display: inline-block;
}

    .legends li:not(:last-child) {
        margin-right: 16px;
    }

#actionableTab.nav-tabs .nav-link span,
.service-list .nav-link span,
.legends span {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.service-list li {
    border-bottom: 1px solid;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

.service-toggle {
    position: absolute;
    /* left: 238px; */
    top: 4px;
    width: 30px;
    height: 30px;
    /* box-shadow: 0px -2px 5px 0px rgb(41 39 39 / 39%); */
    z-index: 2;
    background: #ffffff;
    color: #000;
    /* border-radius: 4px 4px 0 0; */
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    .service-toggle > span {
        content: "";
        position: absolute;
        border-top: 2px solid;
        border-left: 2px solid;
        border-bottom: 2px solid transparent;
        border-right: 2px solid transparent;
        transform: rotate(-45deg);
        width: 10px;
        height: 10px;
        transition: all 0.2s;
        top: 10px;
        left: 11px;
    }

#serviceList {
    position: static;
    left: 0;
    top: 0px;
    margin-left: -270px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
    width: 270px;
    height: auto;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 1rem;
}

    #serviceList ul {
        height: 100%;
        width: 100%;
        flex-wrap: nowrap;
    }

    #serviceList > ul > li {
        bottom: 0;
        top: 43px;
        position: absolute;
        overflow-x: hidden;
        overflow-y: auto;
        left: 0;
        right: 0;
    }

    #serviceList ul ul {
        padding: 0;
    }

#tableWrap {
    position: relative;
}

#mainTable {
    width: 100%;
    /* position: absolute; */
    right: 0;
    top: 0px;
    transition: all 0.3s ease-out;
    max-height: 410px;
    overflow-y: auto;
}

#tableWrap.toggled #mainTable {
    width: calc(100% - 270px);
}

#tableWrap.toggled #serviceList {
    margin-left: 0;
}

#tableWrap.toggled #serviceToggle,
#serviceToggle {
    left: -20px;
}

    #tableWrap.toggled #serviceToggle > span {
        transform: rotate(135deg);
        left: 8px;
    }

@media (min-width: 768px) {
    #serviceToggle {
        left: 224px;
    }

    #serviceList {
        margin-left: 0;
        padding: 0;
    }

    #mainTable {
        min-width: 0;
        width: calc(100% - 270px);
    }

    #tableWrap.toggled #mainTable {
        width: 100%;
    }

    #tableWrap.toggled #serviceList {
        margin-left: -270px;
        opacity: 0;
    }
}

.navbar-collapse.action-section {
    padding: 0rem;
    position: absolute;
    top: 0;
    right: -75%;
    height: 100%;
    min-height: 100%;
    z-index: 99;
    background-color: #ffffff;
    box-shadow: -10px 0 12px -4px rgba(0, 0, 0, 0.23);
    -webkit-transition: right 0.3s ease-out;
    -moz-transition: right 0.3s ease-out;
    -o-transition: right 0.3s ease-out;
    transition: right 0.3s ease-out;
    overflow-x: hidden;
    overflow-y: auto;
}

    .navbar-collapse.action-section.show {
        left: 0;
        right: 0;
    }

    .navbar-collapse.action-section > .row {
        height: auto;
    }

.action-section > div.section1,
.action-section > div > div,
.action-section .card {
    height: 100%;
}

.action-name {
    font-size: 16px;
    line-height: 48px;
    font-weight: bold;
}

.related-name,
.service-name {
    font-weight: bold;
}

/* .actiondescription{border-bottom:1px solid rgba(0,0,0,.1);margin-bottom:6px} */
#actionActivitiesTabContent {
    padding-top: 8px;
}

/* .action-section > div:nth-child(1){height:100%} */
#actionPanel .section1 .card-body,
#actionPanel .section2 .card-body,
#logs_section .section2 .card-body {
    height: calc(100% - 50px);
    overflow-x: hidden;
    overflow-y: auto;
}

.actiondescription-detail,
.objective-details,
.evaluation-details {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

    .actiondescription-detail .actiondescription-detail-value,
    .objective-detail .objective-detail-value,
    .evaluation-details .evaluation-detail-value {
        position: relative;
        padding: 0.25rem;
        margin-bottom: 0.25rem;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        min-width: 25%;
        background: #fbfbfb;
        border: 1px solid #f9f8f8;
    }

        .actiondescription-detail .actiondescription-detail-value > span,
        .objective-detail .objective-detail-value > span,
        .evaluation-details .evaluation-detail-value > span {
            display: block;
            font-size: 12px;
            margin-bottom: 0px;
            text-transform: none;
            color: #6c757d;
        }

        .actiondescription-detail .actiondescription-detail-value .dynamic-value,
        .objective-detail .objective-detail-value .dynamic-value,
        .evaluation-details .evaluation-detail-value .dynamic-value {
            color: #000;
        }

.objective-detail .objective-detail-value {
    background: #f9f8f8;
    border: 0;
    padding: 0.5rem;
}

    .objective-detail .objective-detail-value > span {
        font-size: 13px;
    }

.evaluation-details .evaluation-detail-value > span {
    margin-bottom: 0.25rem;
    font-size: 13px;
}

.evaluation-details .evaluation-detail-value {
    margin-right: 0.25rem;
    padding: 0.5rem;
}

.evaluation-details .evaluation-detail-value {
    border: 1px solid #f0f0f0;
    background: #fff;
}

.metricdetails-data {
    padding: 0;
}

    .metricdetails-data li {
        border: 0;
        font-size: 24px;
        padding: 8px 15px;
        list-style-type: none;
        color: #444;
    }

        .metricdetails-data li:first-child {
            border-left: 0;
        }

        .metricdetails-data li > span {
            display: block;
            color: #787e85;
            font-size: 16px;
        }

    .metricdetails-data .badge {
        font-size: 16px;
        margin-bottom: 6px;
        font-weight: 400;
    }

    .metricdetails-data li:last-child {
        width: 100%;
        display: block;
    }

@media (min-width: 992px) {
    .navbar-collapse.action-section {
        overflow: hidden;
    }

        .navbar-collapse.action-section > .row {
            height: calc(100% - 67px);
        }

    .metricdetails-data li {
        border: 0;
        border-left: 1px solid #eceaeb;
    }

    .navbar-collapse.action-section.show {
        right: 0;
        left: auto;
    }
}

.relatedchanges-filter {
    margin-right: 20px;
}

    .relatedchanges-filter ul {
        background-color: #f8f9fa;
        border: 1px solid #eeeeee;
        border-radius: 18px;
        padding: 1px;
        align-items: flex-start;
        height: 36px;
    }

    .relatedchanges-filter .badge {
        padding: 10px 15px;
        font-weight: normal;
        cursor: pointer;
    }

        .relatedchanges-filter .badge.bg-light.active {
            background-color: var(--bs-primary) !important;
            color: #ffffff !important;
        }

/* .grid-item .card {
  min-height: 164px;
} */

.relatechange-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-collapse.chat-view {
    position: absolute;
    top: 0;
    right: -75%;
    padding-bottom: 15px;
    /* width: 75%; */
    height: 100%;
    min-height: 100%;
    z-index: 1041;
    -webkit-box-shadow: -2px 0px 5px 1px rgba(0, 0, 0, 0.1);
    box-shadow: -2px 0px 5px 1px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-transition: right 0.25s ease-out;
    -moz-transition: right 0.25s ease-out;
    -o-transition: right 0.25s ease-out;
    transition: right 0.25s ease-out;
}

    .navbar-collapse.chat-view.collapsing {
        right: -75%;
        transition: right 0.25s ease-out;
    }

    .navbar-collapse.chat-view.show {
        right: 0;
    }

/*Chat Section*/
#chat {
    position: relative;
}

    #chat > span {
        position: absolute;
        right: 0px;
        top: -2px;
        background: #ff0000;
        height: 6px;
        border-radius: 0.25rem;
        width: 6px;
        border: 1px solid #fff;
    }

.chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    display: none;
}

    .chat-overlay.fade {
        opacity: 0;
        transition: opacity 0.1s linear;
    }

    .chat-overlay.show {
        display: block;
        opacity: 0.5;
    }

.navbar-collapse.chat-view {
    overflow: hidden;
    position: fixed;
}

.chat-view .navbar-nav {
    flex-direction: row;
}

    .chat-view .navbar-nav .dropdown-toggle::after {
        display: none;
    }

.chat-heading,
.service-heading {
    line-height: 43px;
    margin: 0;
    font-weight: bold;
}

.chat-view .navbar-nav .nav-link,
.service-details-view .navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
    line-height: 30px;
}

/* .chat-view .navbar-nav .dropdown-item:not(:first-child){border-top:1px solid #ddd} */
.invited-users-list .dropdown-item {
    padding: 0.25rem 0.5rem;
    line-height: 28px;
}

    .invited-users-list .dropdown-item .user-image {
        width: 24px;
        float: left;
        margin-right: 8px;
    }

        .invited-users-list .dropdown-item .user-image > img {
            width: 100%;
        }

    .invited-users-list .dropdown-item .username {
        width: calc(100% - 34px);
        display: inherit;
    }

    .invited-users-list .dropdown-item:last-child:hover {
        background-color: inherit;
    }

.ChatBotContainer {
    padding: 0 0 30px 0;
    bottom: 72px;
    top: 43px;
    position: absolute;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 14px;
    left: 0;
    right: 0;
}

.chat-seperator {
    position: relative;
    text-align: center;
}

    .chat-seperator:after {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: #dee2e6;
        content: "";
        z-index: 0;
    }

    .chat-seperator span {
        background: #fff;
        padding: 0.25rem;
        font-size: 11px;
        z-index: 1;
        position: relative;
    }

/*------ Chat Bot footer-------*/

.Chatfooter {
    position: absolute;
    bottom: 0;
    width: 100%;
}

    .Chatfooter .ChatBotFooter {
        background: #ffffff;
        /*box-shadow: 0 -3px 4px -3px rgba(0,0,0,0.14);box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);*/
        position: relative;
        -webkit-transition: all 0.6s ease-in-out;
        -moz-transition: all 0.6s ease-in-out;
        -ms-transition: all 0.6s ease-in-out;
        -o-transition: all 0.6s ease-in-out;
        transition: all 0.6s ease-in-out;
        margin: 20px 16px;
        display: flex;
    }

.formSectionBox {
    width: 100%;
}

.Chatfooter .StartChat {
    position: relative;
    border-radius: 25px;
    border: 1px solid #ddd;
}

.Chatfooter .ChatBotFooter .inputBox {
    background: #fff;
    outline: none;
    padding: 12px 20px;
    border-radius: 25px 0 0 25px;
    border: 0;
    font-size: 14px;
    color: #000;
    line-height: 1.4;
    border-top: 1px solid #efefef;
    width: calc(100% - 50px);
    height: 40px;
}

.inputBox:focus {
    border-bottom: 1px solid #efefef !important;
    box-shadow: none !important;
}

.Chatfooter .StartChat .sendChat {
    position: absolute;
    right: 0;
    font-size: 0;
    overflow: hidden;
    background: transparent;
    background-size: 20px;
    width: 50px;
    top: 0;
    bottom: 0;
    border: 0;
    outline: none;
    cursor: pointer;
}

.lucy-chat {
    border-radius: 50%;
    width: 48px;
    height: 42px;
    border: 0;
    text-align: center;
    box-shadow: 0px 1px 6px #0000004f;
    background: #fff;
    animation: slideInRight 0.75s ease-in-out forwards;
}

    .lucy-chat:focus {
        box-shadow: 0px 1px 6px #0000004f !important;
    }

/*Chat Section End*/

/* Historical View Section */

.percantage-chart {
    width: 40px;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

.circle-bg {
    fill: none;
    stroke: #c1c1c1;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage {
    fill: #666;
    font-family: sans-serif;
    font-size: 0.75em;
    text-anchor: middle;
}

.frequency-radio-btn {
    display: inline-block;
}

    /* 
.frequency-radio-btn input[type="radio"] {
  display: none;
} */

    /* .frequency-radio-btn input[type="radio"]:not(:disabled) ~ label {
  cursor: pointer;
} */

    /* .frequency-radio-btn input[type="radio"]:disabled ~ label {
  color: hsla(150, 5%, 75%, 1);
  border-color: hsla(150, 5%, 75%, 1);
  box-shadow: none;
  cursor: not-allowed;
} */

    .frequency-radio-btn label {
        font-size: 1rem;
        font-weight: normal;
        height: 100%;
        display: block;
        color: #212529;
        background: white;
        border: 1px solid rgb(211, 211, 211);
        margin-bottom: 1rem;
        text-align: center;
        box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%);
        position: relative;
    }

/* .frequency-radio-btn input[type="radio"]:checked + label {
  background: var(--bs-primary);
  color: #fff;
  box-shadow: 0px 0px 5px rgb(7 134 193)
} */

/*Horizontal Timeline Start*/
/* .timeline-wrapper{overflow: auto;} */
.timeline {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.li {
    transition: all 200ms ease-in;
    min-width: 203px;
}

.timestamp {
    margin-bottom: 2rem;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 100;
}

.timeline .status {
    padding: 0px 40px;
    display: flex;
    justify-content: center;
    border-top: 2px solid #d6dce0;
    position: relative;
    transition: all 200ms ease-in;
}

    .timeline .status h4 {
        font-weight: 500;
        font-size: 14px;
        margin-top: 2rem;
    }

    .timeline .status:before {
        content: "";
        width: 3rem;
        height: 3rem;
        background-color: white;
        border-radius: 1.5rem;
        border: 1px solid #ddd;
        position: absolute;
        top: -1.5rem;
        left: 42%;
        transition: all 200ms ease-in;
    }

li.event .status:after,
li.actionable .status:after,
li.alerts .status:after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -3px;
}

li.event .status:after {
    background-image: url(../Image/events-icon-white.svg);
    background-repeat: no-repeat;
}

li.alerts .status:after {
    background-image: url(../Image/alerts-icon-white.svg);
    background-repeat: no-repeat;
}

li.actionable .status:after {
    background-image: url(../Image/actionable-icon-white.svg);
    background-repeat: no-repeat;
}

.li.complete .status {
    border-top: 2px solid var(--bs-primary);
}

    .li.complete .status:before {
        background-color: var(--bs-primary);
        border: none;
        transition: all 200ms ease-in;
    }

    .li.complete .status h4 {
        color: var(--bs-primary);
    }

.entity {
    font-weight: bold;
}

.timestamp .date {
    font-size: 0.75rem;
}

@media (min-device-width: 320px) and (max-device-width: 700px) {
    .timeline {
        list-style-type: none;
        display: block;
    }

    .li {
        transition: all 200ms ease-in;
        display: flex;
        width: inherit;
    }

    .timestamp {
        width: 100px;
    }

    .status:before {
        left: -8%;
        top: 30%;
        transition: all 200ms ease-in;
    }
}

/*Horizontal Timeline End*/
/*Timeline vertical Start*/
::selection {
    color: #fff;
    background: var(--bs-primary);
}

.comment-wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

    .comment-wrapper .center-line {
        position: absolute;
        height: 100%;
        width: 0.25rem;
        background: #f1f1f1;
        /* left: 50%; */
        left: 30px;
        top: 20px;
        transform: translateX(-50%);
    }

    .comment-wrapper .row {
        display: flex;
        margin-bottom: 10px;
    }

    .comment-wrapper .row-1 {
        justify-content: flex-start;
    }

    .comment-wrapper .row-2 {
        justify-content: flex-end;
    }

    .comment-wrapper .row section {
        background: #f1f1f1;
        border-radius: 5px;
        /* width: calc(50% - 40px); */
        width: calc(100% - 60px);
        padding: 20px;
        position: relative;
    }

        .comment-wrapper .row section::before {
            position: absolute;
            content: "";
            height: 15px;
            width: 15px;
            top: 28px;
            transform: rotate(135deg);
            border-top: 12px solid #f1f1f1;
            border-left: 12px solid #f1f1f1;
            border-bottom: 12px solid transparent;
            border-right: 12px solid transparent;
            z-index: 1;
        }

    .comment-wrapper .row-2 section::before {
        border-bottom: 12px solid #f1f1f1;
        border-right: 12px solid #f1f1f1;
    }

.row-1 section::before {
    right: -7px;
}

.row-2 section::before {
    left: -7px;
}

.row section .icon,
.center-line .scroll-icon {
    position: absolute;
    background: #f2f2f2;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--bs-primary);
    font-size: 17px;
    box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}

.center-line .scroll-icon {
    bottom: 0px;
    left: 50%;
    font-size: 25px;
    transform: translateX(-50%);
}

.row-1 section .icon {
    top: 15px;
    right: -60px;
}

.row-2 section .icon {
    top: 15px;
    left: -60px;
}

.row section .details,
.row section .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.row section .bottom {
    font-size: 13px;
}

.row section .details .title {
    font-size: 16px;
    font-weight: bold;
}

.row section .details .date {
    font-size: 14px;
    font-weight: bold;
}

.row section p {
    margin: 0px 0 17px 0;
}

.row section .bottom a {
    text-decoration: none;
    background: var(--bs-primary);
    color: #fff;
    padding: 7px 15px;
    border-radius: 5px;
    /* font-size: 17px; */
    font-weight: 400;
    transition: all 0.3s ease;
}

    .row section .bottom a:hover {
        transform: scale(0.97);
    }

.timeline-wrapper .row section p {
    margin: 10px 0 17px 0;
}

.row section .icon::after,
.row.actionables section .icon::after,
.row.alerts section .icon::after,
.row.events section .icon::after,
.scroll-icon::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
}

.scroll-icon::after {
    margin-left: -6px;
    margin-top: -7px;
}

.row section .icon::after {
    background-image: url(../Image/user-other.svg);
    background-repeat: no-repeat;
}

.row.active-user section .icon::after {
    background-image: url(../Image/user-other-white.svg);
    background-repeat: no-repeat;
}

.row.events section .icon::after {
    background-image: url(../Image/events-icon-white.svg);
    background-repeat: no-repeat;
}

.row.alerts section .icon::after {
    background-image: url(../Image/alerts-icon-white.svg);
    background-repeat: no-repeat;
}

.row.actionables section .icon::after {
    background-image: url(../Image/actionable-icon-white.svg);
    background-repeat: no-repeat;
}

.scroll-icon::after {
    background-image: url(../Image/arrow-up.svg);
    background-repeat: no-repeat;
    background-size: 12px;
}

@media (max-width: 790px) {
    .comment-wrapper .center-line {
        left: 40px;
    }

    .comment-wrapper .row {
        margin: 30px 0 3px 60px;
    }

        .comment-wrapper .row section {
            width: 100%;
        }

    .row-1 section::before {
        left: -7px;
        right: auto;
        transform: rotate(-45deg) !important;
        border-top: 12px solid transparent;
        border-left: 12px solid transparent;
        border-bottom: 12px solid #f1f1f1 !important;
        border-right: 12px solid #f1f1f1 !important;
    }

    .row-1 section .icon {
        left: -60px;
    }
}

@media (max-width: 440px) {

    .comment-wrapper .center-line,
    .row section::before,
    .row section .icon {
        display: none;
    }

    .comment-wrapper .row {
        margin: 10px 0;
    }
}

/*Timeline vertical End*/
/*Update Available button*/
.update-available.dropup .update-available-btn.dropdown-toggle::after,
.update-available .dropstart .dropdown-toggle::before {
    display: none;
}

.update-available {
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: none;
    z-index: 1042;
    animation: slideInRight 0.5s ease-in-out forwards;
    background: #fff;
}

@-webkit-keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.update-available > button {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #000;
    border: none;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    align-items: center;
    font-weight: bold;
}

    .update-available > button svg {
        margin: 0 auto 0.25rem;
    }

.update-available-btn > span.notification-count {
    position: absolute;
    left: 10%;
    bottom: 50px;
    background: #ff0000;
    min-height: 6px;
    border-radius: 0.25rem;
    min-width: 6px;
    color: #fff;
    padding: 0.25rem;
    font-size: 10px;
    line-height: 10px;
    margin-left: 0;
}

.update-available:focus {
    background: #ddd;
    box-shadow: 6px 6px 8px #0003 !important;
}

.ripple {
    background: transparent radial-gradient(closest-side at 50% 50%, rgba(12, 105, 176, 0) 0%, rgba(12, 105, 176, 0.043137254901960784) 47%, rgb(12 105 176 / 6%) 75%, rgb(12 105 176 / 11%) 100%) 0 0 no-repeat padding-box;
    position: absolute;
    width: 84px;
    height: 84px;
    z-index: -7;
    left: 50%;
    top: 50%;
    opacity: 0;
    margin: -42px 0 0 -42px;
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@-webkit-keyframes ripple {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 1;
        transform: scale3d(0, 0, 0);
    }

    50% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1);
    }

    to {
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 1;
        transform: scale3d(0, 0, 0);
    }

    50% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1);
    }

    to {
        opacity: 1;
    }
}

.update-available:hover {
    background: #fff;
}

    .update-available:hover .ripple {
        animation: ripple 0s infinite;
    }

.update-available ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.update-available > #updateOptions {
    width: 48px;
    min-width: 48px;
    text-align: center;
    margin: 0 6px !important;
    background: none;
    border: 0;
}

/* .update-available .dropdown-menu ul li:not(:last-child){margin-bottom: 10px;} */
/* #setIntervalOptions li{margin:0} */
/* .update-available > ul > li{margin-bottom: 10px;} */
.update-available #updateOptions .dropdown-item {
    /* background: #f3f3f3; */
    border-radius: 50%;
    width: 48px;
    height: 48px;
    /* color: #000; */
    border: none;
    box-shadow: 0 0 20px rgb(0 0 0 / 30%);
    text-align: center;
    margin: auto;
    line-height: 36px;
}

#updateOptions li {
    margin-bottom: 10px;
    background: #fff;
    border-radius: 50%;
}

.update-available #setIntervalOptions {
    min-width: 100px !important;
    background: #ffffff;
    box-shadow: 0 0 20px rgb(0 0 0 / 30%);
}

    .update-available #setIntervalOptions > li {
        margin-bottom: 0;
    }

    .update-available #setIntervalOptions .dropdown-item {
        display: block;
        border-radius: 0;
        box-shadow: none;
        height: auto;
        width: 100%;
        line-height: normal;
    }

/*Update Available button End*/

/* Sortable */
#sortable {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: block;
}

    #sortable li {
        float: left;
        cursor: move;
        background: #fff url(../Image/sort.svg) no-repeat 10px center;
        background-size: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: inherit;
        min-width: 100px;
        padding: 0.25rem 0.5rem;
        padding-left: 36px;
        border: 1px solid #bcdcf5;
        color: #056aa5;
        border-radius: 2px;
        margin-right: 10px;
        margin-bottom: 10px;
    }

        #sortable li.static {
            cursor: default;
            background: #e9ece7 url(../Image/sort.svg) no-repeat 10px center;
            background-size: 10px;
        }

        #sortable li .delete {
            width: 36px;
            height: 36px;
            text-align: center;
            line-height: 8px;
            margin: -6px -8px -8px 10px;
        }

            #sortable li .delete > svg {
                width: 18px;
                height: 18px;
            }

/* Sortable End */
.section-heading {
    font-size: 1.25rem;
}

.time {
    color: #888;
    font-size: 14px;
}

/*Metric Cards*/
.metric-cards .card,
.action-section .card.section1,
.action-section .card.section2,
.similar-actions .card {
    box-shadow: none;
}

.card,
.card-related {
    border: 1px solid #f1f1f1;
    box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1);
}

.metric-cards {
    box-shadow: 0 8px 15px 0 rgb(149 156 182 / 15%);
}

.similar-actions .card.section1 {
    box-shadow: 12px 11px 16px rgb(0 0 0 / 12%);
    z-index: 1;
}

.similar-actions,
.similar-actions .card {
    height: 100%;
}

.metric-cards .card-header {
    font-size: 1rem;
    font-weight: bold;
    background: none;
    border: 0;
}

.metric-cards .card-body h3 {
    font-size: 2rem;
    font-weight: bold;
}

/*Metric Cards End*/
.service-card:hover,
.card-related:hover {
    box-shadow: 0 8px 15px 0 rgb(8 8 10 / 20%);
}

.service-name,
.service-card p {
    color: #444444;
}

.service-card .status {
    width: 0.25rem;
    height: auto;
    margin-right: 10px;
}

.service-details-view {
    position: absolute;
    top: 0;
    right: -70%;
    padding-bottom: 15px;
    width: 70%;
    height: 100%;
    min-height: 100%;
    z-index: 1041;
    -webkit-box-shadow: -2px 0px 5px 1px rgba(0, 0, 0, 0.1);
    box-shadow: -2px 0px 5px 1px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-transition: right 0.25s ease-out;
    -moz-transition: right 0.25s ease-out;
    -o-transition: right 0.25s ease-out;
    transition: right 0.25s ease-out;
}

    .service-details-view .navbar-nav,
    .action-section .card-header {
        z-index: 9;
    }

    .service-details-view.collapsing {
        right: -70%;
        transition: right 0.25s ease-out;
    }

    .service-details-view.show {
        right: 0;
    }

.service-details-view {
    overflow: hidden;
    position: fixed;
}

.servicedescription-detail li a {
    color: #444;
}

.similar-actions > div,
.similar-actions .section1 > .card-body {
    height: 100%;
}

.service-detail-main {
    overflow-y: auto;
    height: calc(100% - 152px);
}

    .service-detail-main .card {
        height: auto;
    }

.service-details-view .navbar-nav {
    flex-direction: row;
}

.service-detail-main .action-name {
    line-height: 18px;
}

.customer-details-list li:not(:last-child),
.service-entity-list li:not(:last-child) {
    margin-bottom: 10px;
}

.customer-details-list .list-group-item + .list-group-item,
.service-entity-list li .list-group-item + .list-group-item {
    border-radius: inherit;
    border-top-width: 1px;
}

#customerTabContent .tab-pane .card .card-header,
#customerTabContent .tab-pane .card .card-footer {
    background-color: #ffffff;
}

#customerTabContent .tab-pane > .card-body {
    min-height: 178px;
}

.topology-chips2 .gbl-chips {
    padding: 5px 14px;
}

    .topology-chips2 .gbl-chips span:first-child {
        margin-right: 0.25rem;
        padding-right: 30px;
        position: relative;
    }

        .topology-chips2 .gbl-chips span:first-child::after {
            position: absolute;
            color: #444;
            content: "";
            bottom: 21px;
            right: 0;
        }

.topology-chips .gbl-chips span:not(:first-child) {
    margin-right: 0.25rem;
    padding-right: 30px;
    position: relative;
}

    .topology-chips .gbl-chips span:not(:first-child)::after {
        position: absolute;
        color: #444;
        content: "";
        bottom: 21px;
        right: 0;
    }

.notificationtabs {
    border: none;
}

.notifications-timelines .row section {
    padding: 0.75rem 1rem;
}

.jsonparameter {
    display: none;
}

    .jsonparameter.show {
        display: block;
    }

/* .header-parameter{display:none} */
.header-parameter.show {
    display: block;
}

.advance-options {
    display: none;
}

    .advance-options.show {
        display: block;
    }

.advance-options-btn,
.advance-options-btn:hover,
.advance-options-btn:focus {
    text-decoration: none;
}

    .advance-options-btn.hide-advance-option {
        color: #6d6d6d;
    }

.service-entity-list li {
    padding: 0;
    height: 41px;
}

    .service-entity-list li > div:last-child {
        padding: 0.25rem 0.25rem 0.25rem 1rem;
    }

.service-entity-parent {
    line-height: 31px;
    padding: 0.25rem 16px;
    background: #dddd;
    border-radius: 1rem 0 0 1rem;
    height: 41px;
}

.service-entity-children .gbl-chips {
    margin-bottom: 0;
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*Filters Tree view*/
.base-top-line {
    width: 20px;
    height: 2px;
    background: #9c9c9c;
    margin-left: -15px;
}

.node-tree .row > div {
    padding: 0;
}

ul.node-tree,
ul.node-tree ul {
    list-style: none;
    margin: 2px 0 0 0;
    padding: 0;
}

    ul.node-tree li {
        margin: 0;
        padding: 0 0 0 27px;
        border-left: 2px solid #9c9c9c;
        margin-left: -6px;
        position: relative;
    }

        ul.node-tree li:last-child {
            border-left: 0;
            box-shadow: none;
            margin-left: -0.25rem;
        }

            /* ul.node-tree li:before {position: relative;top: 25px;height: 12px;width: 30px;content: ""; display: inline-block; left: -30px;} */
            ul.node-tree li:last-child:before {
                left: -30px;
            }

        ul.node-tree li .node-card {
            margin: 16px 0 0 0;
            border: 1px solid #efefef;
        }

.filter-collapse {
    position: absolute;
    height: 16px;
    /* border:1px solid #ddd; */
    width: 10px;
    content: "";
    display: inline-block;
    background: url(../Image/minus.svg) no-repeat center center;
    background-size: 16px;
    top: 22px;
    left: -10px;
    z-index: 5;
}

    .filter-collapse.show {
        background: url(../Image/add.svg) no-repeat center center;
        background-size: 16px;
    }

.card-rounded-border {
    position: absolute;
    top: -21px;
    height: 36px;
    width: 18px;
    content: "";
    display: inline-block;
    left: -18px;
    border-bottom-left-radius: 6px;
    border-left: 2px solid #9c9c9c;
    border-bottom: 2px solid #9c9c9c;
    z-index: 1;
}

.node-tree li:last-child .node-card .card-content:before {
    left: -31px;
}

.node-tree li:last-child .node-card .card-content .card-rounded-border {
    height: 40px;
    top: -21px;
    width: 27px;
}

.node-card.has-child.open-child {
    border: 1px solid #3f49ab;
}

.dropdown-content {
    overflow: visible !important;
}

.node-card .card-action {
    background: transparent;
}

/* .node-card.open-child .card-circle {
  background: url(../Image/circle-selected.svg) no-repeat center center;
} */
.node-card.open-child .card-rounded-border,
.node-card.open-child .card-content .card-rounded-border {
    border-left: 2px solid #3f49ab;
    border-bottom: 2px solid #3f49ab;
    height: 40px;
}

ul.node-tree li.sibling-selected {
    border-left: 2px solid #3f49ab;
}

    ul.node-tree li.sibling-selected > .card-rounded-border {
        z-index: 2;
        border-left: 2px solid #3f49ab;
    }

.selectedpath .card-rounded-border {
    z-index: 2;
    border-left: 2px solid #3f49ab;
    border-bottom: 2px solid #3f49ab;
    height: 40px;
}

ul.node-tree li .node-card.open-child {
    border: 1px solid #3f49ab !important;
}

.node-card .card-action a:not(.btn) {
    margin-right: 0 !important;
    text-transform: capitalize !important;
}

ul.node-tree li:before {
    position: absolute;
    top: 0;
    height: 60px;
    width: 30px;
    content: "";
    display: inline-block;
    left: -2px;
    z-index: 2;
}

ul.node-tree li.sibling-selected:before {
    border-left: 2px solid #3f49ab;
}

.node-tree li > .node-card .card-content .card-rounded-border {
    left: -33px;
}

.node-card p {
    margin: 0;
    font-size: 14px;
    color: #000;
    padding: 8px 10px;
}

.node-card .card-action {
    padding: 16px;
}

    .node-card .card-action .child_open_node i {
        margin-right: 0px;
    }

    .node-card .card-action .child_open_node {
        display: inline-block;
    }

.feature-prepration li .node-card {
    margin: 0;
}

ul.node-tree.feature-prepration li {
    border-left: 0;
}

    ul.node-tree.feature-prepration li:before {
        display: none;
    }

.feature-prepration label {
    margin: 0;
}

ul.feature-prepration.node-tree li .node-card {
    margin: 0 0 16px 0;
}

/*Filters Tree view End*/
.or {
    position: relative;
}

    .or:after {
        position: absolute;
        content: "";
        border-bottom: 1px solid #ddd;
        width: 100%;
        left: 0;
        top: 50%;
        z-index: 0;
    }

    .or span {
        z-index: 1;
        padding: 6px;
        border-radius: 50%;
        color: #fff;
        width: 40px;
        height: 40px;
        line-height: 20px;
        font-weight: bold;
        position: relative;
    }

.steps .breadcrumb-item + .breadcrumb-item::before {
    transform: rotate(135deg) translate(14px, 0px);
}

.steps .step-count {
    font-weight: bold;
    font-size: 1.25rem;
}

.step-indicator {
    margin-top: -17px;
}

    .step-indicator span {
        width: 22px;
        height: 3px;
        background: #ddd;
        display: inline-block;
        font-size: 0;
    }

        .step-indicator span:not(:first-child) {
            margin-left: 6px;
        }

.card#general,
.card#connection_details,
.card#actions {
    box-shadow: none;
}

.input-alert {
    position: absolute;
    right: -240px;
    z-index: 99;
    width: 220px;
    border: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    top: 0;
    background: #eeeeee;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: none;
}

    .input-alert.left {
        left: -240px;
    }

    .input-alert.show {
        display: block;
    }

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.nav-top {
    width: 100%;
    padding: 0px;
    background: #fff;
    transition: 0.3s;
}

.container-tab {
    max-width: 100%;
    margin: 0 auto;
}

.w-h {
    width: 100%;
}

.tabing-section .nav-link {
    color: #4759a8;
    font-size: 14px;
    padding: 1px;
    margin: 0 5px;
}

.input-alert.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.row-m {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.input-alert .input-alert-arrow {
    border-top: 0.75rem solid transparent;
    border-right: 0.75rem solid #eeeeee !important;
    border-bottom: 0.75rem solid transparent;
    display: block;
    position: absolute;
    right: 0;
    left: -0.75rem !important;
    top: 20px;
    margin-top: -0.33rem;
    border-left: none;
    width: 0.75rem;
}

.input-alert.left .input-alert-arrow {
    transform: rotate(180deg);
    left: auto !important;
    right: -0.75rem;
}

.input-alert ul {
    padding: 0;
    margin: 0;
    list-style-position: inside;
}

    .input-alert ul li {
        line-height: 20px;
    }

        .input-alert ul li ul {
            padding-left: 10px;
        }

.dt-buttons .btn svg {
    margin-top: -5px;
}

.access-module-card .card-text {
    height: 120px;
    overflow-y: auto;
}

.access-module-card .filter-list li {
    padding: 0.25rem 0;
}

    .access-module-card .filter-list li:not(:last-child) {
        border-bottom: 1px solid #ddd;
    }

#permissionTabsContent .tab-pane {
    padding: 0;
}

.action-form .card {
    margin-bottom: 1rem;
    box-shadow: none;
}

.action-form .card-header {
    font-size: 14px;
    border-radius: 0;
    display: block;
    width: 100%;
    text-align: left;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.5px;
    height: 39px;
    padding: 0 0 0 1.5rem;
    background: transparent;
}

#correlationViewTabContent .tab-pane {
    padding: 1rem;
}

.action-form .card-header a[aria-expanded="false"] > i > svg {
    transform: rotate(180deg);
}

.info-filled {
    position: relative;
}

    .info-filled::before {
        position: absolute;
        left: 5px;
        top: 50%;
        content: "";
        background: url(../Image/checkmark--outline-green.svg) no-repeat;
        width: 16px;
        height: 16px;
        margin-top: -8px;
    }

.custom-field {
    background: url(../Image/tag.svg) no-repeat 99% center;
    background-size: 16px;
}

.custom-box-select .chosen-container .chosen-results li.custom-field.highlighted {
    background: #f0f8ff url(../Image/tag.svg) no-repeat 99% center;
    background-size: 16px;
}

.progress {
    height: 0.25rem;
}

.objective-details li {
    padding: 0.5rem;
}

    .objective-details li:not(:first-child) {
        border-top: 1px solid #ddd;
    }

.evaluation-score-section {
    padding: 8px 6px 6px;
}

.dataset-name {
    font-size: 15px;
    padding: 6px;
    background: rgb(5 134 193 / 12%);
}

    .dataset-name .badge {
        line-height: normal;
    }

.evaluated-objectives-list .card {
    box-shadow: none;
}

#objectiveTabContent .card-title,
#objectiveTabContent .card-header > span {
    line-height: 30px;
}

.compare-button,
.compare-iteration-button {
    display: none;
    bottom: 60px;
    right: 20px;
    border: none;
    box-shadow: 0 0 20px rgb(0 0 0 / 25%);
    z-index: 3;
    animation: slideInRight 0.5s ease-in-out forwards;
}

.dataset-result-section > div:not(:last-child) {
    margin-bottom: 0.5rem;
}

.enabled-objectives-list .card {
    box-shadow: none;
}

.enabled-objectives-list > li {
    min-height: 300px;
}

    .enabled-objectives-list > li .metric-cards,
    .enabled-objectives-list > li .card {
        height: 100%;
    }

.evulatedlist {
    flex-direction: row !important;
}

    .evulatedlist li {
        flex: 1;
        margin: 0 4px;
    }

    .evulatedlist .margin-right {
        margin-right: 20px;
    }

    .evulatedlist .dataset-name span {
        font-size: 16px;
    }

    .evulatedlist .dataset-name {
        background: none !important;
        position: absolute;
        left: 0;
        bottom: 4px;
    }

    .evulatedlist .aligntxt {
        text-align: right;
    }

    .evulatedlist .objective-detail .objective-detail-value > span {
        font-size: 15px;
    }

    .evulatedlist .objective-detail-value {
        background: none;
        border: 0;
        padding: 0.5rem;
        border-bottom: solid 1px #eee;
    }

    .evulatedlist .form-check-inline {
        display: inline-block;
        margin-right: 0px;
    }

    .evulatedlist .brdr-bot {
        border-bottom: none;
    }

.cust-date-box {
    margin: 30px 0 0;
    align-items: right;
    text-align: right;
    overflow: hidden;
    display: flex;
    justify-content: right;
}

.bg-wth {
    padding: 21px 8px;
}

.cust-row-header {
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

.card-body {
    -webkit-box-flex: 1;
    flex: 1 1 auto;
}

.cust-col {
    width: 100%;
}

.cust-col6 {
    width: 100%;
}

.card-heading {
    font-size: 12px;
    color: #212529;
}

.card-digits {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

    .card-digits li {
        color: #5e81f4;
        display: inline-block;
        font-size: 1.5rem;
        width: 60%;
    }

        .card-digits li:last-child {
            width: 37%;
            line-height: 0;
            font-size: 13px;
            text-align: right;
        }

.card-p {
    font-size: 10px;
}

.card-heading img {
    float: right;
}

.m_info {
    width: 18px;
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #28a745;
    display: inline-block;
}

.hdr-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .hdr-part h2 {
        font-size: 16px;
    }

#adj-flex-form .form-inline {
    display: flex;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 0px;
}

.reportrange {
    background: rgb(241 241 241) !important;
    vertical-align: top;
    padding: 0px;
    height: 40px;
    border-radius: 5px;
    width: auto;
    align-items: center;
    display: flex !important;
}

    .reportrange .form-control {
        line-height: 29px;
        font-size: 13px;
    }

#adj-flex-form .input-group-append {
    display: flex;
    margin-left: -1px;
}

.reportrange .input-group-text {
    font-size: 13px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.reportrange .input-group-text,
.reportrange .form-control {
    color: rgb(0, 0, 0);
    background-color: transparent;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    border-image: initial;
    border-bottom: none;
    border-radius: 0px;
    cursor: pointer;
    height: auto;
    box-shadow: none;
    width: auto !important;
}

.cust-date-box {
    margin: 30px 0 0;
    align-items: right;
    text-align: right;
    overflow: hidden;
    display: flex;
    justify-content: right;
}

    .cust-date-box .input-group {
        border-bottom: solid 1px #eeeeee;
    }

    .cust-date-box .form-control {
        border-bottom: none;
    }

    .cust-date-box .input-group-text {
        border-bottom: none;
    }

.navbar-nav .nav-item {
    border-color: #dddddd !important;
}

.form-control,
.form-select {
    border-bottom-color: #ced4da !important;
}

.navbar-brand {
    border-color: #dddddd !important;
}

.with-dropdown .input-group-text {
    color: var(--bs-primary);
    background-color: #ffffff !important;
    border-bottom-color: #ced4da !important;
}

.with-dropdown .form-control {
    border-left-color: #ced4da !important;
}

.widget-flat {
    min-height: 107px;
    min-width: 280px;
    width: 100%;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: none !important;
}

.cls-1 {
    fill: none;
}

.sh_active {
    display: block;
}

.re_hide {
    display: none !important;
}

.pagination {
    margin: 0;
}

    .pagination li:hover {
        cursor: pointer;
    }

.header_wrap {
    padding: 30px 0;
}

.num_rows {
    width: 50%;
}

.tb_search {
    width: 20%;
    float: right;
}

.pagination-container {
    width: 69%;
    float: left;
}

.rows_count {
    width: 70%;
    color: #999;
}

.pg {
    display: flex;
    justify-content: flex-end;
    width: 425px;
    align-items: center;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}

.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.ft-bt {
    width: 100%;
    text-align: right;
}

.box-xd-no {
    box-shadow: none !important;
}

.saveDev {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

    .saveDev button {
        width: 49.5%;
    }

.addcredentials {
    display: none;
}

.credentials-create-show, .deployments-create-show {
    width: 100%;
}

.user-create-show {
    display: none;
    width: 100%;
}

.redploy {
    background-color: var(--bs-primary);
    color: #fff;
    font-size: 10px;
    border: 1px solid #0786c1;
}

    .redploy:hover {
        background-color: none !important;
        color: #000 !important;
        border: 1px solid #0786c1;
    }

.deployment-tab2 {
    display: none;
}

.tabbing-bt {
    width: 100%;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 25px;
    display: flex;
}

    .tabbing-bt button {
        background: none;
    }

.cust {
    background: #0786c1 !important;
    width: 100%;
    margin-bottom: 21px;
    text-align: left;
    padding: 16px 14px;
}

.fl {
    width: 95%;
    display: inline-block;
}

.fld {
    width: 100%;
}

.cls-11 {
    fill: #000000;
}

.cls-22 {
    fill: none;
}

.gray-chips {
    background-color: rgba(0,0,0,.03);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    height: 100%
}

    .gray-chips img {
        max-width: 40px;
        max-height: 40px;
    }

    .gray-chips p {
        padding: 15px;
        border-radius: 10px;
        font-size: 16px;
        margin-bottom: 0;
    }

    .gray-chips.small {
        margin-bottom: 7px;
        font-size: 13px;
        padding: 0;
        text-align: left;
    }

        .gray-chips.small > a {
            padding: 0.5rem 1rem;
            display: flex;
            justify-content: space-between;
        }


.gray-chip-content {
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
}

.ins {
    width: 16px;
    margin-right: 4px;
    margin-top: -2px;
}

.with-out-chip {
    margin-bottom: 8px;
    font-size: 14px;
    padding: 0;
    color: #212529;
    text-align: left;
}

.mg-b-0 {
    margin-bottom: 0px !important;
}

.sub-int {
    font-size: 13px;
    font-style: italic;
    margin-left: 5px;
    font-weight: normal;
}

.top-int {
    font-size: 16px;
    font-weight: 600;
}

.service-card-home {
    text-align: center;
    padding: 50px 0 0 0;
    margin: 50px 0 0 0;
}

    .service-card-home .card-icon {
        position: absolute;
        left: 50%;
        right: 0;
        top: -40px;
        text-align: center;
        margin-left: -40px;
    }

    .service-card-home .card-header {
        background: #fff;
        border: none;
        font-size: 20px;
        font-weight: 600;
        color: var(--heading-color);
        font-family: var(--bold-font);
    }

    .service-card-home .card-footer {
        background: #fff;
        padding: 1rem;
    }

    .service-card-home .card-icon span {
        border: 1px solid #ddd;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        text-align: center;
        box-shadow: 0 8px 12px 0 rgb(149 156 182 / 30%);
        background: #ecf7fd;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .service-card-home .card-icon span svg {
            max-width: 34px;
            max-height: 24px;
            vertical-align: middle;
            display: inline-block;
        }

    .service-card-home p {
        margin-top: 1rem;
    }

    .service-card-home .card-body {
        height: 140px;
        padding: 0.5rem 1rem;
    }

.modal.fade.show .modal-dialog.modal-dialog-slideout {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    flex-flow: column;
}

.modal-dialog-slideout {
    min-height: 100%;
    margin: 0 0 0 auto;
    background: #fff;
}

.modal.fade .modal-dialog.modal-dialog-slideout {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
}

.manage-dd {
    display: flex;
    align-items: center;
}

.ft-bt .btn-out-pri {
    color: #0786c1;
    border-color: #0786c1;
    border: 1px solid;
    padding: 5px 16px;
}

    .ft-bt .btn-out-pri:hover {
        color: white;
        background-color: #0786c1;
    }

.btn:active {
    background-color: #0786c1 !important;
}

.ft-bt .btn-out-pri:active {
    color: white;
    background-color: #0d6efd;
}

.selectedBtn {
    border: 0;
    border-bottom: 2px solid #0786c1;
    border-style: solid;
    color: #0786c1;
    font-weight: "normal";
}

.dropdown-toggle::after,
.breadcrumb-item + .breadcrumb-item::before,
.topology-chips2 .gbl-chips span:first-child::after,
.topology-chips .gbl-chips span:not(:first-child)::after {
    border-top: 2px solid;
    border-left: 2px solid;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    transform: rotate(225deg);
    width: 8px;
    height: 8px;
    transition: all 0.2s;
}

.info-svg {
    margin-left: 5px;
}

    .info-svg svg {
        vertical-align: sub;
    }

.progress-bar.sap {
    margin: 0px 1px;
}

.password-card {
    width: 40%;
    margin-top: 20px;
    padding: 2px 10px 8px;
    display: flex;
    box-shadow: 0px 0px 2px silver;
    border: none;
}

.unauthorized {
    display: flex;
    justify-content: center !important;
    align-items: center;
}

.alert-danger {
    color: rgb(255, 77, 0);
}

.noData {
    margin-left: 20px;
    margin-top: -14px;
}

.equalSizeColumn {
    width: 12%;
}

.disable-link {
    pointer-events: none;
    cursor: default;
    opacity: 0.4;
}

.bottom-line {
    margin: 0 -16px;
    padding: 0.5rem 1rem;
    border-radius: 0;
    position: relative;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #e8e8e8;
}

.upload {
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    align-items: end
}

.uploadspan {
    font-style: oblique;
    margin-left: 11px;
    font-weight: revert;
}

.btnupload {
    margin-left: 31px;
    line-height: 17px;
    font-size: 12px;
}

/*Start For Integration*/
.card-body-integration {
    min-height: 330px;
    padding: 16px;
}

.attachmentInfo {
    padding: 15px 15px 5px;
}

    .attachmentInfo span {
        margin-right: 5px;
        font-weight: 900;
    }
/*End For Integration*/
/*Start for alert message*/
.highLightError {
    color: #dc3545 !important;
    outline: 1px solid !important;
}

#myAlertModal .modal-header {
    background: var(--bs-primary);
    color: #fff;
    padding: .4rem 1rem;
}

#myAlertModal .modal-footer {
    border-top: none;
    padding: .5rem;
}
/*End for alert message*/
/*Start For Loader*/
@keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader {
    position: fixed;
    inset: 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 153, 255, 0.2);
    z-index: 500;
}

    .loader .rotate-infinite {
        display: block;
        position: relative;
        height: 42px;
        width: 42px;
        box-sizing: border-box;
    }

.rotate-infinite {
    animation: rotate-infinite infinite 1000ms linear;
}

.loader .rotate-infinite .inner-1 {
    display: block;
    position: relative;
    height: 42px;
    width: 42px;
    color: rgb(0, 206, 209);
    border-radius: 50%;
    border-width: 6px;
    border-style: solid;
    border-color: rgb(0, 206, 209) transparent transparent;
    border-image: initial;
    box-sizing: border-box;
    opacity: 1;
}

.loader .rotate-infinite .inner-2 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgb(0, 206, 209);
    box-sizing: border-box;
    opacity: 1;
}

.hide {
    display: none;
}

#dvChangePassword.checkbox-outlined.hide {
    display: none;
}
/*End For Loader*/


/*start kendo grid design*/

table, .table-striped > tbody > tr:nth-of-type(odd) > * {
    color: var(--base-border2) !important;
}

.table-struct .k-grid-toolbar {
    border-width: 0;
}

.table-struct .k-grid {
    border: 0;
    background: none;
}

.table-struct .k-input-icon {
    width: 2.28571428em;
}

.table-struct .k-toolbar .k-input {
    border: 0;
}

.table-struct .k-toolbar .k-textbox {
    border: 1px solid var(--form-field-border);
    border-radius: 0.25rem;
    padding: 4px;
}

.table-struct .k-grid-pager {
    background: none;
    border-width: 1px 0px 1px 0px;
    border-color: var(--base-border2);
}

.table-struct .k-grid .k-table-thead {
    font-weight: bold;
}

.table-struct .k-grid .k-grid-header .k-table-th {
    background-color: var(--bg-base);
}



.k-grid .k-grouping-row .k-icon, .k-grid .k-grouping-row .k-svg-icon {
    color: var(--running-color);
}

.k-grid-pager {
    background-color: var(--bg-table);
    border-bottom-color: var(--base-border2);
}

.k-grid-header, .k-grouping-header, .k-grid-add-row, .k-grid-footer {
    color: var(--running-color);
    background-color: #fafafa;
}

.k-grid-pager {
    color: var(--running-color)
}

.k-button-flat-primary {
    color: var(--primary);
}

.k-pager-numbers-wrap {
    background: var(--form-field-bg);
    border-radius: 4px
}

    .k-pager-numbers-wrap .k-button {
        border: 1px;
        border-style: solid;
        border-color: var(--form-field-border) !important;
        margin-left: -1px;
        color: var(--primary)
    }

    .k-pager-numbers-wrap .k-pager-first {
        border-radius: 4px 0 0 4px;
    }

    .k-pager-numbers-wrap .k-pager-last {
        border-radius: 0 4px 4px 0;
    }

.k-pager-sizes .k-picker-solid {
    height: 30px
}

.k-master-row.k-table-row.k-selected td.k-grid-content-sticky, .k-master-row.k-table-row.k-selected .k-table-td.k-grid-row-sticky, .k-master-row.k-table-row td.k-grid-content-sticky.k-selected, .k-master-row.k-table-row .k-table-td.k-grid-content-sticky.k-selected,
.k-grid td.k-selected, .k-grid .k-table-row.k-selected > td, .k-grid .k-table-td.k-selected, .k-grid .k-table-row.k-selected > .k-table-td {
    background-color: var(--hcl-blue10);
}

.k-pager-wrap .k-link.k-pager-nav, .k-pager-nav {
    color: var(--primary);
}

    .k-pager-wrap .k-link, .k-pager-nav.k-button-flat {
        border: 1px solid var(--form-field-border) !important;
        background: var(--form-field-bg) !important;
    }

.k-pager-md {
    gap: 0
}

.k-button-md.k-icon-button {
    padding: 6px 5px;
}

.k-pager-wrap .k-link, .k-pager-nav.k-button-flat {
    margin-left: -1px
}

.k-grid-pager .k-pager-first {
    border-radius: 4px 0 0 4px;
}

.k-grid-pager .k-pager-last {
    border-radius: 0 4px 4px 0;
}

.k-button-solid-primary {
    border-color: #0786c1 !important;
    background-color: #0786c1 !important;
}

.k-grid-content {
    overflow-y: hidden !important;
}

.k-grid-header {
    padding-right: 1px !important;
    font-weight: bold;
}

.k-grid-header-wrap {
    border-top-width: 1px
}

.k-grid td, .k-grid .k-table-td {
    border-block-end-width: 1px;
    word-wrap: break-word;
}

    .k-grid td:last-child, .k-grid .k-table-td:last-child {
        border-inline-end-width: 1px;
    }

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f8f8;
}

.k-grid .k-table-row.k-table-alt-row {
    background-color: #fff !important;
}

tbody.k-table-tbody tr:nth-of-type(odd) {
    background-color: #f8f8f8 !important;
}

tbody, td, tfoot, th, thead, tr, .table th, .table td, .table > :not(:first-child) {
    background: none !important;
}

k-grid-header .k-grid-filter.k-active, .k-grid-header .k-header-column-menu.k-active, .k-grid-header .k-grid-header-menu.k-active, .k-grid-header .k-hierarchy-cell .k-icon.k-active, .k-grid-header .k-hierarchy-cell .k-svg-icon.k-active {
    background-color: var(--bs-primary) !important;
}

.k-grid-header .k-sort-icon, .k-grid-header .k-sort-order {
    color: var(--bs-primary) !important;
}

.k-list-item.k-selected:hover, .k-selected.k-list-optionlabel:hover, .k-list-item.k-selected.k-hover, .k-selected.k-hover.k-list-optionlabel {
    background-color: var(--bs-primary) !important;
}

.k-list-item.k-selected, .k-selected.k-list-optionlabel {
    background-color: var(--bs-primary) !important;
}

.k-grid .k-table {
    background-color: #fff !important;
}

.k-grid-md .k-table-th {
    padding-block: 16px !important;
}

.k-grid .k-grid-header {
    border-width: 1px;
}

.k-checkbox:checked, .k-checkbox.k-checked {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.gridSelectWidth {
    width: 40px !important;
}
/*end kendo grid design*/
.bootstrap-tagsinput {
    line-height: 1;
    padding: 0.375rem 0.75rem 0.275rem;
    display: block !important;
    min-height: 37px;
}

    .bootstrap-tagsinput .tag {
        color: #000 !important;
        background: #f5fbff;
        padding: 5px 5px 5px;
        line-height: 1;
        border: 1px solid #a9ceed;
        margin-top: 0px;
        display: inline-block;
        border-radius: 3px;
        margin-bottom: 4px;
    }
/*start validation alert design*/
.cls-1 {
    fill: none;
}

.toasterMSG {
    display: none;
    max-width: 90%;
    padding: 8px 10px;
    position: fixed;
    z-index: 999999999;
    transform: translate(-50%, -50%);
    top: 21%;
    left: 50%;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    width: max-content;
    min-width: 400px;
}

    .toasterMSG.toastsuccess {
        background-color: #e7f4e7;
        border-left: 6px solid #4caf50
    }

    .toasterMSG.toastdanger {
        background-color: #f2dadc;
        border-left: 6px solid #dc3545
    }

    .toasterMSG.toastwarning {
        background-color: #fff2db;
        border-left: 6px solid #fbaa23
    }


.msg {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
}

.Tmsg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

span.typeMsg {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 8px;
}

.toasterMSG.toastsuccess .Tmsg span.typeMsg {
    background: url('../images/checkmark--filled.svg') center center;
    background-size: 18px 18px;
    background-repeat: no-repeat;
}

.toasterMSG.toastdanger .Tmsg span.typeMsg {
    background: url('../images/warning--filled.svg') center center;
    background-size: 18px 18px;
    background-repeat: no-repeat;
}

.toasterMSG.toastwarning .Tmsg span.typeMsg {
    background: url(../images/warning--alt.svg) center center;
    background-size: 18px 18px;
    background-repeat: no-repeat;
}
/*end validation alert design*/

.mt1 {
    margin-top: -1.3rem;
}

.clsGeneratePassword {
    margin-top: 32px;
}
/* Custom Kendo Dropdown start */
.k-picker-solid {
    border: 0 !important;
    border-bottom: 1px solid #ddd !important;
    border-radius: 0 !important;
    background: none !important;
}


.checkbox-outlined {
    padding: 9px 9px 10px;
    display: flex;
    border-radius: 0;
    border: 1px solid #ced4da;
    min-width: 30px;
    align-items: center;
    justify-content: center;
}

    .checkbox-outlined > div {
        padding: 6px 10px;
        border-right: 1px solid #ced4da;
        align-items: center;
        display: flex;
    }

    .checkbox-outlined .form-check-label {
        padding: 6px 10px
    }

    .checkbox-outlined .form-check-input {
        margin: 0;
    }

.inline-group-label {
    display: flex;
    align-items: center;
    padding: 2px;
    width: 100%;
    margin: 0;
}

.inlineActionBt {
    width: 100%;
    display: flex;
    justify-content: center;
}

.actionBT {
    width: 92px;
    display: flex;
    justify-content: space-between;
    margin-left: 3px;
}

.generate-password {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.set-password {
    width: 100%;
}

.password-dialog {
    height: auto !important;
    max-height: 500px !important;
}

.k-dialog {
    z-index: 1050 !important;
}

.k-window {
    left: auto !important;
    top: 0px !important;
    z-index: 10004;
    right: 0px;
    height: 100%;
    width: 80%;
}

.alert-z-index {
    z-index: 10015;
}

.customDatepicker {
    padding: 5px 5px !important;
}

.k-calendar .k-calendar-td.k-selected .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected .k-link {
    background-color: var(--bs-primary) !important;
}

.k-calendar .k-calendar-td.k-selected:hover .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected:hover .k-link, .k-calendar .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected.k-hover .k-link {
    background-color: var(--bs-primary) !important;
}

.k-button-flat-primary, .k-calendar .k-calendar-view .k-today {
    color: var(--bs-primary) !important;
}
/*end kendo grid design*/
/* Errors pages Start */
.error_cont {
    width: 100%;
    height: calc(100vh - 65px);
    display: flex;
    justify-content: left;
    align-items: center;
    background-image: url("../images/bg404.jpg");
    background-color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.err_svg {
    width: 350px;
    height: 350px;
    background: #f5f4f9;
    display: flex;
    justify-content: center;
    border-radius: 50%;
}

    .err_svg span {
        align-items: center;
        display: flex;
    }

.seticon {
    fill: #181926;
    width: 150px;
    height: 150px;
}

.err_text {
    position: relative;
    margin-top: 36px;
    text-align: center;
    margin-left: 10%;
}

    .err_text h2 {
        font-size: 100px;
        color: #27447e;
        margin: 0;
    }

    .err_text h3 {
        font-size: 33px;
        color: #181926;
        font-weight: bold;
    }

    .err_text p {
        color: #8d9193;
        font-size: 17px;
    }

    .err_text a {
        font-size: 18px;
        color: #fff;
        font-weight: bold;
        background: #27447e;
        padding: 7px 21px;
        border-radius: 30px;
        margin-top: 10px;
        display: inline-block;
    }

@media (max-device-width: 991px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    .err_text {
        margin-left: 5%;
    }

    .error_cont {
        width: 100%;
        background: #fff;
        height: 100vh;
        display: flex;
        justify-content: left;
        align-items: center;
        background-image: url("../images/bg404.jpg");
        background-color: #cccccc;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .err_text p {
        font-size: 13px;
    }

    .err_text h2 {
        font-size: 60px;
    }

    .err_text h3 {
        font-size: 26px;
    }
}



@media (max-device-width: 991px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    .err_text {
        margin: 31% auto auto;
    }

    .error_cont {
        width: 100%;
        background: #fff;
        height: 100vh;
        display: flex;
        justify-content: left;
        align-items: baseline;
        background-image: url("../images/bg4042.jpg");
        background-color: #cccccc;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .err_text p {
        font-size: 13px;
    }

    .err_text h2 {
        font-size: 60px;
    }

    .err_text h3 {
        font-size: 26px;
    }
}

#divJobData .k-table colgroup col:first-child {
    width: 4px !important;
    border: 1px solid #00ff00;
}

#divJobData .k-table colgroup col:nth-child(2) {
    width: 4% !important;
}

#divJobData .k-table colgroup col:nth-child(3) {
    width: 8% !important;
}

#divJobData .k-table colgroup col:nth-child(4), #divJobData .k-table colgroup col:nth-child(9), #divJobData .k-table colgroup col:nth-child(5) {
    width: 10% !important;
}

#divJobData .k-table colgroup col:nth-child(10) {
    width: 14% !important;
}

#divJobData .k-table colgroup col:nth-child(6) {
    width: 12% !important;
}

#divJobData .k-table colgroup col:nth-child(7), #divJobData .k-table colgroup col:nth-child(8) {
    width: 16% !important;
}

.divjobTooltip {
    max-width: 250px;
    width: max-content;
}
/* Errors pages END */
/*end kendo grid design*/
.adjBt {
    margin-top: 32px
}

.dropdown-left30 {
    left: -30px !important;
}

.min-height330 {
    min-height: 330px;
}

.element-inlineblock {
    display: inline-block !important;
}

.clsSelect {
    padding: 4px 0px 4px !important;
}

.form-control:disabled {
    color: #85878b !important;
    background-color: #f2f4f5 !important;
}

.k-disabled {
    background-color: transparent !important;
    border-color: transparent !important;
    pointer-events: auto !important;
    cursor: not-allowed !important;
}


.uploadbtn {
    padding: 8px 8px;
}

.right-align-image {
    text-align: right;
    padding-right: 16px;
}

.overFlow {
    overflow: hidden
}
/*start status wise color code class*/
.disabledJob {
    background-color: #9FA6B2 !important;
}

.notInitiated {
    background-color: #dee8f8 !important;
}


.initiated, .updateAvailable {
    background-color: #fd7e14 !important;
}

.inProgress {
    background-color: #ffc107 !important;
}

.completed, .activeUser {
    background-color: #198754 !important;
}

.failed, .lockedUser {
    background-color: #dc3545 !important;
}

.reInitiated {
    background-color: #0d6efd !important;
}

.legendBox {
    width: 15px;
    height: 15px;
    margin-right: 6px;
}

.tableLegends {
    margin: 0px 0px 14px;
    width: 100%;
}

    .tableLegends ul {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: end;
    }

        .tableLegends ul li {
            display: flex;
            align-items: center;
            margin-right: 14px;
        }

/*end status wise color code class*/

.btn-child-refresh {
    position: absolute !important;
    right: 0px;
    margin-right: 10px;
}

.header-12per {
    width: 12%;
}

.header-14per {
    width: 14%;
}

.header-8per {
    width: 8%;
}

.header-40per {
    width: 40%;
}

.header-60per {
    width: 60%;
}

.header-25per {
    width: 25%;
}

.header-15per {
    width: 15%;
}

.headerStatus {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 15px;
    flex-direction: row-reverse;
}

.gap {
    margin-right: 10px;
}

.selectHealthCheck {
    width: 32.2%;
    margin-bottom: 15px;
}

/*Ashish Kumar UI Issues 11/07/2023*/

#page-content-wrapper {
    min-height: calc(100vh - 104px);
    background: #fff;
}

.bootstrap-tagsinput {
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid #ccc !important;
    box-shadow: none !important;
    line-height: 22px !important;
    border-radius: 0 !important;
    padding: 0px 6px !important
}

.bottom-line {
    border-bottom: 1px solid #e8e8e8;
    border-radius: 0;
    margin: 0 -16px;
    padding: 0.5rem 1rem;
    position: relative;
}

.tools-section {
    margin-top: 30px
}

.k-window-title {
    font-weight: bold;
}

div.k-grid-norecords {
    padding: 10px;
}

.gray-chips.small > a > span > strong {
    font-weight: 640 !important;
}

.btn.comBt:active {
    background-color: transparent !important
}

.k-column-title {
    font-weight: bold !important;
    color: #000 !important;
}

.select-single-dv span.k-disabled {
    border-bottom-color: #ced4da !important;
    background: #ecedee !important;
    cursor: auto !important;
}

.w-100.select-single-dv {
    width: 98.5% !important
}

/*Table Classes*/

.actionCol {
    width: 180px
}

.k-button-md.k-icon-button.btn-primary {
    color: #ffffff !important;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.hc-kpiName-width {
    width: 22%;
}

.hc-status-width {
    width: 10%;
}

.hc-description-width {
    width: 50%;
}

.hc-createdDate-width {
    width: 18%;
}

.date-label {
    width: 100%;
    padding: 0px 15px 15px;
    display: flex;
    align-items: center;
    justify-content: end;
}

    .date-label label {
        font-size: 14px;
    }

.Kendo-grid-header-align-center {
    justify-content: center
}

.login-footer {
    position: fixed;
    width: 100%;
    bottom: 0
}

.is-width-25 {
    width: 25%;
}

.is-width-14 {
    width: 14%;
}

.is-width-13 {
    width: 13%;
}

.is-width-8 {
    width: 8%;
}

.is-width-40 {
    width: 40%;
}

.headerStr {
    display: flex;
    align-items: baseline;
}

.text-width {
    max-width: 100%
}

.headerName {
    white-space: nowrap;
}

.moreAction {
    display: flex;
    align-items: center;
    gap: 4px
}

.multi_action > .btn-outline-primary.dropdown-toggle.show {
    color: #ffffff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.multi_action > .dropdown-toggle::after {
    display: none
}

.k-grid .k-grid-container {
    min-height: 60px;
}

.k-button-solid-base.k-selected {
    color: white;
    border-color: #0786c1 !important;
    background-color: #0786c1 !important;
}

.k-calendar .k-calendar-view .k-today {
    color: #0786c1 !important;
}

.k-button-flat-primary, .k-time-header .k-time-now {
    color: #0786c1 !important;
}

.swal2-container {
    z-index: 999999999 !important;
}

.table-striped2 tbody tr:nth-child(odd) {
    background-color: #f8f8f8 !important;
}

.table.table-striped2 > thead {
    background: #fff !important;
    border-top: 1px solid #ddd;
}

    .table.table-striped2 > thead tr th {
        padding: 11px 8px;
    }

.bs-tooltip-top {
    z-index: 999999999;
}

.header-60per {
    width: 60%;
}

.k-calendar .k-calendar-td.k-selected .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected .k-link {
    background-color: #0786c1 !important;
}

.rotateSVG > svg {
    width: 20px;
    fill: #fff
}

.k-button-solid-base.btn-primary {
    color: #ffffff !important;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.multi_action {
    display: flex;
    gap: 10px;
    align-items: center;
}

    .multi_action a {
        display: flex;
        gap: 6px;
        align-items: center;
    }

.header-10per {
    width: 10%;
}

.notes-declaration li {
    list-style: disc;
    list-style-position: inside;
}

.tooltip {
    z-index: 9999999;
}

.credentials_list select.k-dropdown.k-picker.k-picker-solid.k-dropdown-list.k-rounded-md.k-picker-md {
    display: none !important;
}

.credentials_list span.k-pager-info.k-label {
    display: block !important;
}

.credentials_list .k-pager-numbers {
    display: block !important;
}

#historyData select.k-dropdown.k-picker.k-picker-solid.k-dropdown-list.k-rounded-md.k-picker-md {
    display: none !important;
}

#historyData .k-pager-numbers {
    display: block !important;
}

#historyData span.k-pager-info.k-label {
    display: block !important;
}

.k-tooltip {
    border-color: rgba(0, 0, 0, 1) !important;
    background-color: rgba(0, 0, 0, 1) !important;
}

.k-popup {
    box-shadow: none !important;
}

.absLable {
    position: absolute;
    right: 110px;
    top: 12px;
}

.btn.comBt > svg {
    width: 16px;
    height: 16px
}

.is-width-6 {
    width: 6%;
}

.is-width-30 {
    width: 30%;
}

.is-width-12 {
    width: 12%;
}

.logoContainer {
    background-color: transparent;
    padding: 14px 0px 14px 16px;
    margin-right: 0px;
}

    .logoContainer img {
        border-right: 1px solid #000;
        padding-right: 26px;
        margin-right: 26px;
    }

.field-icon {
    float: right;
    margin-top: -28px;
    margin-right: 15px;
}

.bootstrap-tagsinput > span.tag:before {
    content: "";
}

@media (max-width: 1600px) {
    .btn-sm {
        padding: 0.25rem 0.25rem;
    }
}

.max-50 {
    max-width: 50%;
}

.k-grid .k-table-th:first-child, .k-grid td:first-child, .k-grid .k-table-td:first-child {
    border-inline-start-width: 1px !important;
}

.k-grid-content .k-table-row:last-child > td, .k-grid-content .k-table-row:last-child > .k-table-td, .k-grid-content-locked .k-table-row:last-child > td, .k-grid-content-locked .k-table-row:last-child > .k-table-td {
    border-bottom-width: 1px !important;
}

div.k-grid-norecords {
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.08);
}

.cancelbuttonBackground {
    enable-background: new 0 0 32 32;
}

@media (max-width: 1440px) {
    .navbar-nav .nav-item .nav-link {
        font-size: 15px;
        padding: 12px 14px !important;
        min-width: 90px;
    }
    li.nav-item.dropdown .dropdown-menu .dropdown-item {
        font-size: 15px;
    }
}
/*Start for notification bell*/
.notification-box a {
    position: relative;
    padding: 6px;
    display: block;
    color: #55585c;
}

    .notification-box a:hover {
        color: var(--bs-primary) !important;
    }

.notification-num {
    position: absolute;
    top: 2px;
    right: -3px;
    text-align: center;
    font-size: 9px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: #dc3545;
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
}
/*End for notification bell*/

img.brandLogo {
    width: 175px;
}

.integration-actionCol {
    width: 170px
}

@media (max-width: 1380px) {
    img.brandLogo {
        width: 148px;
    }

    .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }
    li.nav-item.dropdown .dropdown-menu .dropdown-item {
        font-size: 14px;
    }

    .mega-content .list-group-item, .nav-link {
        font-size: 15px;
    }
}

@media (max-width: 1280px) {
    .navbar-nav .nav-item .nav-link {
        font-size: 13px;
        padding: 12px 12px !important;
        min-width: 80px;
    }
    li.nav-item.dropdown .dropdown-menu .dropdown-item {
        font-size: 13px;
    }

    img.brandLogo {
        width: 128px;
    }

    .logoContainer img {
        padding-right: 16px;
        margin-right: 16px;
    }

    #notificationLink svg {
        width: 18px;
        height: 18px;
    }

    .notification-num {
        font-size: 8px;
        width: 18px;
        height: 18px;
        line-height: 18px;
    }
}

@media (max-width: 1100px) {
    
    .logoContainer img {
        padding-right: 10px;
    }

    .nav-item svg {
        width: 14px;
        height: 14px;
    }

    .mega-content .list-group-item, .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    #page-content-wrapper {
        margin-top: 54px;
    }
}


.anchorLink {
    color: var(--bs-primary);
    text-decoration: none;
    cursor: pointer;
}

.integration-actionCol .btn:not(:last-child) {
    padding-right: 5px;
}

#dvUserMasterInfo .k-table colgroup col:first-child {
    width: 4px !important;
    border: 1px solid #00ff00;
}

#divIntegrationData .k-table colgroup col:first-child {
    width: 4px !important;
    border: 1px solid #00ff00;
}

@media (min-width: 1600px) {
    .integration-actionCol {
        width: 220px
    }
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

.field-icon {
    float: right;
    margin-top: -28px;
    margin-right: 15px;
    cursor: pointer;
    position: relative;
    z-index: 999;
}

.dvPasswordContainer {
    width: 100%;
    flex: 1;
    margin-right: 10px;
}

.dvComponentConfirgurationPasswordContainer {
    width: 100%;
}

.form-control.passwordInputField {
    padding: .375rem 2.5rem .375rem .75rem;
}

.close-icon {
    cursor: pointer;
}

.k-input-inner.kendo-input-box {
    background: #f2f4f5;
    padding-block: 8px !important;
}

.k-input-solid {
    border: 0 !important;
    border-bottom: 1px solid #ced4da !important;
    border-radius: 0 !important;
}

.footerTemplate-NewItem {
    text-align: center !important;
    background-color: rgba(0,0,0,.03);
    border: 1px solid rgba(0, 0, 0, .125);
    padding: .50rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.k-grid .switch-holder,
.k-grid .switch-holderPopUp {
    background: #69bd45;
    padding: 6px;
    border-radius: 4px;
    border: none;
    position: absolute;
    right: 110px;
}

.k-grid .switch-holder:hover,
.k-grid .switch-holderPopUp:hover {
    background: #69bd45;
}

.k-grid .switch-holder.live-stopped,
.k-grid .switch-holderPopUp.live-stoppedPopUp {
    background: #d3d3d3 !important;
}

.k-grid .switch-holder.live-active,
.k-grid .switch-holderPopUp.live-activePopUp {
    background: #69bd45 !important;
}

.k-grid .switch-holder .live-icon svg,
.k-grid .switch-holderPopUp .live-iconPopUp svg {
    animation: rotate 1.4s linear infinite;
    -webkit-animation: rotate 1.4s linear infinite;
    -moz-animation: rotate 1.4s linear infinite;
}

.k-grid .switch-holder .paused svg,
.k-grid .switch-holderPopUp .pausedPopUp svg {
    animation: none !important;
}

.secondary-switch-holder {
    background: #69bd45 !important;
    padding: 6px;
    border-radius: 4px !important;
    border: none;
}

.secondary-switch-holder:hover {
    background: #69bd45;
}

.secondary-switch-holder.secondary-live-stopped {
    background: #d3d3d3 !important;
}

.secondary-switch-holder.secondary-live-active {
    background: #69bd45 !important;
}

.secondary-switch-holder .secondary-live-icon svg {
    fill: #424242 !important;
    animation: rotate 1.4s linear infinite;
    -webkit-animation: rotate 1.4s linear infinite;
    -moz-animation: rotate 1.4s linear infinite;
}

.secondary-switch-holder .paused svg {
    animation: none !important;
}

.secondary-switch-holder:focus,
.secondary-switch-holder:active {
    box-shadow: none !important;
    outline: none !important;
}
/* ===== Outer custom section (e.g., SNMP V3) ===== */
.custom-section-header {
    background-color: #e6f3ff; /* Light blue */
    border-bottom: 1px solid #dbeafe;
}

/* ===== Collapsible toggle area ===== */
.collapse-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between; /* Push caret to far right */
    align-items: center;
    width: 100%;
}

/* ===== Caret rotation ===== */
.caret-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.collapse-toggle[aria-expanded="true"] .caret-icon {
    transform: rotate(0deg);
}

.collapse-toggle[aria-expanded="false"] .caret-icon,
.collapse-toggle.collapsed .caret-icon {
    transform: rotate(180deg);
}

/* ===== Toolbar (Add Item button) ===== */
.subcontrol-toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

/* ===== Each Item card ===== */
.sub-item .card-header {
    background-color: #f8f9fa; /* Subtle grey */
    display: flex;
    justify-content: space-between; /* Push caret to far right in items too */
    align-items: center;
}

/* ===== Buttons inside headers ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

    .header-actions .btn {
        padding: 0.125rem 0.375rem;
        line-height: 1.2;
    }

/* ===== Highlight first item ===== */
.highlight-first-item {
    background-color: #e6f3ff;
}


.basedOnOptions {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
}

.optionsRadio {
    display: flex;
    align-items: center;
    padding: 0px 16px 16px;
    gap: 18px;
}

.addDataSource {
    display: flex;
    justify-content: left;
    align-items: end;
}

.bs-stepper {
    padding: 0 8px;
}

.minWidth {
    width: 75px;
}

.cardSiectionBG {
    background: #f8f9fa;
    padding: 24px 16px;
}
.classificationSection h4 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 500;
    position: relative;
    margin-bottom: 12px;
}
.classificationSection p {
    font-size: 16px;
    line-height: 1;
    font-weight: 400; margin:0
}

.classificationSection h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 50px;
    background-color: var(--bs-primary)
}
.classificationSection {
    padding: 16px 28px !important
}
.card-body-integration.cardSiectionBG {
    min-height: auto;
    background: #f8f9fa;
    padding: 24px 16px;
}
.accordionHeading{padding:10px 12px}

.btn-light-withLightBG, .btn-light-withLightBG:active{
    color: #000;
    background-color: #e9ecef;
    border-color: #e9ecef;
    white-space: nowrap;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.tagify.form-control {
    border: 0;
    border-bottom: 1px solid #ced4da !important;
}
.tagify__input {
    margin: 2px !important;
}
.tagify__tag {
    margin-block: 2px !important;
}