.loader {
    display: inline-block;
    /* width:100%;
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;  */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-65px, -130px);
    /* /* padding: 20px; */
  }
  
  .logo-with-adjusted-position {
    display: inline-block;
    position: absolute !important;
    top: 70% !important;
    left: 60% !important;
    transform: translate(-65px, -130px);
  }
  
  .logo-with-adjusted-position-document {
    display: inline-block;
    position: absolute !important;
    top: 60% !important;
    left: 55% !important;
    transform: translate(-65px, -130px);
  }
  
  .table-loader{
    display: inline-block;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translate(-45px, -130px);
  }
  
  .axis {
    height: 100%;
    width: 100%;
    /* border-radius: 50%; */
    /* border: 2px solid rgba(0, 0, 0, 0.2); */
    /* animation: fade 1.2s infinite ease-in-out; */
  }
  
  .spinner-circle {
    width: 110px;
    height: 110px;
    position: relative;
    margin: 20px;
  }
  
  .spinner-circle-small {
    width: 50px;
    height: 50px;
    position: relative;
    margin: 20px;
  }
  
  .spinner {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 5px solid rgba(0, 0, 0, 0);
    border-top: 1px solid rgba(88, 88, 88, 0.6);
    border-right: 3px solid rgb(88, 88, 88);
    animation: rotate--spinner 1.2s linear infinite;
    box-sizing: border-box;
    /* -webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 1)); */
    position: absolute;
    left: 0%;
    top: 0%;
    transform: translate(-50%, -50%);
  }
  
  .logo-A {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
  }
  
  .logo-A polyline,
  .logo-A line,
  .logo-A path {
    fill: none;
    stroke: #347dec;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: 0.2s;
  }
  
  /* ------------------------------------------large-loader------------------------------------------ */
  
  .large-loader {
    display: inline-block;
    /* width:100%;
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;  */
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-65px, -130px);
    /* /* padding: 20px; */
  }
  
  .large-loader .axis{
    height:100%;
    width:100%;
    /* border-radius: 50%; */
    /* border: 2px solid rgba(0, 0, 0, 0.2); */
    /* animation: fade 1.2s infinite ease-in-out;   */
  }
  
  .large-loader .spinner-circle {
    width: 130px;
    height: 130px;
    position: relative;
    margin: 20px;
  }
  
  .large-loader .spinner {
    height: 104%;
    width: 103%;
    border-radius: 50%;
    border: 5px solid rgba(0,0,0,0);
    border-top: 2.5px solid rgba(68, 68, 68, 0.6);
    border-right: 4px solid rgba(73, 73, 73, 0.9);
    animation: rotate--spinner 1s linear infinite;
    box-sizing: border-box;
    -webkit-mask-image: -webkit-linear-gradient(
      top,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 1)
    );
    transform: rotate(-45deg);
    position: absolute;
    left: 0%; top: 0%;
    transform: translate(-50%,-50%);
  }
  
  .large-loader .logo-A {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    font-size: 50px;
  }
  
  .large-loader .logo-A  polyline,
  .large-loader .logo-A line,
  .large-loader .logo-A path {
    fill: none;
    stroke: #347dec;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: 0.2s;
  }
  
  
  @keyframes rotate--spinner {
    from {
      transform: rotate(0);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes fade {
    0% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
    }
  }
  
  
  
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: auto;
  background: #f0f2f5;
  background-image: url('https://gw.alipayobjects.com/zos/rmsportal/TVYTbAXWheQpRcWDaDMu.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.unsubscribe-image {
  height: 120px;
  width: 120px;
}

.card-with-shadow {
  width: 500px;
  box-shadow: 0 1px 2px -2px rgb(0 0 0 / 16%), 0 3px 6px 0 rgb(0 0 0 / 12%), 0 5px 12px 4px rgb(0 0 0 / 9%);
}

.animate {
  animation: MoveUpDown 0.5s linear infinite;
  position: relative;
}

.animate-slow {
  animation: MoveUpDown 3s linear infinite;
  position: relative;
}

@keyframes MoveUpDown {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: 6px;
  }
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir'), url(https://d3orjnh3kqi01n.cloudfront.net/assets/AvenirLTStd-Book.813557df4c7a90b1a474..otf) format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir'), url(https://d3orjnh3kqi01n.cloudfront.net/assets/AvenirLTStd-Black.7ce894e12078ca8c5134..otf) format('truetype');
  font-weight: 1000;
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir'), url(https://d3orjnh3kqi01n.cloudfront.net/assets/AvenirLTStd-Roman.0bfb049d9455e81fd1da..otf) format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir'), url(https://d3orjnh3kqi01n.cloudfront.net/assets/AvenirLTStd-Light.4343d6ec50614bf0b4a4..otf) format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir'), url("https://d3orjnh3kqi01n.cloudfront.net/assets/Avenir LT Std 65 Medium.adcbfbb892596d80fae1..otf") format('truetype');
  font-weight: 600;
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir'), url(https://d3orjnh3kqi01n.cloudfront.net/assets/AvenirLTStd-Heavy.af8024e51be7ca0b7550..otf) format('truetype');
  font-weight: 900;
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir'), url(https://d3orjnh3kqi01n.cloudfront.net/assets/AvenirLTStd-Book.813557df4c7a90b1a474..otf) format('truetype');
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir'), url(https://d3orjnh3kqi01n.cloudfront.net/assets/AvenirLTStd-Book.813557df4c7a90b1a474..otf) format('truetype');
}

