/* stylelint-disable */
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#app {
  transition: opacity 300ms ease;
}

.loader {
  border: 1px solid #b8f2ff;
  border-radius: 50%;
  border-top: 1px solid #3498db;
  animation: spin 1s linear infinite;
}

.loader.xxs {
  width: 0.5rem;
  height: 0.5rem;
}

.loader.xs {
  width: 1rem;
  height: 1rem;
}

.loader.sm {
  width: 3rem;
  height: 3rem;
}

.loader.md {
  width: 5rem;
  height: 5rem;
}

.loader.lg {
  width: 8rem;
  height: 8rem;
}

.inline-box {
  display: -webkit-inline-box;
}

.flex-imp {
  display: flex !important;
}

/* top nav */
.topBar {
  display: flex;
  justify-content: flex-start;
  padding: 1rem;
  background-color: white;
}

.filter-chip > div {
  background: #676767;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
}

.topBar > div:nth-child(1) {
  margin-left: 0;
}

.topBar > div:nth-last-child(1) {
  margin-right: 0;
  margin-left: auto;
}

.topBar > * {
  margin-right: 0.5rem;
}

/* outer layout */
.layout {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

/* kpi grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  grid-gap: 1rem;

  /* margin-bottom: 1rem; */
  box-shadow: 0.1rem 0.1rem 0.1rem var(--gray-light-2);
  border-radius: 0.3rem;
  background: #fff;
}

.kpi-grid > * {
  padding: 0.8rem;
}

.kpi-fig {
  display: flex;
  flex-direction: column;
}

.kpi-loader {
  align-self: start;
  padding: 0.5rem;
}

/* chart blocks */
.grid-container {
  /* display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  grid-gap: 1.5rem;
  grid-auto-rows: 20rem; */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: 1.5rem;
  grid-auto-rows: minmax(280px, auto);
  grid-auto-flow: dense;
}

.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0.1rem 0.1rem 0.1rem var(--gray-light-2);
  border-radius: 0.3rem;
  padding: 1rem;
  position: relative;

  /* height: 18rem;
  cursor: grab; */
}

.filter-item {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0.1rem 0.1rem 0.1rem var(--gray-light-2);
  border-radius: 0.3rem;
  padding: 1rem;
  position: absolute;
}

.grid-item.dragging {
  filter: brightness(40%);
}

.grid-item.highlight-left::after,
.grid-item.highlight-right::after {
  content: '';
  background: #00bceb;
  position: absolute;
  width: 0.3125rem;
  height: 100%;
  right: -1rem;
  top: 0;
}

.grid-item.highlight-left::after {
  content: '';
  background: #00bceb;
  position: absolute;
  width: 0.3125rem;
  height: 100%;
  left: -0.8rem;
  top: 0;
}

.grid-span2 {
  grid-column: span 2;
}

.grid-item > .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}


  @media only screen and (max-width: 771px) {
    .grid-item.resizeCard.span2 {
    grid-row: span 2;
    grid-column: span 1;
    }
    .grid-item.resizeCard.span3 {
      grid-row: span 1;
      grid-column: span 1;
    }
    .grid-item.resizeCard.span2 .resizeStack {
      flex-direction: column;
    }
    .grid-item.resizeCard.span2 .resizeAlignCenter {
      align-items: center;
    }
    .resizeCard.span2 li.leg-group.flex-033 {
      flex: 0 0 50%;
    }
  }
  @media only screen and (min-width: 772px) {
    .grid-item.resizeCard.span2 {
    grid-row: span 1;
    grid-column: span 2;

  }
  .grid-item.resizeCard.span3 {
    grid-row: span 1;
    grid-column: span 3;

  }
  .grid-item.resizeCard.span4 {
    grid-row: span 1;
    grid-column: span 4;

  }
  .resizeCard.span2 li.leg-group.flex-033 {
    flex: 0 0 33%;
  }
  
  a[data-id="hunt_pilot_analysis"] .canvas-ctr li {
    flex: 0 0 100% !important;
  }
}

.span-2 {
  grid-column-end: span 2;
  grid-row-end: span 2;
}

.span-3 {
  grid-column-end: span 3;
  grid-row-end: span 4;
}

.legend-box {
  width: 1.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
}

.legend-color {
  color: rgba(0, 160, 209, 1);
}

