@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
}

.system-debugger {
    background-color: #0C111D;
    width: 100%;
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    position: fixed;
    left: 0;
    bottom: 0;
    height: 400px;
    min-height: 80px;
    z-index: 1001;
}

.system-debugger.in-new-window {
    background: #0C111D;
    width: 69.6%;
    overflow-y: auto;
    z-index: 1001;
    position: fixed;
    box-shadow: 0px 1px 24px 0px rgba(24, 34, 48, 0.08);
    bottom: 0;
    min-height: 80px;
    left: 0;
    border-radius: 8px;
}

.system-debugger a {
    text-decoration: none;
    color: #D0D5DD;
}

.system-debugger.backToDefault {
    bottom: 0;
    width: 100% !important;
    height: 400px;
    transform: translate(0px) !important;
}


/* debugger-topbar */
.debugger-topbar {
    background-color: #0C111D;
    border-bottom: solid 1px #344054;
    padding: 0 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    place-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.debugger-topbar .left-icon,
.debugger-topbar .right-icon,
.debugger-topbar .left-icon a,
.debugger-topbar .right-icon a {
    display: flex;
}

.debugger-topbar .left-icon a img,
.debugger-topbar .right-icon a img {
    width: 16px;
    height: 16px;
}

.debugger-topbar .right-icon {
    gap: 12px;
}

.debugger-topbar .debugger-tab-nav {
    place-content: center;
}

/* debugger-tab-nav */
.debugger-tab-nav {
    display: flex;
    width: 100%;
    margin-bottom: -1px;
}

.debugger-tab-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
}

.debugger-tab-nav li {
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    color: #98a2b3;
    font-weight: 500;
}

.debugger-tab-nav li a {
    color: #98a2b3;
    text-decoration: none;
    display: inline-block;
    padding:1px 4px 6px;
    border-bottom: solid 2px transparent;
}

.debugger-tab-nav li a:hover {
    color: #F9FAFB;
}

.debugger-tab-nav li.active a {
    color: #F9FAFB;
    border-color: #F9FAFB;
}

/* debugger-search */
.debugger-search {
    border-bottom: 1px solid #344054;
    display: flex;
    position: relative;
    z-index: 1;
}

.bottom-outline {
    border-bottom: 1px solid #344054;
}

.outline-b-0 {
    border-bottom: none;
}

.debugger-search input[type=text] {
    background: url(../images/icon-search.png) no-repeat 12px center;
    background-size: 16px 16px;
    border: none;
    width: calc(100% - 25px);
    height: 32px;
    font-size: 12px;
    color: #fff;
    line-height: 18px;
    font-weight: 400;
    padding: 0 12px 0 36px;
    outline: none;
}

/* debugger-search-filter */
.debugger-search-filter {
    padding: 4px 10px;
    display: flex;
    gap: 8px;
}

.debugger-search-filter .tag-link {
    border: 1px solid #475467;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    font-size: 12px;
    color: #D0D5DD;
    line-height: 18px;
    border-radius: 4px;
}

.debugger-search-filter .more {
    position: relative;
}

.debugger-search-filter .more:hover ul {
    display: block;
}

.debugger-search-filter .more ul {
    border: 1px solid #344054;
    background: #0C111D;
    min-width: 190px;
    padding: 4px;
    white-space: nowrap;
    font-size: 12px;
    color: #EAECF0;
    line-height: 18px;
    font-weight: 400;
    border-radius: 4px;
    position: absolute;
    right: 0;
    top: 100%;
    list-style: none;
    display: none;
}

.debugger-search-filter .more li {
    border-radius: 2px;
}

.debugger-search-filter .more li a {
    display: block;
    padding: 1px 8px;
}

.debugger-search-filter .more li:hover {
    background: #344054;
}

/* debugger-section-heading */
.debugger-section-heading {
    border-bottom: 1px solid #344054;
    padding: 7px 12px;
    font-size: 12px;
    color: #D0D5DD;
    line-height: 18px;
    font-weight: 500;
}

.debugger-section-heading a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.debugger-section-heading .page-title-flex {
    display: flex;
    align-items: center;
    gap: 8px;
    /* overflow-wrap: anywhere; */
}

.debugger-section-heading .page-title-flex,
.debugger-section-heading .page-title-flex .ellipses-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.debugger-section-heading a img {
    width: 16px;
    height: 16px;
}

