@font-face {
  font-family: "Primary-Regular";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Primary-Semibold";
  src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans-SemiBold.woff") format("woff"), url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Primary-Bold";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff"), url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
/* used for the primary Bold fonts */
/* used for the primary Medium fonts */
/* used for the primary Regular fonts */
/* used for the primary color texts Ex: bordered active tabs  */
/* used for the secondary color texts*/
/* used for the black texts */
/* used for the white color */
/* used for the anchor tags */
/* used for the from label texts and breadcrumb active color */
/* used for the table head text colors */
/* used for the table body text colors */
/* used for the mandatory text colors and validation texts */
/* used for the primary background color  Ex: primary btns  */
/* used for the secondary background color  Ex: secondary btns  */
/* used for the form border color Ex: text box border  */
/* used for the primary border btns color Ex: loadmore border btn  */
/* used for the secondary border btns color Ex: advanced filter border btn  */
/*used for table outer border */
.theme-table {
  border: 1px solid #E6E6EA;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.theme-table thead tr {
  background-color: #ffffff;
}
.theme-table thead tr.accordian-middle {
  vertical-align: middle;
}
.theme-table thead th {
  font-family: "Primary-Bold";
  font-size: 12px;
  color: #3A3A3D;
  padding: 16px 20px;
}
.theme-table tbody tr:nth-child(even) {
  background-color: rgba(70, 71, 117, 0.04);
}
.theme-table tbody tr td {
  font-family: "Primary-Regular";
  font-size: 12px;
  color: #1E1E1E;
  padding: 16px 20px;
  vertical-align: middle;
}
.theme-table tbody tr td a {
  color: #1E1E1E;
}
.theme-table input.form-check-input[type=checkbox] {
  width: 10px;
  height: 10px;
  border: 1px solid #E4E4E4;
  box-shadow: none !important;
  padding: 6px;
  margin-top: -1px;
}
.theme-table input.middle-checkbox.form-check-input[type=checkbox] {
  margin-top: 0px;
  
}

.table-withborder thead tr {
  box-shadow: 0 0 4px #ccc;
}

@media (max-width: 767px) {
  .theme-table thead th {
    font-size: 13px;
  }
  .theme-table tbody tr td {
    font-size: 13px;
  }
}
.table-status {
  width: 12px;
  height: 12px;
  border-radius: 8px;
}

.table-status-live {
  width: 16px;
  height: 16px;
  border-radius: 8px;
}

.success {
  background-color: #11C158;
  border: 4px solid #C6FFDD;
}

.danger {
  background-color: #EE3F3F;
  border: 4px solid #FFD7D7;
}

.scheduled {
  background-color: #5D3FA5;
  border: 4px solid rgba(255, 255, 255, 0.5);
}

.paused {
  background-color: #43A5FF;
  border: 4px solid rgba(255, 255, 255, 0.5);
}

.warning {
  background-color: #EE3F3F;
  border: 4px solid #FFD7D7;
}

.inprogress {
  background-color: #FFB743;
  border: 4px solid #FFF4E3;
}

.draft {
  background-color: #272626;
  border: 4px solid rgba(255, 255, 255, 0.5);
}

.paused {
  background-color: #43A5FF;
  border: 4px solid rgba(255, 255, 255, 0.5);
}

.scheduled {
  background-color: #5D3FA5;
  border: 4px solid rgba(255, 255, 255, 0.5);
}

.default {
  background-color: #A0A0A0;
  border: 4px solid #EDEDED;
}

.thread .table-status {
  position: relative;
}
.thread .table-status.success.completed:after {
  background-color: rgba(17, 193, 88, 0.5);
}
.thread .table-status.warning.completed:after {
  background-color: rgba(255, 183, 67, 0.5);
}
.thread .table-status.danger.completed:after {
  background-color: rgba(238, 63, 63, 0.5);
}
.thread .table-status:last-child:after {
  display: none;
}
.thread .table-status.draft.completed:after {
  background-color: rgba(160, 160, 160, 0.5);
}
.thread .table-status.inprogress.completed:after {
  background-color: rgba(255, 183, 67, 0.5);
}
.thread .table-status:after {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 32px;
  left: 8px;
  top: 1px;
  background-color: rgba(160, 160, 160, 0.1);
}
.thread .table-status-live {
  position: relative;
}
.thread .table-status-live.success.completed:after {
  background-color: rgba(17, 193, 88, 0.5);
}
.thread .table-status-live.warning.completed:after {
  background-color: rgba(255, 183, 67, 0.5);
}
.thread .table-status-live.danger.completed:after {
  background-color: rgba(238, 63, 63, 0.5);
}
.thread .table-status-live:last-child:after {
  display: none;
}
.thread .table-status-live:after {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 38px;
  left: 8px;
  top: 3px;
  background-color: rgba(160, 160, 160, 0.1);
}

.action-drop-down {
  position: relative;
}
.action-drop-down .action-icon {
  cursor: pointer;
  border: 1px solid transparent;
}
.action-drop-down .action-icon.show {
  border: 1px solid #E4E4E4;
}
.action-drop-down .action-icon:hover {
  border: 1px solid #E4E4E4;
}
.action-drop-down .dropdown-menu {
  right: 0;
}
.action-drop-down .list {
  border-bottom: 1px solid #E4E4E4;
  cursor: pointer;
}
.action-drop-down .list:hover {
  background-color: #F8F8F8;
}
.action-drop-down .list:last-child {
  border-bottom: none;
}
.scrollable-actions .action-drop-down  {
  top: auto !important;
  bottom: -2px !important;
  transform: none !important;
  right: 100% !important;
  left: auto !important;
}


.table-accordion-arrow.collapsed {
  transform: rotate(-90deg);
}

.table-accordion-arrow:focus {
  box-shadow: none;
}

.table-accordion-arrow {
  cursor: pointer;
}

.custom-scroll.am-table-scrl {
  overflow-y: scroll;
  min-height: 10px;
  max-height: 580px;
}

.cust-inline-grid-pos {
  top: 53px;
  background-color: #ffffff;
}

.inline-grid-th {
  z-index: 1024;
}

.table-break-space {
  white-space: break-spaces;
}

.custom-input-icon {
  top: 43px;
  right: 26px;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator {
  z-index: 2;
  background: transparent;
  -webkit-appearance: none;
}

.custom-input-width {
  width: 300px;
}

.custom-eye-pos {
  top: 28px;
  right: 482px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.custom-eye-position {
  top: 12px;
  left: 265px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .custom-eye-position {
    right: 30px;
  }
}
.sticky-header table thead tr {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.tab-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
}

.custom-mobile-tab-list {
  flex: none;
}

.table-link:hover {
  color: #A0A0A0;
}

.delete-icon-bg {
  background-color: #FDE1E1 !important;
}

.table-shadow thead tr, .table-shadow thead tr {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
}

.fixedError {
  height: 20px;
  display: inline-block;
}

.passExpansion {
  width: 250px;
}

.plan-grid tbody td {
  border-bottom: 1px solid #f2f2f2;
  padding: 20px 10px !important;
  text-align: center;
}

.plan-grid tbody td:first-child {
  padding: 20px 20px 20px 80px !important;
  width: 35%;
}

.plan-grid tbody tr:last-child td {
  border-bottom: none;
}

.task-name {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  white-space: nowrap;
  min-width: 150px;
  display: block;
}/*# sourceMappingURL=table.css.map */