.module-title {
  margin: 0 20px;
}

.phone-table-row-wrapper {
  margin: 10px 0px;
  padding: 5px 15px;
  background-color: #fff;
  border: 1px solid #cecece;
  border-radius: 3px;
  box-shadow: 0 0 3px #aaaaaa;
  cursor: pointer;
  color: black;
}

.phone-table-row-wrapper:hover {
  background-color: #eee;
  box-shadow: 0 0 5px #8d8d8d;
}

.phone-table-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  pointer-events: none;
}

.first-row {
  font-size: 14px;
}

.second-row {
  font-size: 12px;
}

.amount {
  font-family: 'OCR A Extended', sans-serif;
  font-size: 14px;
}

.amount-aligned {
  text-align: right;
}


.flyout-overlay {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 3;
  opacity: 0.4;
  display: none;
}

.flyout-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-stack>.outlet>.flex-fixed {
  flex: 0 0 auto;
  background-color: rgb(190, 190, 255);
}

.outlet-scroller {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.moduleName {
  font-size: 24px;
  font-weight: 600;
  padding: 0px 16px;
}

.create-button-container {
  display: flex;
  align-items: center;
}

.create-button {
  background-color: rgb(40, 40, 40);
  color: #fff;
  min-width: 120px;
  min-height: 32px;
  flex-grow: 1;
  border-radius: 18px;
  text-align: center;
  border: 2px solid transparent;
  box-sizing: border-box;
  box-shadow: none;
  margin: 0;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 14px;
  /* font-weight: 600; */
  padding-block: 4px;
}

.create-button:hover {
  background-color: #393A3D;
  box-shadow: 0 2px 5px #aaaaaa;
  /* color: #000;
  background-color: #efefef;
  border-color: #6c757d; */
}

.tableContainer {
  padding: 20px;
}

.table-scroll-wrapper {
  width: 100%;
  height: 100%;
  overflow: visible;
  position: relative;
}




/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#000 94%,#0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%,#393A3D);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13{ 
  100%{transform: rotate(1turn)}
}





/* HTML: <div class="loader"></div> */
/* .loader {
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
  0% {
    box-shadow: 20px 0 #000, -20px 0 #0002;
    background: #000
  }

  33% {
    box-shadow: 20px 0 #000, -20px 0 #0002;
    background: #0002
  }

  66% {
    box-shadow: 20px 0 #0002, -20px 0 #000;
    background: #0002
  }

  100% {
    box-shadow: 20px 0 #0002, -20px 0 #000;
    background: #000
  }
} */



.data-table {
  /* font-family: var(--ids-c84c8e); */
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  /* font-weight: var(--ids-a4f2e4);*/

  font-size: 12px;
  /* line-height: var(--ids-dd6520); */
  /* color: var(--ids-0a929c,#393a3d); */
  width: 100%;
  /* font-weight: var(--ids-0fa7f5); */
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}

.data-table thead {
  display: table-header-group;
  vertical-align: middle;
  border-color: inherit;
}

.data-table th {
  border-bottom: 2px solid #b0b2b6;
}

table {
  color: #434343;
  background-color: #fff;
  border-top: hidden;
  font-family: 'Helvetica';
  font-weight: thin;
  font-size: 12px;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-top: 5px;
  /* margin-bottom: 1rem; */
  vertical-align: top;
  overflow-y: auto;
}

thead {
  /* display: table-header-group; */
  vertical-align: middle;
  /* border-color: inherit; */
  color: #434343;
  background-color: #EFEFEF;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  /* z-index: 1; */

  /* overflow-x: hidden; */
}

table>thead>tr>th {
  /* display: table-cell; */
  border: solid 1px #c1c5cb;
  border-bottom-width: 2px;
  border-top: hidden;
  border-right: hidden;
  padding: 3px 5px;
  white-space: nowrap;
}

table>thead>tr>th:first-child {
  border-left: none;
}

table>thead>tr>th:last-child {
  border-right: none;
}

table>tbody {
  overflow-x: scroll;
  /* scroll-snap-type: y mandatory; */
}

/* table>tbody>tr{
    display: table;
    table-layout: fixed;
    even columns width , fix width of table too
    scroll-snap-align: start;
  } */

table>tbody>tr:hover {
  cursor: pointer;
}

table>tbody>tr:hover {
  background-color: #eeeeee;
}

table>tbody>tr>td {
  border: 1px solid #c1c5cb;
  border-top: hidden;
  border-right: hidden;
  padding: 1px 3px;
}

table>tbody>tr>td:first-child {
  border-left: none;
}

table>tbody>tr>td:last-child {
  border-right: none;
}

table>tbody>tr:last-child>td {
  border-bottom: hidden;
}

/* .create-button::after {
    position: absolute;
    display: block;
    content: '';
    pointer-events: none;
    z-index: 1;
    right: -2px;
    height: calc(100% + 2px);
    border-right: 1px solid rgba(255,255,255,.5);
  }  */

/* .flex-stack > .scroller, .flex-stack > .flex-flexible {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: auto;
  } */





/* h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 10px;
  } */

.loader-mask {
  flex: 1;
  width: 100%;
  background: #000000;
  z-index: 3;
  opacity: 0.4;
  display: none;
}