.cardDiv {
  margin: 24px 24px 0px;
}

.anticon {
  vertical-align: unset;
}

.supplierDetailsDiv {
  padding: 0px 8px;
  text-align: left;
  font-size: 12px;
}

.supplierDetailsDiv span {
  font-weight: 600;
}

.supplierDetailsDiv.supplierNote span {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

@media only screen and (max-width: 991px) {
  .cardDiv {
    margin: 24px 0px 0px;
  }
  .ant-table-wrapper {
    overflow-x: scroll;
  }
  .ant-table table {
    width: max-content !important;
  }
}

th.center-align,
td.center-align {
  text-align: center !important;
}

th.numeric-column,
td.numeric-column {
  text-align: right !important;
}

th.center-align,
td.center-align {
  text-align: center !important;
}

.ant-table-thead > tr > th {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: grey !important;
}

.ant-table-cell {
  color: grey !important;
}

.ant-legacy-form-item-label > label {
  font-size: 12px !important;
  text-transform: uppercase;
  color: grey !important;
}

.ant-table-tbody > tr > td {
  font-size: 12px;
}

.ant-card-head-title {
  text-transform: uppercase;
}

.greenBackground {
  background-color: #e5f9d8 !important;
}

.react-grid-Cell {
  padding: 0 !important;
  border-left: none !important;
  border-right: none !important;
}

.react-grid-Main {
  outline: none !important;
}

.react-grid-Grid {
  border: none !important;
}

.datagrid-error-cell {
  border: 1px solid red !important;
}

.datagrid-updated-by-supplier {
  width: 5px;
  height: 34px;
  background-color: orange;
}

.datagrid-error-cell::-webkit-scrollbar {
  display: none;
  background: transparent;
}

.datagrid-expired-field {
  width: 5px;
  height: 34px;
  background-color: grey;
}

.ant-tooltip {
  max-width: 41vw !important;
}

.ant-pagination-options {
  display: none !important;
}

#fc_frame,
#fc_frame .fc-widget-small {
  left: 96px;
  bottom: 30px;
}
.antd-pro-notice-icon-list::-webkit-scrollbar {
  width: 10px;
  display: block !important;
}

/* Track */
.antd-pro-notice-icon-list::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  border-radius: 6px;
}

/* Handle */
.antd-pro-notice-icon-list::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0px;
  background: #dcdce6;
  border-radius: 0px;
}

.antd-pro-notice-icon-list::-webkit-scrollbar-thumb:window-inactive {
  background: #626270;
}

.antd-pro-notice-icon-list::-webkit-scrollbar-thumb:hover {
  background: #bcbcd1;
  cursor: pointer;
}

/* -------------- lineItem --------------- */

.new-listing-row td {
  min-height: 40px;
  max-height: 70px;
  padding: 0 !important;
  margin: 0;
}

.new-listing-row tr {
  background-color: white !important;
}

.new-listing-row td .ant-input {
  padding: 9px !important;
  min-height: 40px !important;
  max-height: 70px !important;
  /* font-size: 14px;
  font-family: Impact; */
  margin-bottom: 0;
  border: none;
}

.new-listing-row .ant-input-number {
  padding: 0 !important;
  min-height: 40px !important;
  max-height: 70px !important;
  width: 100% !important;
  border: none;
  background-color: white !important;
}