li.disable-legend {
  text-decoration: line-through;
}

.filter-bar {
  min-height: 2.5rem;
  background: #fff;
}

.filter-dropdown {
  border-radius: 0 0 0.25rem 0.25rem;
}

.filter-chip {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: opacity 0.5s;
  position: absolute;
  background: rgba(167, 167, 167, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
}

.filter-chip > div span {
  color: #fff;
}

/* notification */
.notification {
  display: flex;
  background-color: rgb(230, 249, 252);
  padding: 1rem;
  border-top: 1px #e8e8e8 solid;
  border-bottom: 1px #e8e8e8 solid;
}

.notificationucmc {
  background-color:#f3f4f5;
}

.notification > .img {
  flex: 1;
  display: flex;
  align-items: center;
}


.notification > .info {
  flex: 2;
  display: flex;
  align-items: center;
}

.notification > .piiinfo {
  flex: 2;
  align-items: center;
  text-align: center;
}
.piiHref{
  color: #3366BB;
}


.notification > .toggle {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification.notificationucmc > .toggle {
  justify-content: flex-end;
}

/* Manish Added CSS */
.dropdown-child {
  display: none;
  background-color: #fff;
  min-width: -webkit-fill-available;
  min-width: -moz-available;
  width: max-content;
  position: absolute;
  border-right: 1px #cdcdcd solid;
  border-left: 1px #cdcdcd solid;
}

.dropdown-child-active {
  display: block;
  border-top: 1px #cdcdcd solid;
}

.dropdown-child a {
  color: #000;
  padding: 0.5rem;
  text-decoration: none;
  border-bottom: 1px #cdcdcd solid;
  display: flex;
  flex-direction: column;
}

.notification > .toggle .txt a {
  color: rgba(0, 160, 209, 1);
  text-decoration: underline;
}

/* toggle switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 1.4rem;
}

.toggle-switch > input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch > .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #adadad;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toggle-switch > .slider::before {
  position: absolute;
  content: "";
  height: 1.2rem;
  width: 1.2rem;
  left: 0.1rem;
  bottom: 0.1rem;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toggle-switch > input:checked + .slider {
  background-color: #2196f3;
}

.toggle-switch > input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

.toggle-switch > input:checked + .slider::before {
  -webkit-transform: translateX(1.1rem);
  -ms-transform: translateX(1.1rem);
  transform: translateX(1.1rem);
}

.toggle-switch > .slider.round {
  border-radius: 1.4rem;
}

.toggle-switch > .slider.round::before {
  border-radius: 50%;
}

/* dropdown */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 999;
}

.dropdown-btn {
  border: 1px #cdcdcd solid;
  color: #000;
  border-radius: 0.2rem;
  cursor: pointer;
  padding: 0.5rem;
  outline: none;
}

.dropdown-btn-active {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: url("../icons/arrow-up_8.svg") no-repeat calc(100% - 10px) center;
}

.dropdown-btn:hover {
  background-color: var(--gray-light-3);
}

.dd .current {
  background-color: #b8f2ff;
}

/* Tooltip text */
.tooltip,
.tooltipup {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  outline: none;
  white-space: pre-line;

}

.tooltip .tooltiptext,
.tooltipup .tooltiptext {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: left;
  border-radius: 0.5rem;
  padding: 0.5rem;
  position: absolute;
  z-index: 1;
  width: max-content;
  white-space: pre-line;
}

/* Chart Legend Hovering */
.hover-tip {
  display: none;
  font-size: 12px;
  border-radius: 0.2rem;
  box-shadow: 0 0 5px #535353;
  background-color: #fff;
  color: black;
  padding: 0.3rem;
}

.legend:hover > .leg-hover > .hover-tip {
  display: block;
  position: absolute;
}

.tooltip .tooltiptext::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
}

.tooltipup .tooltiptext::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -0.3125rem;
  width: 0;
  height: 0;
  border-bottom: 0.3125rem solid #000;
  border-right: 0.3125rem solid transparent;
  border-left: 0.3125rem solid transparent;
}

.tooltip .tooltiptext.flowLeft {
  right: 7.8rem;
  margin-left: 0;
}

.tooltip .tooltiptext.flowLeft::after {
  content: '\25BA';
  left: 99%;
  right: 0;
  border-style: none;
  color: #000;
}