.tabbed-nav-container-default {
  -webkit-padding-start: 0px;
  list-style-type: none;
  font-size: 16px;
  padding: 20px 16px 0 16px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  margin-bottom: 0px;
}

.tabbed-nav-container-default:after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 3px 3px 0 0;
  /* position: absolute; */
  bottom: -2px;
  background: #e3e5e8;
}

.tabbed-nav-container-default .tabbedSecondaryNavItem {
  line-height: normal;
  display: inline-block;
  position: relative;
  border: 0;
}

.tabbed-nav-container-default .tabbedSecondaryNavItem a {
  font-size: 16px;
  color: #393a3d;
  font-weight: 400;
  padding: 4px 16px;
  display: block;
  text-decoration: none;
  line-height: 28px;
  height: 36px;
}

.tabbed-nav-container-default .tabbedSecondaryNavItem a:focus {
  background-color: #ECEEF1;
}

/* .tabbed-nav-container-default .tabbedSecondaryNavItem:not(.active) a:hover {
    background-color: blueviolet;
  } */

.tabbed-nav-container-default .tabbedSecondaryNavItem:not(.active):hover::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 3px 3px 0 0;
  position: absolute;
  bottom: -2px;
  background: #babec5;
}

.tabbed-nav-container-default .tabbedSecondaryNavItem:not(.active) a:hover {
  /* color: blueviolet; */
  font-weight: 500;
}

.tabbed-nav-container-default .tabbedSecondaryNavItem.active a {
  color: #393a3d;
  font-weight: 600;
}

*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tabbed-nav-container-default .tabbedSecondaryNavItem.active::after {
  content: "";
  width: 100%;
  height: 4px;
  display: block;
  border-radius: 2px 2px 0 0;
  position: absolute;
  bottom: -2px;
  /* background: #2ca01c; */
  background: rgb(40, 40, 40);
}

ul,
ol {
  margin-top: 0;
}

ol li,
ul li {
  font-size: 1em;
  /* line-height: 1.5em; */
  margin: 0;
}



.tableContainer .table-scrollWrapper {
  width: 100%;
  overflow: auto;
  position: relative;
}

.tableAddOns {
  margin: 20px 0px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.tableAddOnsLeft {
  display: flex;
}

.tableAddOnsRight {
  display: flex;
}

.jowqfk {
  min-width: 290px;
  max-width: 320px;
}

.knXpOy {
  color: rgb(57, 58, 61);
}

.qbshared-core-search-ui {
  visibility: visible;
  background-color: #fff;
}

.dHzatn {
  position: relative;
  border: 1px solid rgb(212, 215, 220);
  border-radius: 3px;
  display: flex;
  padding: 2px 8px 2px 0px;
}

.dHzatn:hover {
  box-shadow: 0 0 2px rgba(161, 161, 161, 0.25);
  border-color: #6c726b;
}

.dHzatn:focus-within {
  box-shadow: 0 0 2px rgba(161, 161, 161, 0.25);
  border-color: #6c726b;
}

.sIrKJ {
  width: 100%;
  height: 25px;
  border: 0px solid;

  outline: none;
  /* height: 32px;
    border: 1px solid #BABEC5; */
  padding: 0 8px;
  border-radius: 2px;
  transition-property: border;
  transition-duration: 0.35s;
  font-size: 13px;
  background-color: #ffffff;
  box-sizing: border-box;
  -webkit-appearance: none;
  /* width: 100%; */
  vertical-align: middle;
}

.hi {
  /* color: #393A3D; */
  font-family: harmonyicons;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.hi-search:before {
  content: "\1F50D\FE0E";
}

.ePQuLR {
  color: #6b6c72;
  top: auto;
  /* margin-top: 5px; */
  margin-top: 3px;
  /* font-size: 24px; */
  font-size: 22px;
  cursor: pointer;
}

.ePQuLR:hover {
  color: #393A3D;
}

.control-icon {
  text-align: center;
  padding: 0px 10px;
  margin-left: 5px;
  cursor: pointer;
  /* font-weight: 700; */
  color: #6b6c72;
  background-color: none;
  vertical-align: middle;

}

.control-icon:hover {
  color: black;
}

.tableAddOnsRow {
  display: flex;
  margin-top: 5px;
}

.reportDataControls {
  margin-right: 5px;
}

.reportTableControls {
  font-size: 24px;
  text-align: center;
  padding: 0px 10px;
  margin-left: 5px;
  cursor: pointer;
  font-weight: 700;
  color: #6b6c72;
  transition: 0.4s ease-out;
  transform: initial;
}

.reportTableControls:hover {
  color: black;
  transform: rotateZ(90deg);
  /* font-size: 26px; */
}

.searchControl {
  min-width: 290px;
  max-width: 320px;
}

.simpleSearchInput {
  position: relative;
  border: 1px solid rgb(212, 215, 220);
  border-radius: 3px;
  display: flex;
  padding: 2px 8px 2px 0px;
}

input {
  margin: 0;
  font-weight: 400;
}

.simpleSearchInput input {
  width: 100%;
  height: 30px;
  border: 0px solid;
}

.simpleSearchInput p {
  top: auto;
  margin: 0;
  font-size: 20px;
}

._loading_overlay_wrapper {
  position: relative;
}

.table-scrollWrapper {
  margin-top: 10px;
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  position: relative;
}