/* chart-view class condition based randor*/
.debugger-search .chart-view {
    width: 100%;
    justify-content: end;
    /* border-bottom: 1px solid #344054; */
}

.debugger-search .toggle-radio-btn {
    display: flex;
    align-items: center;
    color: #D0D5DD;
    line-height: 18px;
    font-weight: 400;
    font-size: 12px;
    gap: 8px;
    padding: 7px 12px;
}

.debugger-search .toggle-radio-btn .mat-mdc-slide-toggle .mdc-switch .mdc-switch__track::before {
    background: #98A2B3 !important;
}

.debugger-search .toggle-radio-btn .mdc-switch .mdc-switch__track {
    height: 16px;
    border-radius: 16px;
}

.debugger-search .toggle-radio-btn .mdc-switch .mdc-switch__ripple {
    height: 16px;
    width: 16px;
}

.debugger-search .toggle-radio-btn .mdc-switch .mdc-switch__handle {
    width: 12px;
    height: 12px;
}

.debugger-search .toggle-radio-btn .mat-mdc-slide-toggle .mdc-switch .mdc-switch__shadow {
    background: #EAECF0 !important;
}

.debugger-search .toggle-radio-btn .mat-mdc-slide-toggle .mdc-switch.mdc-switch--checked .mdc-switch__shadow {
    background: #fff !important;
}

.debugger-search .toggle-radio-btn .mdc-switch {
    width: 30px;
}

.debugger-search .toggle-radio-btn .mdc-switch .mdc-switch__handle-track {
    width: 14px !important;
    left: 2px;
}

.debugger-search .toggle-radio-btn .mat-mdc-slide-toggle .mdc-switch .mdc-switch__track::after {
    background-color: #0D6FE8 !important;
}

.debugger-search .toggle-radio-btn .mdc-switch:enabled .mdc-switch__shadow {
    box-shadow: 0px 1px 3px 0px rgba(24, 34, 48, 0.1) !important;
    box-shadow: 0px 1px 2px 0px rgba(24, 34, 48, 0.06) !important;
}

.debugger-search .toggle-radio-btn .mat-mdc-slide-toggle .mdc-form-field>label {
    padding-left: 0;
}

/* table-chart */
.system-debugger .table-chart {
    display: flex;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #EAECF0;
    padding-left: 8px;
}

.system-debugger .table-chart span {
    display: flex;
    padding: 3px 8px 0;
}

.system-debugger .switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 16px;
    margin-top: 4px;
}

.system-debugger .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.system-debugger .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #98A2B3;
    -webkit-transition: .4s;
    transition: .4s;
}

.system-debugger .slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.system-debugger input:checked+.slider {
    background-color: #2196F3;
}

.system-debugger input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

.system-debugger input:checked+.slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
}

.system-debugger .slider {
    border-radius: 34px;
}

.system-debugger .slider:before {
    border-radius: 50%;
}

/* system-debugger-wrapper, system-debugger-content */
.system-debugger-wrapper,
.system-debugger-content {
    width: 100%;
    position: relative;
}

.system-debugger-wrapper {
    display: flex;
    height: 100%;
}

.system-debugger-content-overflow {
    height: 336px;
    overflow: auto;
}

.system-debugger-content-table {
    border-top: solid 1px #344054;
    height: 336px;
    overflow: auto;
}

.system-debugger-content .debugger-tab-nav {
    padding: 0 12px;
}

/* system-debugger-table */
.system-debugger-table {
    border-bottom: 1px solid #344054;
    border-top: 1px solid #344054;
    height: 168px;
    overflow: auto;
}

/* tracker-main */
.tracker-main{
    height: 100%;
}

.system-debugger-table-full {
    border-bottom: none;
    /* border-top: 1px solid #344054; */
    height:calc(100% - 65px);
    overflow: auto;
}

.system-debugger-table table td:last-child {
    text-align: left !important;
}

/* table */
.system-debugger table {
    border: none;
    border-collapse: collapse;
    width: 100%;
}

.system-debugger table th,
.system-debugger table td {
    height: 22px;
    padding: 6px 12px;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #EAECF0;
}

.system-debugger table th {
    background: #344054;
    font-weight: 500;
}

.system-debugger table tr {
    border-bottom: solid 1px #344054;
    cursor: pointer;
}