.new-listing-row .ant-select-selector {
  min-height: 40px !important;
  max-height: 70px !important;
  overflow: auto;
  border: none !important;
}

.new-listing-row .ant-input-number-input {
  width: 100%;
  margin-top: 5px;
}

.new-listing-row .ant-select-selector .ant-select-selection-search-input {
  margin-top: 8px !important;
}

.new-listing-row .ant-select-selector .ant-select-selection-placeholder {
  color: rgb(221, 221, 221);
  margin-top: 6px;
}
.new-listing-row .product-select .ant-select-selector .ant-select-selection-placeholder {
  margin-top: 8px;
}

.new-listing-row .ant-select-selector .ant-select-selection-item {
  margin-top: 5px;
}

.new-listing-row .ant-picker {
  height: 40px !important;
  border: none;
}

.new-listing-row .antd-pro-ellipsis-lineClamp {
  margin-left: 10px;
  width: 90%;
}

.new-listing-row td {
  background-color: white !important;
}

.deletedRow td {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.new-listing-row .no-margin-top .ant-select .ant-select-selection-placeholder {
  margin-top: 0px !important;
}

.ant-table-cell-ellipsis .ant-table-filter-column-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: keep-all;
}

.ant-table-cell-ellipsis .ant-tag {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: keep-all;
}

.mandatory-field:before {
  display: inline-block;
  content: '*';
  font-family: SimSun, sans-serif;
  line-height: 1;
  color: #ff4d4f;
  font-size: 14px;
  margin-right: 6px;
}

.white {
  background-color: 'white';
}

.red .ant-table-cell {
  border-top: 1px solid red !important;
  border-bottom: 1px solid red !important;
  /* border-right: 1px solid red !important; */
}

/* AG Grid styles below */
.ag-root.ag-layout-normal {
  /* min-height: 250px !important; */
}

.ag-grid-custom-placeholder {
  color: lightgray;
}

.ag-center-cols-viewport::-webkit-scrollbar {
  height: 0px;
}

.ag-center-cols-container,
.ag-header-row,
.ag-header-container {
  min-width: 100%;
}

.ag-root-wrapper-body.ag-layout-normal {
  height: 100% !important;
}
.ag-theme-material .ag-ltr .ag-cell {
  border-right: 1px solid lightgrey;
}
.ag-theme-material .ag-header-cell,
.ag-theme-material .ag-header-group-cell {
  border: 1px solid lightgrey !important;
}
.ag-theme-material .ag-ltr .ag-has-focus .ag-cell-focus:not(.ag-cell-range-selected),
.ag-theme-material .ag-ltr .ag-context-menu-open .ag-cell-focus:not(.ag-cell-range-selected),
.ag-theme-material .ag-ltr .ag-has-focus .ag-full-width-row.ag-row-focus .ag-cell-wrapper.ag-row-group,
.ag-theme-material .ag-ltr .ag-cell-range-single-cell,
.ag-theme-material .ag-ltr .ag-cell-range-single-cell.ag-cell-range-handle,
.ag-theme-material .ag-rtl .ag-has-focus .ag-cell-focus:not(.ag-cell-range-selected),
.ag-theme-material .ag-rtl .ag-context-menu-open .ag-cell-focus:not(.ag-cell-range-selected),
.ag-theme-material .ag-rtl .ag-has-focus .ag-full-width-row.ag-row-focus .ag-cell-wrapper.ag-row-group,
.ag-theme-material .ag-rtl .ag-cell-range-single-cell,
.ag-theme-material .ag-rtl .ag-cell-range-single-cell.ag-cell-range-handle {
  border-color: #3f51b5 !important;
}
.ag-theme-material .apply-styles {
  border-right: none;
}
.ag-root-wrapper {
  overflow: unset !important;
}
.ag-menu {
  max-height: unset !important;
}
.ag-grid-custom-placeholder {
  color: lightgray;
}

/* .ag-theme-material .ag-body-viewport,
.ag-theme-material .ag-center-cols-clipper {
  min-height: 200px;
} */

.ag-theme-material .ag-body-viewport {
  max-height: 400px;
}

.custom-header-title .display-name {
  color: rgba(0, 0, 0, 0.54);
}

.ag-theme-material .ag-cell-inline-editing {
  height: 100%;
  padding: 0;
}

.ag-group-value {
  width: 100%;
}

/* AG Grid styles above */

