body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}
.amplify-icon > svg {
  height: var(--amplify-components-icon-height);
  width: var(--amplify-components-icon-height);
  display: none;
  border: none !important;
}

.amplify-liveness-cancel-button {
  background-color: #fff;
  color: hsl(190, 95%, 30%);
  display: none !important;
  border: none !important;
}
button#popover-button {
  border: none;
}
/* @media (max-width: 768px) {
.amplify-liveness-toast--primary .amplify-liveness-toast__message {
    color: var(--amplify-colors-font-inverse);
    text-align: center;
    flex-direction: column;
    display: none;
  }
} */

/* @media (max-width: 768px) {
  .amplify-liveness-toast__message:has(> span:contains("Center your face")) {
    display: none !important;
  }
} */
@media (max-width: 768px) {
  .amplify-liveness-toast__message div[aria-live] {
    font-size: 14px !important;
    /* display: none !important; */
  }

}
@media (max-width: 600px) {
  .css-1kx3dis-MuiGrid-root {
    margin: 0px !important;
  }
}
@media (max-width: 600px) {
  .css-1246g0t-MuiPaper-root-MuiAlert-root {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
  .amplify-alert__body {
    color: inherit;
    display: block;
    font-size: 12px !important;
  }
  .css-vwhg53 {
    padding-top: 10px !important;
  }
  .amplify-liveness-popover {
    position: relative;
    display: none !important;
  }
  .initiate-root {
    padding: 5px !important;
  }
  .css-122jq7f-MuiStepLabel-root {
    padding: 0px 0px !important;
  }
  .amplify-liveness-overlay {
    align-items: center !important;
    justify-content: center !important;
  }
  .amplify-liveness-oval-canvas {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  .amplify-flex.liveness-detector-check {
    gap: 0 !important;
  }
}
@media screen and (min-width: 1024px) {
  button.amplify-button.amplify-field-group__control.amplify-button--primary {
    margin-top: -30px;
  }
}
.facelivenessdetector {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  text-align: center;
}
.amplify-liveness-toast--primary .amplify-liveness-toast__message {
  color: var(--amplify-colors-font-inverse);
  text-align: center;
  flex-direction: column;
  font-size: 19px !important; 
}

.amplify-liveness-overlay {
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}

/* button.amplify-button.amplify-field-group__control.amplify-button--primary {
  padding-top:2px;
  padding-bottom:2px;

} */

/* .image-preview {
    height: 30vh;
    overflow-y: scroll;
      scrollbar-width: 5px!important;          
  scrollbar-color: #670b4e #f1f1f1!important;   
} */

.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.content {
  margin-top: 50px;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
.scrollbar-container {
  position: relative;
  height: 100%; }
*{box-sizing:border-box;margin:0;padding:0}html{height:100%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{background-color:#f4f6f8;height:100%}body #toolbarViewer{display:none !important}a{text-decoration:none}#root{height:100%}.MuiAlert-message-294{margin:0 auto}.MuiFormGroup-root-518{flex-direction:row !important}.MuiSelect-select.MuiSelect-select{width:150px !important}.MuiTypography-h1{font-weight:700 !important}.pick-template input[type=file]{display:none}.custom-file-upload{border:1px solid #ccc;display:inline-block;padding:6px 8px 0px 8px;margin:0px 20px 5px 20px;cursor:pointer}.selected{border:2px solid #670b4e !important}.MuiTableCell-root-768{text-align:center !important}.MuiTableCell-root-770{text-align:center !important}.MuiDropzoneArea-root{min-height:180px !important;border-color:#b3b3b3 !important}.MuiDropzonePreviewList-root{display:flex !important;justify-content:center !important}.my-button{background-color:#07c !important}
* {
  /* font-family: Source Sans Pro !important; */
}

/* Hide vertical scrollbar but still scrollable */
::-webkit-scrollbar {
  width: 0px !important;
  background: transparent !important;
}

h5 {
  margin-top: 10px;
  color: red;
}

.table-file-upload {
  border-bottom: 1px solid #babfc1 !important;
  margin-bottom: 10px;
  max-width: 180px;
  padding-left: 10px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
input[type=text]{
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.button:hover {
  opacity: 0.8;
}
.container {
  padding: 16px;
}
.space {
  padding-top: 10px;
  padding-bottom: 5px;
}

/* Minimal Component CSS */
.minimalRoot {
  height: 100% !important;
}
.childrenContent {
  height: 90% !important;
}
/* Topbar Component CSS */
/* .topAppbar {
  box-shadow: none !important;
} */
.topAppbar {
  box-shadow: none !important;
  width: "100%";
}
.topToolbar {
  min-height: 50px !important;
  background-color: #670b4e !important;
}
.flexGrow {
  flex-grow: 1 !important;
}
.topbarheading {
  font-size: 18px !important;
  color: #ffffff !important;
}
.topbarButton {
  text-transform: none !important;
}
.topbarMenu {
  margin-top: 25px !important;
}
.arrowBackIcon {
  color: #ffffff !important;
  font-size: 18px !important;
  z-index: 99 !important;
  float: right !important;
}
.arrowBackIcon:hover {
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.sidebar-back-arrow {
  color: #ffffff !important;
  font-size: 26px !important;
  z-index: 99 !important;
  float: right !important;
  margin-bottom: 10px !important;
}
.sidebar-back-arrow:hover {
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 10px !important;
}
.icons {
  color: #ffffff !important;
}
.mainTopbarHeading {
  font-size: 18px !important;
  color: #ffffff !important;
}
.companylogo {
  height: 50px !important;
  /* margin-top: 4px; */
  /* width:5% !important */
}
.footerRoot {
  padding: 0% !important;
}
.menuIconTopbar {
  color: #670b4e !important;
  margin-right: 2% !important;
}
.test {
  min-width: 200px !important;
}