.system-debugger table a {
    color: #0BA5EC;
    text-decoration: none;
}

.system-debugger table tr:hover {
    background: #182230;
}

.system-debugger table td:last-child {
    text-align: right;
}

.system-debugger table a.arrow-link {
    display: inline-flex;
    margin-top: 2px;
    visibility: hidden;
}

.system-debugger .data-table {
    table-layout: fixed;
}

.system-debugger .data-table tr td p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.system-debugger table a.arrow-link img {
    width: 16px;
    height: 16px;
}

.system-debugger table tr:hover a.arrow-link {
    visibility: visible;
}

/* json-content */
.system-debugger .json-content {
    width: 100%;
    position: relative;
}
.system-debugger .json-content, 
.system-debugger .json-content json-editor,
.system-debugger .json-content json-editor > div,
.system-debugger .json-content json-editor .jsoneditor{
    height: 100%;
    display: block;
}

.system-debugger .json-content img {
    width: 100%;
    height: auto;
}

.system-debugger .json-content.json-height-half {
    height: calc(100% - 198px);
    overflow: auto;
    display: block !important;
}

.system-debugger .json-content .ngx-json-viewer {
    width: calc(100vw - 586px);
    height: 336px;
    overflow: auto;
}

.system-debugger .json-content.fullWidth .ngx-json-viewer {
    width: calc(100vw - 224px);
    height: 100%;
}

.system-debugger .json-content .ngx-json-viewer .ngx-json-viewer {
    height: auto;
    overflow: hidden;
}

.system-debugger-midside .mat-mdc-tab-group{
    height: 100%;
}
.system-debugger-midside .mat-mdc-tab-body-wrapper{
    height: 100%;
}

.mat-mdc-tab-group .mat-mdc-tab-body-wrapper .mat-mdc-tab-body .mat-mdc-tab-body-content .json-content div.jsoneditor-tree {
    height:calc(100% - 30px);
}

/* system-debugger-leftnav */
.system-debugger-leftnav {
    width: 100%;
    height:calc(100% - 97px);
    overflow: auto;
}
.system-debugger-leftnav.data-left-nav-scroll{
    height:calc(100% - 65px);
}

.system-debugger-leftnav.task-group-scroll{
    height:calc(100% - 65px);
}

.system-debugger-leftnav ul {
    list-style: none;
}