.Ch-Circle {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  padding: 4px;
  border: 1px solid white;
  text-align: center;
  line-height: 8px;
  font-size: 12px;
  display: inline-table;
  margin-left: 4px;
}

.Ch-Circle-2 {
  height: 23px;
  width: 23px;
  line-height: 20px;
  padding: 2px;
}
th.center-align,
td.center-align {
  text-align: center !important;
}

.MuiCheckbox-colorSecondary.Mui-checked {
  color: #3889eb !important;
}

html {
  scrollbar-gutter: stable;
}

.ant-dropdown-menu,
.ant-dropdown-menu-submenu {
  border-radius: 8px;
  color: #323338;
}

.ant-dropdown-menu {
  padding: 8px;
}

.ant-dropdown-menu-item,
.ant-dropdown-menu-submenu-title {
  border-radius: 4px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
}

.ant-dropdown-menu-item:hover,
.ant-dropdown-menu-submenu-title:hover {
  background-color: #dcdfec;
}

.sm .ant-dropdown-menu,
.sm .ant-dropdown-menu-submenu {
  width: 132px;
}

.md .ant-dropdown-menu,
.md .ant-dropdown-menu-submenu {
  width: 264px;
}

.lg .ant-dropdown-menu,
.lg .ant-dropdown-menu-submenu {
  width: 528px;
}

.ant-dropdown-menu-submenu-expand-icon {
  right: 20px !important;
  bottom: 6px;
}

.sm .ant-dropdown-menu-submenu-title {
  width: 118px;
}

.md .ant-dropdown-menu-submenu-title {
  width: 249px;
}

.lg .ant-dropdown-menu-submenu-title {
  width: 513px;
}

.ant-dropdown-menu-item-disabled > span {
  display: flex;
  align-items: center;
}

.tool-tip {
  display: inline-flex;
  vertical-align: middle;
}

.ant-tooltip {
  font-size: 12px;
}

.custom-progress-circle .ant-progress-circle-trail {
  stroke: orange;
}

.progress-pending {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #e7e7e7;
  display: inline-block;
}

.progress-in-progress {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  /* background-color: #fa8c16; */
  background: conic-gradient(#fa8c16 75%, #e7e7e7 25%);
  display: inline-block;
}

.progress-completed {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #52c41a;
  display: inline-block;
}

.custom-tag {
  border-radius: 2px !important;
  border-width: 0 !important;
  padding: 3px !important;
}

.custom-tag > span {
  font-size: 11px !important;
  color: inherit !important;
  display: flex !important;
  justify-content: center !important;
}

/* .custom-tag.ant-tag-red {
  background: #FFD9D9;
  border-color: none;
  color: #B00020;
}

.custom-tag.ant-tag-blue, .custom-tag.ant-tag-green {
  background: #DAF1E3;
  border-color: none;
  color: #007730;
}

.custom-tag.ant-tag-orange {
  background: #FFD3A8;
  border-color: none;
  color: #FF9023;
} */

.custom-tag {
  border-radius: 2px !important;
  border-width: 0 !important;
  padding: 3px !important;
}

.custom-tag > span {
  font-size: 11px !important;
  color: inherit !important;
  display: flex !important;
  justify-content: center !important;
}

.text-typography {
  display: block;
  font-family: 'Avenir' !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12px !important;
  color: #313131;
}

.multi-line-label {
  display: inline-block;
  width: 150px;
  box-sizing: border-box;
  white-space: pre-line;
  word-wrap: break-word;
  font-family: 'Avenir' !important;
  font-size: 12px !important;
}

.popover-line-label {
  display: inline-block;
  width: 200px;
  box-sizing: border-box;
  white-space: pre-line;
  word-wrap: break-word;
  font-family: 'Avenir' !important;
  font-size: 12px !important;
}

.popover-line-label .popover-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  font-family: 'Avenir' !important;
  font-size: 12px !important;
}


.multi-line-label .paragraph {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: 'Avenir' !important;
  font-size: 12px !important;
}

/* .custom-tag.ant-tag-red {
  background: #FFD9D9;
  border-color: none;
  color: #B00020;
}

.custom-tag.ant-tag-blue, .custom-tag.ant-tag-green {
  background: #DAF1E3;
  border-color: none;
  color: #007730;
}

.custom-tag.ant-tag-orange {
  background: #FFD3A8;
  border-color: none;
  color: #FF9023;
} */