.tooltip:hover .tooltiptext,
.tooltipup:hover .tooltiptext,
.tooltipup:focus .tooltiptext {
  visibility: visible;
  outline: none;
}

.tooltip .tooltiptext.noArr::after,
.tooltipup .tooltiptext.noArr::after {
  content: none;
}

.tooltip .max-width,
.tooltipup .max-width {
  max-width: 14rem;
}

/* toster */
.downloadWindow {
  width: 20rem;
  bottom: 1rem;
  right: 1rem;
  z-index: 1;
}

.downloadWindow .collapsible {
  background-color: #666;
  color: #fff;
  padding: 1rem;
  border-radius: 0;
  outline: none;
  font-weight: 600;
}

.downloadWindow .active,
.downloadWindow .collapsible:hover {
  background-color: #555;
}

.downloadWindow .content {
  background-color: #f1f1f1;
  border: 0.1rem #cdcdcd solid;
}

.downloadWindow .list li {
  list-style: none;
  padding: 0.5rem  0.8rem;
  border-bottom: 0.1rem #cdcdcd solid;
}

.downloadWindow .list li:last-child {
  border-bottom: none;
}

.downloadWindow .complete {
  color: #0090c4;
}

.downloadWindow .error {
  color: #f00;
}

/* Date component */
.date-block {
  display: flex;
  width: max-content;
  padding: 0.3rem;
}

.date-block > .btn {
  flex: 1;
  flex-direction: column;
  display: flex;
}

.cal-submit-btn > button {
  padding: 4px 8px;
  background: #00a0d1;
  border: 1px #00a0d1 solid;
  color: #fff;
  border-radius: 1.125rem;
  outline: none;
}

.date-range-picker > button,
.date-range-picker > select {
  text-transform: none;
}

.date-range-picker > button,
.date-range-picker > input {
  overflow: visible;
}

.date-range-picker > button,
.date-range-picker > input,
.date-range-picker > select,
.date-range-picker > textarea {
  margin: 0;
  font: inherit;
}

.date-block > .btn button {
  background: #fff;
  padding: 0.3rem;
  margin-bottom: 0.4rem;
  border-radius: 0.3rem;
  font-size: 0.75rem;
  outline: none;
}

.btn-focus {
  border: #d6d6d6;
  box-shadow: 0 0 4px 2px rgba(0, 160, 209, 0.75);
}

.btn-notfocus {
  border: 1px #d6d6d6 solid;
}

.date-block > .cal {
  flex: 1;
  flex-direction: column;
  display: flex;
  align-items: flex-end;
}

.cal-submit-btn {
  display: flex;
  padding: 0.3rem;
  justify-content: flex-end;
}

.cal-submit-btn > button:nth-child(1) {
  margin: 4px;
}

.cal-submit-btn > button:nth-child(2) {
  margin: 4px 0 4px 4px;
}

.datepicker-container {
  display: inline-flex;
  z-index: 1025;
}

.date-range-picker {
  z-index: 1026;
  display: flex;
  flex-direction: column;
  border: 1px #ccc solid;
  border-radius: 0.3rem;
  margin-left: 0.2rem;
}

.datepicker__header {
  padding-top: 0.5125rem;
  display: flex;
  flex-direction: column;
}

.datepicker__navigation {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  padding: 0 0.5rem;
}

.datepicker__navigation > .travel-month-block {
  flex: 1;
}

.travel-month-btn {
  background-color: transparent;
  border-color: transparent;
  fill: #535759;
  color: #535759;
  font-size: 1rem;
  border-radius: 0;
  height: auto;
  padding: 0;
  min-width: 0;
  outline: none;
}

.current-month-title {
  font-family: CiscoSansTT Bold, Helvetica Neue, Helvetica, Arial, sans-serif;
  display: flex;
  flex: 2;
}

.datepicker__day--names {
  white-space: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-flow: row nowrap;
  display: flex;
  color: #000;
}

.datepicker__day--name {
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-flow: row nowrap;
  display: inline-flex;
  flex-grow: 1;
  font-weight: bold;
  width: 1.25rem;
  height: 1.75rem;
  font-size: 0.75rem;
}