.system-debugger-leftnav li {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    padding: 0;
    gap: 8px;
    place-content: space-between;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.system-debugger-leftnav li a {
    color: #EAECF0;
    width: 100%;
    line-height: 18px;
    align-content: center;
    padding: 7px 12px 7px 12px;
    margin: 0;
    text-overflow: ellipsis;
    overflow-y: hidden;
    white-space: nowrap;
}

.system-debugger-leftnav li img {
    cursor: pointer;
    display: flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.system-debugger-leftnav li:nth-child(even) {
    background-color: #182230;
}

.system-debugger-leftnav li.active {
    background-color: #344054;
}

.system-debugger-leftnav li:hover {
    background-color: #344054;
}

.system-debugger-leftnav dl {
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.system-debugger-leftnav dt,
.system-debugger-leftnav dd {
    display: flex;
    font-size: 12px;
    color: #F9FAFB;
    line-height: 18px;
    font-weight: 500;
}

.system-debugger-leftnav dt {
    color: #D0D5DD;
    font-weight: 400;
}

.system-debugger-leftnav dd a {
    color: #0BA5EC;
}

.system-debugger-leftnav .select {
    border: 1px solid #475467;
    background: #0C111D;
    width: 100%;
    padding: 2px 8px;
    color: #F9FAFB;
    border-radius: 4px;
    line-height: 18px;
    font-size: 12px;
}

div.mat-mdc-select-panel {
    border-radius: 4px;
}

.system-debugger-leftnav.arrow-none li a {
    background: none;
}

/* system-debugger-infolist */
.system-debugger-infolist {
    height:calc(100% - 65px);
    overflow: auto;
}

.system-debugger-infolist dl,
.system-debugger-infolist dt,
.system-debugger-infolist dd {
    display: flex;
    flex-flow: wrap;
    font-size: 12px;
    color: #F9FAFB;
    line-height: 18px;
    font-weight: 400;
}

.system-debugger-infolist dt,
.system-debugger-infolist dd {
    padding: 7px 12px;
}

.system-debugger-infolist dl:nth-child(even) {
    background: #182230;
}

.system-debugger-infolist dt {
    width: calc(40% - 24px);
}

.system-debugger-infolist dd {
    width: calc(60% - 24px);
    font-weight: 500;
    overflow-wrap: anywhere;
}

.system-debugger-infolist details {
    margin-top: 16px;
}

.system-debugger-infolist details summary {
    background: #344054;
    display: flex;
    align-items: center;
    padding: 7px 12px;
    font-size: 12px;
    color: #D0D5DD;
    line-height: 18px;
    font-weight: 500;
}

.system-debugger-infolist details summary::marker {
    display: none !important;
}

.system-debugger-infolist details summary::before {
    background: url(../images/icon-chevron-bottom.png) no-repeat center center;
    background-size: 16px 16px;
    display: inline-flex;
    width: 16px;
    height: 16px;
    content: '';
    margin-right: 8px;
    transform: rotate(-90deg);
}

.system-debugger-infolist details[open] summary::before {
    transform: rotate(0deg);
}

.system-debugger-infolist .no-config {
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #EAECF0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.system-debugger-infolist dl dd .copy-data,
.system-debugger-infolist dl dt .copy-data {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-wrap: anywhere;
}

.system-debugger-infolist dl dt .copy-data,
.system-debugger-infolist dl dt .copy-data .ellipses-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.system-debugger-infolist dl dd .copy-data img,
.system-debugger-infolist dl dt .copy-data img {
    width: 16px;
    height: 16px;
    opacity: 0;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    visibility: hidden;
}

.system-debugger-infolist dl:hover dd .copy-data img,
.system-debugger-infolist dl:hover dt .copy-data img {
    opacity: 1;
    visibility: visible;
}




/* system-debugger-layout */
.system-debugger-layout {
    padding: 8px 12px;
}

.system-debugger-row {
    border: 1px dashed #475467;
    padding: 4px 8px 8px 8px;
    border-radius: 4px;
}

.system-debugger-row p {
    font-size: 12px;
    color: #EAECF0;
    line-height: 18px;
    font-weight: 400;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.system-debugger-row>p {
    margin-bottom: 4px;
}

.system-debugger-col-group {
    overflow: hidden;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: auto !important;
}


/* Style the entire scrollbar */
.system-debugger-col-group::-webkit-scrollbar {
    width: 4px !important;
    height: 4px !important;
    padding-top: 4px;

}

/* Style the scrollbar track */
.system-debugger-col-group::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

/* Style the draggable thumb */
.system-debugger-col-group::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

/* Hover effect for the thumb */
.system-debugger-col-group::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Optional: Style scrollbar buttons */
.system-debugger-col-group::-webkit-scrollbar-button {
    background: #ccc;
    display: none;
}

/* Optional: Style the corner of the scrollbar */
.system-debugger-col-group::-webkit-scrollbar-corner {
    background: #f0f0f0;
}



.system-debugger-col {
    border: 1px solid #475467;
    background: #0C111D;
    padding: 8px 4px;
    height: 32px;
    border-radius: 4px;
}

.layout-row-hover:hover {
    background: #0B4A6F;
    cursor: pointer;
}
.system-debugger-col:hover{
    background: #0B4A6F;
    cursor: pointer;
}

.height-100{
    height: 100%;
}

/* system-debugger-leftside */
.system-debugger-leftside {
    width: 224px;
    min-width: 224px;
    border-right: solid 1px #344054;
}

/* system-debugger-midside */
.system-debugger-midside {
    width: 100%;
}

.system-debugger-midside .table-box {
    height:calc(100% - 65px);
    overflow: auto;
}

.system-debugger-midside .mat-mdc-tab-group .mat-mdc-tab-header {
    border-bottom: 1px solid #344054;
    background: transparent;
    border-radius: 0;
    border-left: none;
    border-top: none;
    border-right: 0;
}

.system-debugger-midside .mat-mdc-tab-group .mat-mdc-tab-header .mdc-tab {
    background: transparent;
    padding: 0 4px;
    min-width: auto;
    margin: 0 8px;
    border-radius: 0;
    flex-grow: initial !important;
    box-shadow: inherit;
    min-height: 32px;
    border-bottom: 2px solid transparent;
}

.system-debugger-midside .mat-mdc-tab-group .mat-mdc-tab-header .mdc-tab:first-child {
    margin-left: 12px;
}

.system-debugger-midside .mat-mdc-tab-group .mat-mdc-tab-header .mdc-tab--active {
    border-color: #F9FAFB;
}

.system-debugger-midside .mat-mdc-tab-group .mat-mdc-tab-header .mdc-tab--active .mdc-tab__text-label {
    color: #F9FAFB !important;
}


.system-debugger-midside .mat-mdc-tab-group .mat-mdc-tab-header .mdc-tab .mdc-tab__text-label {
    color: #98A2B3;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}

.system-debugger-midside .mat-mdc-tab-group .mat-mdc-tab-header .mdc-tab .mdc-tab__text-label:hover {
    color: #F9FAFB;
}

.system-debugger-midside .debugger-search {
    /* border-bottom: solid 1px #344054; */
}

/* system-debugger-rightside */
.system-debugger-rightside {
    border-left: 1px solid #344054;
    width: 360px;
    min-width: 360px;
}

.system-debugger-rightside .debugger-tab-nav {
    border-bottom: 1px solid #344054;
    width: auto;
    margin-bottom: 0;
    padding: 1px 12px 0 12px;
    display: flex;
    align-items: center;
}

.system-debugger-rightside .debugger-tab-nav ul {
    width: 100%;
    margin-bottom: -1px;
}

.debugger-tab-nav .tab-arrow-link {
    display: inline-flex;
}

/* check */
.mat-mdc-table.tracker-table th.mat-mdc-header-cell:first-child {
    border-radius: 0;
}

.mat-mdc-table.tracker-table th.mat-mdc-header-cell:last-child {
    border-radius: 0;
}

.mat-mdc-table.tracker-table tr.mat-mdc-row {
    height: 32px;
}

.mat-mdc-table.tracker-table tr.mat-mdc-row {
    background-color: #0C111D;
}

.mat-mdc-table.tracker-table tr.mat-mdc-row:hover {
    background-color: #182230;
}

.mat-mdc-table.tracker-table tr.mat-mdc-row:hover .data-text .hover-icon {
    visibility: visible;
    opacity: 1;
}

.mat-mdc-table.tracker-table th.mat-mdc-header-cell {
    background-color: #344054;
    color: #F9FAFB;
    padding: 7px 12px;
    font-size: 12px;
    line-height: 18px;
    border: none;
}

.mat-mdc-table.tracker-table td.mat-mdc-cell {
    border: none;
    color: #EAECF0;
}

.name-ellipses{
    max-width: 100px;
    min-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.name-ellipses p{
    max-width: 250px;
    min-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.name-ellipses-task-name{
    max-width: 100px;
    min-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; 
}
.name-ellipses-task-name p{
    max-width:160px;
    min-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; 
}

.data-text {
    display: flex;
    gap: 8px;
    align-items: center;
}

.end-align-data {
    justify-content: end;
}

.hover-icon {
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    width: 16px;
    height: 16px;
}

.mat-mdc-table .mat-mdc-row .mat-mdc-cell .hover-icon img {
    width: 16px;
    height: 16px;
}

.edit-icon {
    display: inline !important;
    margin-left: 0px;
}

.duration-image {
    margin-left: 4px !important;
    height: 8px !important;
    border-radius: 0 !important;
}

.taskgroup-left {
    color: #F9FAFB;
    padding: 7px 12px;
}

.detail-row {
    margin-bottom: 14px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.hover-edit {
    cursor: pointer;
}

.hover-edit span {
    display: flex;
    gap: 8px;
}

.edit-icon {
    transition: all ease-in-out 0.3s;
    opacity: 0;
    visibility: hidden;
}

.hover-edit:hover .edit-icon {
    opacity: 1;
    visibility: visible;
}


.detail-row label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #D0D5DD;
}

.detail-row span {
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #F9FAFB;
}

.detail-row.copy-task-id {
    cursor: pointer;
}

.detail-row.copy-task-id span {
    display: flex;
    font-weight: 500;
    gap: 8px;
}

.detail-row.copy-task-id span img {
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    opacity: 0;
    visibility: hidden;
}

.detail-row.copy-task-id:hover span img {
    opacity: 1;
    visibility: visible;
}

.detail-row .select-custom-feild .mdc-text-field--outlined {
    padding-inline-end: 8px !important;
    padding-left: 8px;
}
.detail-row .select-custom-feild .mdc-text-field--outlined .mat-mdc-form-field-infix{
    min-height: 24px;
    padding-top: 0px;
    padding-bottom: 0px;
}
.detail-row .select-custom-feild .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.detail-row .select-custom-feild .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.detail-row .select-custom-feild .mdc-text-field--focused .mdc-notched-outline {
        box-shadow:inherit !important;
}
.detail-row .select-custom-feild .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing, .detail-row .select-custom-feild .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading{
    border-color: #475467;
}
.mat-mdc-form-field.mat-focused .mat-mdc-select-arrow{
    color:#667085 !important;
}


.event-type {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #0BA5EC !important;
}

.system-debugger .jsoneditor {
    height: 400px;
}

.br-result {
    color: #17B26A !important;
    text-transform: capitalize;
}

.task-error-message {
    background: url(../images/error.png) no-repeat 12px center;
    background-color: #7A271A;
    background-size: 16px 16px;
    color: #FFFFFF;
    width: 100%;
    line-height: 18px;
    font-weight: 500;
    font-size: 12px;
    padding: 6px 0 6px 36px;
}

.custom-tooltip {
    white-space: pre-line;
    text-align: left;
}

.custom-tooltip.mat-mdc-tooltip .mdc-tooltip__surface {
    background-color: #fff !important;
    color: #182230 !important;
    text-align: left;
}

/*Start select-dropdown-debug*/
.custom-select-dropdown-debug {
    position: relative;
}

.custom-select-dropdown-debug .input-feild-bx {
    border: 1px solid #475467;
    border-radius: 4px;
    padding: 0 8px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.custom-select-dropdown-debug .input-feild-bx::after {
    font-size: 16px;
    display: flex;
    width: 16px;
    height: 16px;
    align-items: center;
    font-family: "Material Icons";
    content: "expand_more";
    color: #667085;
}

.custom-select-dropdown-debug .input-feild-bx p {
    font-size: 12px;
    line-height: 18px;
    color: #F9FAFB;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select-dropdown-debug .list-item-select-debug {
    border-radius: 4px;
    padding: 4px;
    background-color: #0C111D;
    border: 1px solid #344054;
    box-shadow: 0px 12px 16px -4px rgba(24, 34, 48, 0.08);
    position: absolute;
    z-index: 99;
    width: 100%;
    top: 26px;
    max-height: 180px;
    overflow: auto;
}

.dropdown-search-debug {
    border: 1px solid #475467;
    border-radius: 2px;
    width: 100%;
    margin-bottom: 4px;
}

.dropdown-search-debug input[type=text] {
    background: url(../images/icon-search.png) no-repeat 8px center;
    background-size: 16px 16px;
    border: none;
    width: 100%;
    height: 24px;
    font-size: 12px;
    color: #fff;
    line-height: 18px;
    font-weight: 400;
    padding: 0 8px 0 32px;
    outline: none;
}

.custom-select-dropdown-debug .list-item-select-debug ul li {
    cursor: pointer;
    padding: 3px 8px;
    color: #EAECF0;
    font-size: 12px;
    line-height: 18px;
    border-radius: 2px;
    background-color: #0C111D;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}
.custom-select-dropdown-debug .list-item-select-debug ul li.selected-item {
    background-color: #344054;
}
.custom-select-dropdown-debug .list-item-select-debug ul li:hover {
    background-color: #344054;
}

.config-dropdown {
    padding: 3px 12px;
    gap: 8px;
    border-bottom: 1px solid #344054;
}

.entity-dropdown-list-items {
    width: 200px !important;
}

.disable-entity-item {
    pointer-events: none;
    /* opacity: 0.5; */
    /* cursor: not-allowed; */
  }

.image-size {
    width: 16px !important;
    height: 16px !important;
    border-radius: 0 !important;
}

.failed-task-image {
    width: 12px !important;
    height: 12px !important;
    margin-left: 4px !important;
    border-radius: 0 !important;
}

.ellipses-txt img {
    margin-right: 4px;
}

.entity-title {
    display: flex;
    align-items: center;
}

.entity-icon {
    display: flex;
}