.datepicker__month {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.datepicker__week {
  margin: 0.1rem;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
}

.button.button--28 {
  padding: 0.1875rem 0.875rem;
  width: 1.25rem;
  height: 1.75rem;
  min-width: 0;
  min-height: 0;
  font-size: 0.75rem;
}

.outside-month {
  color: #9c9c9c !important;
  background: transparent;
}

.current-date{
  color:#FF0000 !important;
}

.day-selected {
  color: #fff !important;
  background: #000 !important;
  border-radius: 0;
}

.not-selected {
  text-decoration: line-through;  
}

.datepicker__day.button {
  display: inline-flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-flow: row nowrap;
  width: 1.25rem;
  height: 1.75rem;
  min-width: 0;
  min-height: 0;
  font-size: 0.75rem;
  color: #000;
  cursor: default;
  background: transparent;
  border: 0;
}

.button .button__children {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-flow: row nowrap;
}

/* Date component */

.filterBar {
  width: 100%;
  height: 5rem;
  background: #fff;
}

.tablecss {
  width: 100%;
  table-layout: fixed;
  background-color: white;
}

.tablecss th {
  border-bottom: 1px solid var(--gray-light-2);
  height: 2rem;
  text-align: left;
  padding-left: 1rem;
  max-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tbodycss td {
  height: 1.5rem;
  padding-left: 1rem;
  max-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.8rem;
}

.sourcecss {
  width: 8rem;
}

.datasourcecss {
  width: 6rem;
}

.starttimecss {
  width: 9rem;
}

.callstatuscss {
  width: 5rem;
}

.analysecss {
  width: 8rem;
}

/* ===========Arun=========================================================================================== */

.dropdown-filter {
  position: relative;
  display: inline-block;
  z-index: 1;
  width: -webkit-fill-available;
  width: -moz-available;
  border-radius: 0.5rem;
}

button.btn {
  text-align: right;
}

.dropdown-content {
  display: none;
  max-height: 20rem;

  /* position: absolute; */
  background-color: #fff;

  /* min-width: 160px; */
  overflow: auto;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid var(--gray-light-2);
  z-index: 1;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border-radius: 0.25rem;
}

.dropbtn {
  background-color: #fff;
  border: 1px solid var(--gray-light-2);
  border-radius: 0.3rem;
  color: #000;
  padding: 0.2rem 0.2rem;
  width: inherit;
}

.left0 {
  left: 0;
}

.right-auto {
  right: auto;
}

.dropdown .show { display: block; }

.selectdiv {
  padding: 0.5rem;
}

.droplabel {
  padding-right: 1rem;
}

.clearAllButton{
  border:none;
  font-size: 14px;
  cursor: pointer;
  color: var(--blue-light-1);
  white-space: nowrap;
}

.buttoncommon {
  border: none;
  color: rgb(255, 255, 255);
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  margin: 0.5rem 0.5rem;
  border-radius: 1.5rem;
  width: 6rem;
}

.buttonok {
  background-color: rgb(10, 129, 240);
}

.buttoncancel {
  background-color: var(--gray-light-2);
  color: black;
}

.dropdowndiv {
  text-align: right;
}

.dropdownselect {
  background-color: white;
  min-width: 8rem;
}

.chip {
  display: flex;
  flex-direction: row;
  background-color: #e5e5e5;
  border: none;
  cursor: default;
  outline: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: #333;
  white-space: nowrap;
  align-items: center;
  border-radius: 0.25rem;
  vertical-align: middle;
  text-decoration: none;
  justify-content: space-between;

  /* min-width: 10rem; */
  font-weight: bold;
  margin: 0.25rem;
}

.filter {
  display: inline-flex;
  border-radius: 0.25rem;
  justify-content: center;
  align-items: center;
  background-color: #e5e5e5;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}

.chip-content {
  cursor: inherit;
  display: inline-flex;
  align-items: center;
  user-select: none;
  white-space: nowrap;

  /* padding-left: 0.25rem;
  padding-right: 6px; */
}

.chip-close {
  justify-content: center;
  background-color: #0000;
  border: none;
  padding: 0;
  width: 0.75rem;
  height: 0.75rem;
  cursor: pointer;
}

.label-drop {
  padding: 0.5rem;
  font-size: 0.75rem;
}

.div-text {
  color: grey;
  font-style: italic;
  padding: 0.5rem;
  font-size: 0.9rem;
}

.div-text-span {
  color: black;
  font-style: italic;
  padding: 0.5rem;
  font-size: 0.9rem;
}

.button-drop {
  float: right;
  background-color: white;
  border: white;
  cursor: pointer;
}

.span-show-none {
  display: none;
}

.span-show-block {
  display: inline-block;
}

.chipBlocks {
  display: flex;
  flex-wrap: wrap;
}

.filterBox {
  display: flex;

  /* justify-content: space-between; */
  align-items: center;
}

.dropdown-child-filter-show {
  display: grid;
  max-height: 18rem;
  overflow-y: auto;
}

.dropdown-child-filter-hide {
  display: none;
}

.dropdown-child-filter {
  background-color: #fff;
  width: max-content;
  position: absolute;
  z-index: 2;
  padding: 0.25rem;
  margin-top: 0.25rem;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #d2d5d6, 0 4px 12px 0 rgba(0, 0, 0, 0.16);
}

.drop-div {
  margin-bottom: 0.25rem;
}

.yellow {
  background-color: yellow;
}

.filterblock {
  display: inherit;
}

/* custom legends */
.cust-legend {
  width: 1.25rem;
  height: 0.5rem;
  border-radius: 1.25rem;
  margin-right: 0.3rem;
}

.download-btn {
  border-radius: 0.25rem;
  border: none;
  padding: 0.4rem 0.8rem;
  background-color: transparent;
  outline: none;
  display: flex;
}

.download-header-btn {
  padding: 0.2rem 0.4rem;
}

.canvas-ctr canvas {
  width: 100% !important;
}

.caret span::before,
.caret span::after {
  content: '';
  position: absolute;
}

.caret span::before {
  top: -13px;
  right: 1rem;
  border-bottom: 12px solid var(--gray-light-2);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

.caret span::after {
  right: calc(1rem + 1px);
  top: -11px;
  border-bottom: 11px solid #fff;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
}

.modal-ctr {
  background: #00000073;
}

.modal {
  width: 90vw;
  height: 90vh;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  box-shadow: 0px 24px 48px rgb(0 0 0 / 20%), 0px 0px 1px rgb(0 0 0 / 12%);
  border-radius: 4px;
}

.modal-item {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3rem;
  padding: 1rem;
  position: relative;
  height: 18rem;
}

.searchbox {
  padding: 0.5rem;
  min-width: 15vw;
  border: 1px solid var(--gray-light-2);
  border-radius: 4px;
}

.table content {
  /* grid-template-rows: repeat(auto-fill, minmax(2.5rem,2.5rem)); */
}

.table content column {
  padding: 0 0.625rem;
  height: 2.5rem;
  line-height: 2.5rem;
  min-width: 5rem;
}

.table content column.hovered {
  background-color: #c9f4ff;
}

/* Last CSS Rules */
:focus {
  border-color: #0000;
  outline: 0;
  box-shadow: 0 0 4px 2px rgba(0, 160, 209, 0.75);
}

.chartInfo {
  max-width: 16rem;
  line-height: 1.2;
}

/* Manish Added CSS */

/* Tooltip autohide */
.grid-item .tooltip-autohide {
  visibility: hidden;
}

.modal-item .tooltip-autohide {
  visibility: hidden;
}

.grid-item:hover .tooltip-autohide {
  visibility: visible;
}

/* Manish Added CSS */
.card-focus {
  border: 10px solid rgba(0, 160, 209, 0.75);
}

.card-selected {
  border: 2px solid rgba(0, 160, 209, 0.75);
  box-shadow: 0 0 4px 2px rgba(0, 160, 209, 0.75);
}

.modal-item-button {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 0.3rem;
  position: relative;
  height: 10.5rem;
}

.add-chart-btn {
  border-radius: 0.25rem;
  padding: 0.4rem 0.8rem;
}

.modal-btn {
  border-radius: 1rem;
  background-color: #00a0d1;
  border: 0.1rem #0090c4 solid;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  color: #fff;
  outline: none;
  display: flex;
}

.modal-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  grid-gap: 1.5rem;
  grid-auto-rows: 10rem;
}

.modal-card {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0.1rem 0.1rem 0.1rem var(--gray-light-2);
  border-radius: 0.3rem;
  padding: 1rem;
  position: relative;

  /* height: 18rem; */
  height: 8rem;
}

.modal-title {
  font-family: CiscoSansTT Bold, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 20px;

  /* line-height: 125%; */
  color: #212529;
}

.modal-section-title {
  font-family: CiscoSansTT Bold, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

.modal-card-selected {
  border: 3px solid #00bceb;
  border-radius: 4px;
}

.modal-card-not-selected {
  border: 1px solid #dedede;
}

/* Manish CSS */

.modal-cancel-btn {
  background-color: #606060;
  border-radius: 1rem;
  border: 0.1rem #fff solid;

  /* padding: 0.4rem 0.8rem; */
  font-size: 1rem;
  padding: 0.6rem 1rem;
  color: #fff;
  outline: none;
  display: flex;
}

.modal-item:hover .tooltip-autohide {
  visibility: visible;
}

.modal-chart {
  width: 7rem;
  height: 7rem;
  float: left;
  padding: 0.5rem;
}

.modal-content {
  width: 20rem;
  height: 10rem;
  float: right;
  padding: 0.8rem;
}

.modal-content-title {
  text-align: left;
}

.modal-content-text {
  color: #545454;

  /* font: CiscoSans; */

  /* font-size: 12px; */
  text-align: left;
}

.empty-page-content {
  margin-top: 1rem;
}

.search-bar:focus-within {
  box-shadow: 0 0 4px 2px rgba(0, 160, 209, 0.75);
}

/* custom tooltip */
.chartjs-tooltip {
  opacity: 0;
  position: absolute;
  color: #333;
  border: 0.0625rem #000 solid;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 5%);
  padding: 0 !important;
  width: fit-content;
  z-index: 1;
  border-radius: 0.5rem;
  background: black;
}

.chartjs-tooltip-head {
  color: #fff;
  border-bottom: 0.0625rem #000 solid;
}

.chartjs-clearfilter {
  color: #0090c4;
}

.tooltip-color {
  color: #fff;
}

.custTooltip {
  background: black;
  border-radius: 0.5rem;
}

td.info-tooltip div {
  display:none;
  }
  
  td.info-tooltip:hover {
  
  position:relative;
  cursor:pointer; 
  
  }
  
  td.info-tooltip:hover div {
  
  position:absolute; /* this will let you align the popup with flexibility */
  top: 0px; /* change this depending on how far from the top you want it to align */
  left: 0px; /* change this depending on how far from the left you want it align */
  display:block; 
  width: 500px; /* give this your own width */
  
  }

  /*header of table*/
  .capacityAnalysis-Table {
    padding: 0 25px;
    }
    
    .table-flex-container {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgb(187, 179, 179);
    }
    .filter-flex-container {
    display: flex;
    justify-content: space-between;
    }
    .table-flex-container > .tableContect {
    width: 50%;
    text-align: center;
    line-height: 9px;
    font-size: 16px;
    }
    
    .tableContect h5 {
    font-size: 16px;
    font-weight: 600;
    font-family: 'CiscoSans Regular';
    }
    .tablehead {
      display: flex;
    }
    .tableContect .tab {
    float: right;
    }
    /* Style the buttons inside the tab */
    .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    }
    
    /* Change background color of buttons on hover */
    .tab button:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    }
    /* Create an active/current tablink class */
    .tab button.active {
    font-size: 16px;
    border-bottom: 2px solid #000;
    font-weight: 600;
    font-family: 'CiscoSans Regular';
    }
    
    /* Style the tab content */
    .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
    }
    .filterSection {
    width: 89%;
    margin: 25px 0 0 0;
    }
    .filterSection .pad-1-5r {
    padding: 0;
    }
    .setMaxCount {
    margin: 25px 0px 25px 0;
    }
    button.setcount {
    width: 150px;
    height: 40px;
    border-radius: 29px;
    border: 1px solid #d4d4d4;
    font-family: 'CiscoSans Regular';
    background: #d4d4d4;
    font-size: 14px;
    
    }

    .CAtablecss {
      width: 100%;
      table-layout: fixed;
      background-color: white;
    }
    
    .CAtablecss th {
      border-bottom: 1px solid var(--gray-light-2);
      height: 2rem;
      text-align: left;
      padding-left: 1rem;
      overflow: hidden;
      text-overflow: ellipsis;
      /*white-space: nowrap;*/
    }
    
    .CAtbodycss td {
      height: 1.5rem;
      padding-left: 1rem;
      max-width: 0;
      /*overflow: hidden;*/
      text-overflow: ellipsis;
      /* white-space: nowrap; */
      font-size: 0.8rem;
      padding-top: 0.5rem;
      padding-right: 0.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid lightgrey;
    }

    .CAtbodycss td title{
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
    .inner_table {
      height: 500px;
      overflow-y: auto;
    }
    .CAtooltip {
      position: relative;
      display: inline-block;
    }
    .TrunkTextWrap{
      width: 100%;
      word-break: break-all;
    }
    .CAtooltip .tooltiptext {
      visibility: hidden;
      width: 120px;
      background-color: black;
      color: #fff;
      border-radius: 6px;
      padding: 10px 10px;
      position: absolute;
      z-index: 1;
      top: -10px;
      font-size: 12px;
      left: 105%;
    }
    
    .CAtooltip .tooltiptext::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 100%;
      margin-top: -14px;
      border-width: 5px;
      border-style: solid;
      border-color: transparent black transparent transparent;
    }
    .CAtooltip:hover .tooltiptext {
      visibility: visible;
    }
    .actionColoumn{
      display: flex;
    }
    .modalInput input {
      width: 200px;
      height: 30px;
    }
     .dateRange{
      font-size: 14px;
      font-weight: bold;
      margin-left: 5px;
    }
    .CAModalpopup .modal-cancel-btn {
      background: #DEDEDE;
      border-radius: 100px;
      color: #000;
    }
    .CAModalpopup .modal-cancel-btn {
      background: #DEDEDE;
      border-radius: 100px;
      color: #000;
    }
    .CAModalpopup p {
      text-align: center;
      font-size: 14px;
      font-family: CiscoSansTT Bold, Helvetica Neue, Helvetica, Arial, sans-serif;
      color: #545454;
    }
    .CAcheckboxStyle {
      width: 20px; 
      position: sticky;
      top: 0; 
      background-color: #f3f4f5;
      z-index: 2;
    }
    .CAtablediv {
      overflow-y: scroll;
      height: 500px;
    }
    .CAthstyle {
      position: sticky;
      top: 0;
      background-color: #f3f4f5;
      z-index: 2;
    }
    .CAModalStyle {
      width: 440px;
       height: 276px;
    }
    .CAModalTitle {
      text-align: center;
      font-weight: 700;
      font-size: 16px;
    }
    .CAtablecss th b {
      font-weight: bold;
  }
    .textWrapper {
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: normal;
  }

.grid-item li:nth-child(3) .hover-tip {
  max-width: 8rem;
}

.piimodal {
  width: 35%;
  height: 40%;
}

.piimodalerror {
  width: 20%;
  height: 20%;
}

.piiText {
  padding: 1rem 2.5rem
}


.piicancel {
  border-radius: 100px;
}

.covid19_resp_res {
  color: #F7644A;
  font-family: CiscoSansTT;
  font-size: 16px;
  line-height: 150%;
  left: 10px;
  padding: 12px;
}

.bt-default-style {
  margin-top: 0.5rem;
  background-color: #007AA3;
  color: white;
  border-radius: 0.875rem;
  flex-direction: row;
  display: flex;
  padding: 0.25rem 0.75rem;
  align-items: center;
  margin-left: auto;
}

  .line-multiselect{
    display: inline-block;
    width: 100%;
    border-top: 0.5px solid #9E9EA2
  }

  .display-none{
    display: none;
  }
/* New Tab component css */

  .tab-element {
    display: flex;
    color: #555;
    cursor: pointer;
  }
  
  li.tab-element.active a{
    padding-bottom: 0.5rem;
    border-bottom: 0.188rem solid #000000;
  
  }
  
  .tab-element a:hover {
    border-bottom: 0.188rem solid #949494;
  }

  .tab-list {
    display: flex;
    column-gap: 1%;
    justify-content: flex-end;
  }
  
  .tab-content.active {
      display: block;
    }
    
  .tab-content {
      cursor: default;
      display: none;
    }
  
/* Advanced Table component css*/

.text-right-align {
  text-align: right; 
}

.advanced-data-table-thead tr th {
  padding-top: 1rem;
  padding-right: 0.75rem;
  padding-bottom: 1rem;
  padding-left: 0.75rem;
  font-weight: 600;
  text-align: left;
}

.advanced-data-table-wrapper {
  height: 40rem;
  overflow: auto;
}

.advanced-table-class thead {
  position: sticky;
  top: 0;
}

.advanced-data-table-tbody tr td {
  padding-top: 0.625rem;
  padding-right: 0.75rem;
  padding-bottom: 0.625rem;
  padding-left: 0.75rem;
  color: #121212;
  line-height: 1.313rem;
  font-size: 0.875rem;
}

.advanced-data-table tr {
  border-bottom: 0.063rem solid #dedede;
}
.advanced-data-table th {
  font-size: 0.875rem;
  line-height: 1.125rem;
}

tr.lastPageData {
  border-bottom: 3px solid grey;
}

.strech-page {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ededed;
}

.modal.small {
  width: 35vw;
  height: 50vh;
}

input[type="text"].error:focus {
  box-shadow: 0 0 2px 1px var(--red);
}

.cluster-not-found .header {
  margin-bottom: 2rem;
}
.cluster-not-found .container {
  margin: 0 20%;
}

.infinite-scroll-component {
  overflow: inherit !important;
}

.text-blue-light {
  color: var(--blue-light-1) !important;
}

.underline:hover{
  text-decoration: underline;
  cursor: pointer;
}

.redirect-modal .infinite-scroll-component__outerdiv {
  padding: 20px;
}

.redirect-modal .advanced-table-class {
  width: 100%;
}

.redirect-modal .lastPageData {
  display: none;
}
.redirect-modal {
  overflow: auto;
}
.redirect-modal .advanced-data-table-wrapper {
  max-height: 40vh;
  overflow: auto;
  height: auto;
}

.modal-chip-container {
  max-height: calc(50vh - 10rem);
}

.header-options > div:first-child {
  margin-right: 0.5rem;
}

.sharedFilter  {
  width: 34rem;
  height: 11rem;
  right: 1.5rem;
  top: 2.8rem;
  border-radius: 0.2rem;
  background-color: white;
  box-shadow: 0rem 0.2rem 0.5rem rgb(0 0 0 / 16%), 0rem 0rem 0rem rgb(0 0 0 / 16%);
}

.sharedborder{
  height: 6rem;
  width: 12rem;
  border-radius: 0.25rem;
  box-shadow: 0rem 0rem 0.3rem 0.125rem #C7EEFF;
  border: 0.063rem solid #b2b2b2;
  background: white;
  cursor: pointer;
  align-items: stretch;
} 

.sharedborder:disabled{
  cursor: default;
  box-shadow: none;
}

.sharedtext{
  padding: 0.9rem 0.6rem 1rem 0.6rem;
}

.label-text{
  display: block;
  background-color: #07C1F5;
  padding: 0.3rem 0.5rem 0.2rem 0.5rem;
  font-size: 0.75rem;
  color: #333;
  white-space: nowrap;
  border-radius: 0.2rem;
  margin: -0.3rem 0.2rem 0.3rem 0rem;
  color: white;
  width: fit-content;
  font-weight: bold;
}

.errorMessage{
  color:#f00;
  margin-left: 3rem;
  margin-top: 0.6rem;
  font-size: 0.8rem;
}

/* Add border on card hover */
.card:hover {
  border-color: #0000;
  outline: 0;
  box-shadow: 0 0 4px 2px rgba(0, 160, 209, 0.75);
}

/* Tooltip on info icon of card css */
.tooltip-card {
  display: inline-block;
  flex-wrap: nowrap;
  justify-content: center;
  outline: none;
  white-space: pre-line;
}

.tooltip-card .tooltiptextArrow {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: left;
  border-radius: 0.5rem;
  padding: 0.5rem;
  position: absolute;
  z-index: 1;
  width: max-content;
  bottom: 150%;
  left: -8.1rem
}

.tooltip-card .tooltiptextArrow::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip-card .tooltiptextArrowRight {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: left;
  border-radius: 0.5rem;
  padding: 0.5rem;
  position: absolute;
  z-index: 1;
  width: max-content;
  left: 150%;
}

.tooltip-card .tooltiptextArrowRight::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 100%; 
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
}

.tooltip-card:hover .tooltiptextArrowRight,
.tooltip-card:hover .tooltiptextArrow {
  visibility: visible;
}
/* stylelint-enable */