@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0px;
  position: relative;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: var(--toastify-toast-width);
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container[data-stacked='true'] {
    width: 100vw;
  }
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}



:root {
  --font-family-1: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  --font-family-2: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --yellow-color: #ffb90d;
}
.react-datepicker__tab-loop {
  display: inline-block !important;
}
body .react-field-mapping-box {
  font-size: 14px !important;
}
body .react-field-mapping-box .column-title {
  font-weight: bold;
}
body .react-field-mapping-box .source-data,
body .react-field-mapping-box .target-data {
  width: 45%;
}
.email-editor-wrapper {
  position: relative;
}
.editor-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 425px;
  height: 50px;
  background: #eeeeee;
}
.resizeable-dialog-header {
  padding: 0.5rem 1rem;
  position: relative;
}
.resizeable-dialog-header h2 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.0075em;
  margin: 0;
}
.resizeable-dialog-content {
  padding: 16px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.12); */
}
.resizeable-card-maxheight {
  max-height: 258px;
  overflow: scroll;
}
.resizeable-dialog-actions {
  background-color: var(--mui-custom-pageBackgroundColor);
  padding: 10px 24px;
  display: flex;
  justify-content: flex-end;
}
.resizeable-dialog-backdrop {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.resizeable-dialog-box {
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 50%;
  margin-left: -300px;
  margin-top: -200px;
  height: 100%;
}
.dialog-draggable-handle {
  cursor: move;
  width: 100%;
  padding: 8px 0;
}

.resizable-handle {
  position: absolute;
  width: 15px;
  height: 15px;
  bottom: -56px;
  right: 3px;
  cursor: nwse-resize;
  background-color: transparent;
  border-right: 1px solid #0575ce;
  border-bottom: 1px solid #0575ce;
}
.with-doc-dv-position {
  bottom: 3px;
  right: 4px;
}
.resizable-handle-inner {
  position: relative;
}
.resizable-handle-inner::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: -12px;
  right: -12px;
  background-color: transparent;
  border-right: 1px solid #0575ce;
  border-bottom: 1px solid #0575ce;
}
@media (max-width: 1170px) {
  .editor-logo {
    width: 351px;
  }
}
.MuiCheckbox-colorSecondary.Mui-checked {
  color: #0575ce;
}

/** custom css */
.refresh-small-btn .MuiButton-startIcon.MuiButton-iconSizeSmall {
  margin: 0;
}
.arco-trigger {
  z-index: 99999 !important;
}
.MuiDialog-paper {
  overflow-y: hidden;
}
.duplicate_highlight {
  background-color: #ffb5b5 !important;
}

.cp {
  cursor: pointer;
}

.lh-0 {
  line-height: 0;
}

.flex-align {
  display: flex;
  align-items: center;
}

/* custom file upload modal */
.dropzone {
  width: 100%;
  border: dashed;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  max-height: 150px;
  min-height: 150px;
  border-color: var(--mui-custom-formBuilderPanelCardTextColor);
  border-radius: 0.125rem;
  background-color: var(--mui-custom-chatBotUploadContainerBackgroundColor);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.dialog-flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dialog-header-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dialog-header-options .MuiIconButton-root {
  padding: 5px 3px;
}
.active-btn {
  color: rgba(0, 0, 0, 0.54);
}
.hierarchy_row {
  display: flex;
  align-items: center;
  padding: 0 1%;
  margin-top: 25px;
  justify-content: space-between;
}
.level_number_col {
  width: 80px;
  margin-right: 10px;
}
.email_tag_col {
  width: 35%;
  margin-right: 10px;
}
.design_col {
  width: 25%;
  margin-right: 10px;
}
.design_col.small {
  width: 10%;
}
.approval_checkbox_col {
  width: 10%;
}
.approval_checkbox_col .MuiFormControlLabel-root {
  margin-bottom: 0;
}
.em_workflow_btn_wrap {
  display: flex;
}
.mln-9 {
  margin-left: -9px;
}
.table_with_inputs .MuiTableRow-root:first-child {
  vertical-align: top;
}
.edit_group_link {
  font-size: 16px;
  margin-left: 10px;
}
.no_vertical_padding_chk {
  padding: 0 9px;
}

/* loader style start  */
.app-loader {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.loader-block {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  transform: rotateX(50deg) rotateZ(45deg);
  animation: fallDown 1s ease-in-out forwards;
  opacity: 0;
}
.block-blue {
  background: #0476cf;
  animation-delay: 0s;
}

.block-yellow {
  background: #ffb601;
  position: absolute;
  top: 10px;
  z-index: -1;
  animation-delay: 0.5s;
}
.block-red {
  background: #fe007a;
  position: absolute;
  top: 20px;
  z-index: -2;
  animation-delay: 1s;
}
.block-green {
  background: #00e19a;
  position: absolute;
  top: 30px;
  z-index: -3;
  animation-delay: 1.5s;
}
.loader-text {
  position: absolute;
  top: 70px;
  z-index: -3;
  font-size: 20px;
  left: 0;
}

.arco-radio-group.radio-custom .arco-radio {
  margin-right: 10px;
}

@keyframes fallDown {
  to {
    opacity: 1;
  }
}
/* loader style end  */

@media (max-width: 1140px) {
  .email_tag_col {
    width: 40%;
  }
}
@media (max-width: 992px) {
  .level_number_col {
    width: 70px;
  }
  .email_tag_col {
    width: 30%;
  }
}
.site-loader {
  width: 65px;
}
.site-loader img {
  width: 100%;
}
.preview-email-wrapper {
  background: rgb(239, 238, 234);
}
.dialog-flex-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
}
*:not(
    .ag-checked,
    .ag-icon,
    .fa,
    .signature-font-box,
    .formio-component-tooltip *,
    .formio-component-description *,
    .formio-component-template *,
    .formio-component-componentJson *,
    .formio-component-customOptions *,
    .formio-component-textarea *,
    .pdfme-designer-background *
  ) {
  /* font-family: 'Nunito Sans', sans-serif; */
  font-family: var(--font-family-2) !important;
}
.ag-checkbox-input-wrapper:after {
  font-family: 'agGridAlpine' !important;
}
.main-container {
  padding: 0 15px !important;
}

/*common classes*/
.MuiTooltip-popper .MuiTooltip-tooltip {
  font-size: 14px;
}

.a_flex {
  display: flex;
}

.a_align-center {
  align-items: center;
}

.a_flex-align {
  display: flex;
  align-items: center;
}

.a_inline-flex-align {
  display: inline-flex;
  align-items: center;
}

.a_cp {
  cursor: pointer;
}

.menu-bar {
  min-height: unset;
}

.menu-link {
  width: unset !important;
}

.menu-logo-image {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.home-icon {
  width: 28px;
  height: auto;
}

.menu-logo-image-small {
  width: 30px;
  height: 30px;
}

.menu-logo-image-search {
  width: 36px;
  height: 36px;
}

/* menu css */
.ar_menu {
  width: unset !important;
  font-weight: 500 !important;
  border-bottom: 3px solid transparent;
  padding: 3px 6px;
  font-size: 0.89rem;
  color: var(--mui-custom-menuColor);
  margin: 3px 8px 3px 8px;
  position: relative;
  color: #6b7280;
}

.ar_menu:hover,
.active_menu {
  color: var(--mui-custom-featureHeading);
  background-color: transparent;

  /* color: var(--mui-custom-menuColor); */
  /* background: linear-gradient(0deg, rgba(5, 117, 206, 0.2), rgba(5, 117, 206, 0.1), rgba(5, 117, 206, 0)); */
}
.active_menu {
  color: #0575ce !important;
}
.ar_menu.active_menu:after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0575ce;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

/** tiles css */
.card-tiles {
  /* margin: 0 -10px; */
}

.card-tiles-inner {
  width: 100% !important;
  /* margin: 0.6%; */
}
.dashboard-wrapper .card-tiles-inner {
  width: calc(25% - 20px);
}
.dashboard-wrapper .feature-description-block {
  padding-top: 1.5rem;
}
.dashboard-wrapper .feature-title {
  font-size: 17px;
}
.api-form-input .MuiInput-underline:before,
.api-form-input .MuiInput-underline:after {
  content: unset;
}
/* div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  background-color: #0575ce !important;
} */
div:where(.swal2-container) {
  z-index: 9999 !important;
}

.number-input:after {
  display: none;
}

.number-input:before {
  display: none;
}

/* data validation new icons css */
.verify-icon {
  display: block;
  border-radius: 0;
  padding: 0 3px;
  cursor: pointer;
  min-width: auto !important;
}

.verify-icon-inner {
  margin: auto;
  width: 25px;
  height: 25px;
  min-width: unset;
  position: relative;
}
.viewform-icon-inner {
  margin: auto;
  width: 30px;
  height: 23px;
  transform: translateY(-3px);
  min-width: unset;
}

.verify-icon-inner img,
.viewform-icon-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.verify-icon-caption {
  margin: 2px 0 0 0 !important;
  text-transform: capitalize;
  min-width: unset;
  font-size: 12px;
  font-weight: 600;
  min-width: 46px;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.ag-header-group-text {
  font-size: 14px;
}

/** color classes */
.ai-green-color {
  color: #00df97;
}

.ai-blue-color {
  color: var(--mui-custom-dataviewOptionColor);
}

.ai-pink-color {
  color: #fc0279;
}

.ai-orange-color {
  color: #feb300;
}
.primary-color {
  color: #0575ce;
}
.primary-link {
  text-decoration: none;
  color: var(--mui-custom-primaryLinkColor);
}
.primary-link:hover {
  text-decoration: underline;
}

/* mui table bottom border scroll  */
.MUIDataTable-paper-94 table[role='grid'] {
  margin-bottom: 15px;
}
.MUIDataTable-responsiveBase-97::-webkit-scrollbar {
  height: 10px;
  width: 4px;
  background: gray;
  border-radius: 6px;
}

.ag-theme-alpine .ag-column-drop-horizontal {
  height: 30px;
}
.theme-link {
  color: #0575ce;
  text-decoration: none;
}
.theme-link:hover,
.theme-link:focus {
  text-decoration: underline;
}
.mr-10 {
  margin-right: 10px;
}
.edited-col-bg {
  background-color: #dbe8f6;
}
.full-width {
  width: 100%;
}
.plr-10 {
  padding-left: 10px;
  padding-right: 10px;
}
.grid-custom-cell-class.MuiDataGrid-cell {
  padding-left: 0;
  padding-right: 5px;
}
.overflow-hidden {
  overflow: hidden;
}
.creatable-autocomplete-field li:last-child {
  background-color: #d8e6f5;
}
.table-show-selected {
  color: white;
  border: transparent;
}
.context-menu-wrap {
  display: none;
  position: absolute;
  width: 150px;
  background: var(--mui-custom-contextMenuBackgroundColor);
  border-radius: 4px;
  padding: 5px 10px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 18px 0px, rgba(0, 0, 0, 0.15) 0px 7px 10px -5px;
  z-index: 99;
  color: var(--mui-custom-textColor);
}
.context-menu-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.context-menu-list li {
  border-bottom: 1px solid #ddd;
  padding: 2px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  padding: 2px 5px;
  display: flex;
  align-items: center;
}
.context-menu-list li > span {
  padding-left: 5px;
  pointer-events: none;
}
.context-menu-list li > svg {
  pointer-events: none;
}
.context-menu-list li:hover {
  background-color: var(--mui-custom-contextMenuBackgroundHoverColor);
}
.context-menu-list li:last-child {
  border-bottom: none;
}
.reorder-link {
  cursor: pointer;
  margin-right: 10px;
  /* color: #0575ce; */
  display: flex;
  align-items: center;
}
.reorder-link span {
  font-size: 14px;
  font-weight: 600;
}
.reorder-link svg {
  /* fill: #0575ce; */
}
.flex-row {
  flex-direction: row;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.mt-10 {
  margin-top: 10px;
}
.selection-modal {
  max-width: 800px;
  min-width: 800px;
}
.selection_input_row {
  display: flex;
  align-items: center;
  /* justify-content: center; */
}
.selection-modal .MuiPaper-rounded {
  border-radius: 0;
  box-shadow: none;
}
.sel_col_1 {
  width: 30%;
  margin-right: 10px;
}
.sel_col_2,
.sel_col_3 {
  width: 20%;
  margin-right: 10px;
}
.sel_col_4,
.sel_col_5 {
  width: 120px;
  margin-right: 10px;
}
.sel_col_6,
.sel_col_7 {
  width: 150px;
  margin-right: 10px;
  position: relative;
  top: -3px;
}
.sel_col_action_1,
.sel_col_action_2 {
  width: 35px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.select-operator-select .MuiSelect-select.MuiSelect-select {
  font-size: 14px;
  padding: 0.5rem 14px 0.5rem 10px;
}
.select-operator-select .MuiSelect-iconOutlined {
  right: 0;
}
.ds-flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.centered-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.centered-text {
  text-align: center;
}
.compact-table .MuiTableCell-root {
  padding: 5px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mt-15 {
  margin-top: 15px;
}
.initial-lineheight {
  line-height: initial !important;
}
.thumbsup-icon {
  color: #04b66d;
  font-size: 15px;
}
.mr-15 {
  margin-right: 15px;
}
.thumbsdown-icon {
  color: #fd0179;
  font-size: 15px;
}
.filterbox_checkbox_list {
  display: flex;
  padding: 3px 10px;
}
.filterbox_checkbox input[type='checkbox'] {
  visibility: hidden;
  height: 16px;
  width: 16px;
}
.filterbox_checkbox {
  position: relative;
}
.filterbox_checkbox input[type='checkbox']:checked + label:after {
  opacity: 1;
}
.filterbox_checkbox label {
  background: #fff;
  border: 2px solid #999999;
  cursor: pointer;
  height: 16px;
  left: 0;
  position: relative;
  top: 0;
  width: 16px;
  border-radius: 2px;
  margin-bottom: 0;
}
.filterbox_checkbox label.checked {
  background: #2096f3;
  border: 2px solid transparent;
}
.filterbox_checkbox label.checked:after {
  border-style: none none solid solid;
  border-color: white;
  content: '';
  height: 5px;
  left: 2px;
  position: absolute;
  top: 2px;
  transform: rotate(-45deg);
  width: 9px;
}
.ml-5-px {
  margin-left: 5px;
}
.empty-view {
  text-align: center;
  border: 1px solid #eee;
  background: white;
  padding: 20px;
}
.boolean_flex_wrap {
  display: flex;
  padding: 5px 10px;
}
.selected_boolean {
  background: rgba(33, 150, 243, 0.3);
}
.relevant_style_box {
  border: none;
  background: #ffffff;
  padding-top: 5px;
  padding-bottom: 5px;
  display: inline-block;
  width: 100px;
}
.custom_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border: 1px solid #babfc7;
  background-color: #ffffff;
  background-image: none;
  flex: 1;
  padding: 3px 5px;
  cursor: pointer;
  border-radius: 5px;
}
.filter-radio-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  margin-bottom: 5px !important;
}
.custom-radio-group .MuiFormControlLabel-root {
  margin-right: 6px;
  margin-bottom: 0;
}
.custom-radio-group .MuiFormControlLabel-label {
  font-size: 13px;
}
.custom-radio-group .MuiIconButton-root {
  padding: 6px;
}
.custom-radio-group .MuiSvgIcon-root {
  width: 18px;
  height: 18px;
}
select:focus,
select.form-control:focus {
  box-shadow: none !important;
}
.ag-theme-alpine .ag-radio-button-input-wrapper input,
.ag-theme-alpine .ag-radio-button-input-wrapper input {
  /* -webkit-appearance: auto !important; */
  /* opacity: 1 !important; */
}
.ag-radio-button-input-wrapper:after {
  /* content: '' !important; */
}
.ag-theme-alpine .ag-radio-button-input-wrapper.ag-checked::after {
  /* content: '\f127' !important;s */
}
.annotation-toolbar {
  display: flex;
  justify-content: space-between;
}
.canvas-toolbar-inner {
  display: flex;
}
.annotation-props-wrapper {
  width: 30%;
  display: flex;
  flex-direction: column;
}
.annotation-canvas {
  flex-grow: 1;
  width: 70%;
}
.canvas-menu-icon {
  display: none;
}
/* .swal2-popup.access-swal {
  width: 300px;
}
.access-swal .swal2-title {
  font-size: 14px;
}
.access-swal .swal2-icon {
  width: 2em;
  height: 2em;
  margin: 1.5em auto 0.6em;
  border: 2px solid #f27474;
} */

/** media queries */
@media (min-width: 1280px) {
  .main-container {
    max-width: 1600px;
  }
}
@media (min-width: 960px) and (max-width: 1380px) {
  /* .ar_menu {
    padding: 10px 5px;
  } */
  /* .menu-logo-image {
    width: 15px;
    height: 15px;
    margin-right: 5px;
  } */
  .stats-icon .menu-logo-image {
    /* width: 15px !important;
    height: 15px !important; */
    margin-right: 5px;
  }
}

@media (max-width: 1460px) {
  .verify-icon-inner {
    width: 20px;
    height: 23px;
  }
}

/* @media only screen and (max-width: 1366px) {
  .verify-icon-inner {
    margin: 0 12px;
    min-width: 34px;
  }
} */

@media only screen and (max-width: 768px) {
  .online_form_wrapper {
    width: 100% !important;
    min-height: 100%;
    height: 100%;
  }
}

.slider-contact-wrap {
  padding: 40px 20px;
}
.online_form_wrapper {
  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
  background-color: #f9fafc;
}
.online_form_prev_wrap {
  width: 300px;
  padding: 16px 10px;
  height: 300px;
  border: 1px solid #eee;
}
.online_form_prev_box {
  margin: auto;
  background: var(--mui-custom-formWidthPreviewBackgroundColor);
  height: 100%;
}
.mbt-5 {
  margin-bottom: 5px;
}
.bordered-block {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.25rem;
  margin: 0;
  margin-bottom: 10px;
}
.test-text input {
  border: 1px solid red !important;
}
.test-panel {
  background-color: pink;
}
.ag-cell-auto-height {
  line-height: 1.5 !important;
}
.mb-8 {
  margin-bottom: 8px;
}
.dashboard-wrapper {
  position: relative;
}
.coming-soon-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.with-blur-content .dashboard-content {
  filter: blur(5px);
  -webkit-filter: blur(5px);
}
.coming-soon-wrapper p {
  font-size: 40px;
  font-weight: 600;
}
.fade-in-text {
  animation: fadeInText 5s;
}
.row-with-border {
  border: 1px solid #eeeeee;
}
.row-with-border .MuiPaper-rounded {
  background-color: #f9fafc;
}
.elev-with-min-height .MuiPaper-elevation1 {
  min-height: 64px;
}
.mtp-3 {
  margin-top: 3px;
}
.MuiTableCell-paddingCheckbox {
  background-color: white;
}
.form-label {
  color: var(--mui-custom-formLabelColor);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}
.field-has-error {
  border-color: #f44336 !important;
}
.inline-radio-btn-wrap {
  flex-direction: row;
}
.caroursal_close_btn {
  position: absolute;
  right: 0;
}
.react-swipeable-view-container div[data-swipeable] {
  position: relative;
}
.ag-text-field-input[type='date'] {
  min-height: 39px !important;
}
.post_train_option_wrapper {
  margin-top: 15px;
  padding: 10px;
  border: 1px solid #dddddd;
  background-color: var(--mui-custom-datagroupParameterBackgroundColor);
  border-radius: 4px;
}
.list-option {
  font-weight: 600;
  position: static;
  line-height: 35px;
  color: #9d9a9a;
  background: #e0e0e0;
}
.dg-btn-top-pos {
  position: relative;
  top: 17px;
}
.popper-zindex {
  z-index: 1;
}

.cell-with-warning {
  background-color: #ffecbc;
}
.download-dialog .MuiDialog-paperWidthSm.MuiDialog-paperScrollPaper {
  max-height: 100%;
  min-height: 200px;
}
.download-filter-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.download-filter-wrap > span {
  margin-right: 10px;
}
@keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.print-modal {
  display: none; /* Hidden by default */
  /* position: fixed;  */
  position: relative;
  z-index: 1400; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
}

/* Modal Content */
.print-modal-content {
  margin: auto;
  /* padding: 20px; */

  width: 100%;
  /* height: 100%; */
  /* overflow: auto; */
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1400;
  background-color: rgba(0, 0, 0, 0.75);
  height: 100%;
  width: 100%;
}
.ag-cell-wrap-text.ag-cell-value {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
}
.child-grid .ag-cell-wrap-text {
  white-space: nowrap;
}
.child-grid .ag-cell-wrap-text.ag-cell-auto-height {
  height: auto;
  white-space: normal;
}
.ag-cell-wrap-text.ag-cell-value {
  white-space: normal;
}

.ag-large-text {
  border: var(--ag-borders) var(--ag-border-color);
  background: var(--ag-background-color);
  border-radius: var(--ag-card-radius);
  box-shadow: var(--ag-card-shadow);
  background-color: var(--ag-control-panel-background-color);
  padding: 12px 10px 8px 10px;
}
.ag-large-text-cell {
  min-width: 300px;
  /* border: none; */
  outline: none;
  box-shadow: none;
  width: 100%;
  height: 100%;
  resize: both;
}
.with-transy-16 .MuiFormControlLabel-root {
  transform: translateY(16px);
}
.rpv-core__page-layer::after {
  box-shadow: none !important;
}
.floating_close_btn {
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 26px;
  position: fixed;
  z-index: 2;
  right: 10px;
  bottom: 10px;
}
.floating_close_btn svg {
  color: #ffffff;
}
.compact-table {
  box-shadow: none;
}
.compact-table .MuiButton-text {
  padding: 2px 8px;
}
.approval_detail_header {
  width: 100%;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(0deg, rgba(5, 117, 206, 0.2), rgba(5, 117, 206, 0.1), rgba(5, 117, 206, 0));
  box-shadow: 0px 2px 1px -1px rgba(57, 63, 77, 0.2), 0px 1px 1px 0px rgba(57, 63, 77, 0.14),
    0px 1px 3px 0px rgba(57, 63, 77, 0.12);
}
.approval_status {
  text-align: center;
  margin-bottom: 30px;
}
.success-chip {
  color: white;
  border: 1px solid #04b66d;
  background-color: #04b66d;
}
.error-chip {
  color: white;
  border: 1px solid #f44336;
  background-color: #f44336;
}
.workflow_status_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 15px 10px;
}
.email-editor-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 1300;
  background-color: var(--mui-custom-pageBackgroundColor);
  left: 0;
}
.easy-email-editor-tabWrapper,
.arco-drawer {
  background-color: var(--mui-custom-pageBackgroundColor) !important;
}
.arco-tabs-header-title {
  color: var(--mui-custom-textColor) !important;
}
.arco-tabs-header-title-active,
.arco-tabs-header-title-active:hover {
  color: var(--mui-custom-containedPrimaryButton) !important;
}
.easy-email-editor-button {
  background: var(--mui-custom-pageBackgroundColor) !important;
  color: var(--mui-custom-textColor) !important;
  border-radius: 10px !important;
}
.easy-email-editor-tabItem:hover button,
.easy-email-editor-tabActiveItem button {
  color: var(--mui-custom-containedPrimaryButton) !important;
}
.arco-collapse-item-active > .arco-collapse-item-header {
  background-color: var(--mui-custom-emailDesignHeaderBackgroundColor) !important;
  color: var(--mui-custom-textColor) !important;
}
.arco-layout-sider-light {
  background-color: var(--mui-custom-pageBackgroundColor) !important;
}
.arco-collapse-item-content {
  background-color: var(--mui-custom-pageBackgroundColor) !important;
  color: var(--mui-custom-textColor) !important;
}
.arco-typography {
  color: var(--mui-custom-textColor) !important;
}
.arco-row [class^='_blockItem'] {
  border: 1px solid var(--mui-custom-emailOptionBlockBorderColor);
}
.arco-radio-text,
.arco-form-label-item > label,
.os-content,
.arco-textarea {
  color: var(--mui-custom-textColor) !important;
}
.email-editor-wrapper.mobile #VisualEditorEditMode,
.email-editor-wrapper.mobile .arco-layout-sider,
.email-editor-wrapper.mobile .easy-email-editor-tabWrapper {
  display: none;
}
.email-editor-wrapper .unsupported_text {
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
}
.arco-input,
.arco-select .arco-select-view {
  color: var(--mui-custom-kaInputColor) !important;
}
.arco-card {
  background: var(--mui-custom-pageBackgroundColor) !important;
}
.arco-input:focus,
.arco-input.arco-input-focus,
.arco-input-inner-wrapper:focus,
.arco-input-inner-wrapper.arco-input-inner-wrapper-focus,
.arco-textarea:focus,
.arco-textarea.arco-textarea-focus {
  background-color: transparent !important;
}

/* Hide subject field in page attributes panel */
.email-editor-wrapper [name*='subject'],
.email-editor-wrapper [name*='Subject'],
.email-editor-wrapper [name*='SUBJECT'],
.email-editor-wrapper input[name*='subject'],
.email-editor-wrapper input[name*='Subject'],
.email-editor-wrapper input[name*='SUBJECT'],
.email-editor-wrapper .arco-input[name*='subject'],
.email-editor-wrapper .arco-input[name*='Subject'],
.email-editor-wrapper .arco-input[name*='SUBJECT'],
.email-editor-wrapper textarea[name*='subject'],
.email-editor-wrapper textarea[name*='Subject'],
.email-editor-wrapper textarea[name*='SUBJECT'] {
  display: none !important;
}

/* Hide the label for subject field */
.email-editor-wrapper label[for*='subject'],
.email-editor-wrapper label[for*='Subject'],
.email-editor-wrapper label[for*='SUBJECT'],
.email-editor-wrapper .arco-form-item-label label[for*='subject'],
.email-editor-wrapper .arco-form-item-label label[for*='Subject'],
.email-editor-wrapper .arco-form-item-label label[for*='SUBJECT'] {
  display: none !important;
}

/* Hide form item wrapper - using attribute selector to find parent */
.email-editor-wrapper .arco-form-item [name*='subject'],
.email-editor-wrapper .arco-form-item [name*='Subject'],
.email-editor-wrapper .arco-form-item [name*='SUBJECT'] {
  display: none !important;
}

/* Hide the entire form item row - target by finding input and hiding its parent */
.email-editor-wrapper .arco-form-item:has([name*='subject']),
.email-editor-wrapper .arco-form-item:has([name*='Subject']),
.email-editor-wrapper .arco-form-item:has([name*='SUBJECT']) {
  display: none !important;
}

/* Fallback: Hide by data attribute or class if subject field has specific identifiers */
.email-editor-wrapper [data-field-name*='subject'],
.email-editor-wrapper [data-field-name*='Subject'] {
  display: none !important;
}

/* Hide subtitle field in page attributes panel */
.email-editor-wrapper [name*='subTitle'],
.email-editor-wrapper [name*='subtitle'],
.email-editor-wrapper [name*='SUBTITLE'],
.email-editor-wrapper input[name*='subTitle'],
.email-editor-wrapper input[name*='subtitle'],
.email-editor-wrapper input[name*='SUBTITLE'],
.email-editor-wrapper .arco-input[name*='subTitle'],
.email-editor-wrapper .arco-input[name*='subtitle'],
.email-editor-wrapper .arco-input[name*='SUBJECT'],
.email-editor-wrapper textarea[name*='subTitle'],
.email-editor-wrapper textarea[name*='subtitle'],
.email-editor-wrapper textarea[name*='SUBJECT'] {
  display: none !important;
}

/* Hide the label for subject field */
.email-editor-wrapper label[for*='subTitle'],
.email-editor-wrapper label[for*='subtitle'],
.email-editor-wrapper label[for*='SUBTITLE'],
.email-editor-wrapper .arco-form-item-label label[for*='subTitle'],
.email-editor-wrapper .arco-form-item-label label[for*='subtitle'],
.email-editor-wrapper .arco-form-item-label label[for*='SUBTITLE'] {
  display: none !important;
}

/* Hide form item wrapper - using attribute selector to find parent */
.email-editor-wrapper .arco-form-item [name*='subTitle'],
.email-editor-wrapper .arco-form-item [name*='subtitle'],
.email-editor-wrapper .arco-form-item [name*='SUBTITLE'] {
  display: none !important;
}

/* Hide the entire form item row - target by finding input and hiding its parent */
.email-editor-wrapper .arco-form-item:has([name*='subTitle']),
.email-editor-wrapper .arco-form-item:has([name*='subtitle']),
.email-editor-wrapper .arco-form-item:has([name*='SUBTITLE']) {
  display: none !important;
}

/* Fallback: Hide by data attribute or class if subject field has specific identifiers */
.email-editor-wrapper [data-field-name*='subTitle'],
.email-editor-wrapper [data-field-name*='subtitle'] {
  display: none !important;
}
.formview-image-list-wrapper {
  cursor: pointer;
}
.formview-image-list-wrapper .MuiCheckbox-root {
  color: white;
}
.formview-image-list-wrapper .MuiCheckbox-colorSecondary.Mui-checked {
  color: white;
}
.formview-image-list-wrapper .MuiImageListItemBar-subtitle {
  white-space: unset;
  text-overflow: unset;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.formview-image-list-wrapper .MuiImageListItemBar-titleWrap {
  /* margin-left: 8px; */
}
.formview-image-list-wrapper .MuiCheckbox-root {
  padding: 5px;
}
.formview-image-list-wrapper .MuiCheckbox-root .MuiSvgIcon-root {
  width: 18px;
  height: 18px;
}
.formview-image-list-wrapper .MuiImageListItemBar-rootSubtitle {
  height: 58px;
}
.image-url-copy-icon {
  padding: 5px 5px 5px 6px;
}
.gallery-flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-action-icon {
  padding: 5px;
  cursor: pointer;
}
.close-formview-pdf {
  margin-bottom: 10px;
  position: relative;

  display: flex;
  justify-content: flex-end;
  /* top: 60px;
  right: 20px; */
  z-index: 2;
}
.close-formview-pdf.close-fixed-position {
  position: fixed;
  top: 60px;
  right: 20px;
}
.large-cell-close-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}
.large-cell-close-wrap.flex-start {
  justify-content: flex-start;
}
.view-file-action-btns {
  display: flex;
  position: relative;
  right: 7px;
  top: -1px;
}
div[class^='Slide-textMobileLandscape-'],
div[class*='Slide-textMobileLandscape-'] {
  display: none;
}
.pdf_caroursal_close_btn {
  position: absolute;
  /* background-color: #0575ce; */
  z-index: 9999;
  /* color: white; */
  top: 50%;
}
.pdf_caroursal_close_btn.left {
  left: 10px;
}
.pdf_caroursal_close_btn.right {
  right: 10px;
}
.pdf_viewer_header {
  position: relative;
  left: 0px;
  top: 7px;
  z-index: 9999;
  padding: 0 10px;
  width: 100%;
}
.pdf_viewer_flex_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.selected_pdf_name {
  max-width: 60%;
}
.pdf_data_viewer_wrapper {
  height: 100%;
  width: 100%;
  background-color: white;
}
.pdf_viewer_outer_wrapper {
  height: 100%;
  margin: 20px auto;
  width: 100%;
  padding-top: 55px;
  background-color: white;
}
.pdf_viewer_outer_wrapper.pt-0 {
  padding-top: 0;
}
.reviewed-icon {
  color: #05b66d;
}
.not-reviewed-icon {
  color: #fc0279;
}
.label-confidence-info {
  font-size: 12px;
  padding: 2px 3px;
  color: white;
  height: 41px;
  display: flex;
  align-items: center;
  transform: translateX(-7px);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  color: #383838;
  width: 50px;
  justify-content: center;
}
.low-confidence-label {
  color: white;
  background-color: #fc0279;
}
.high-confidence-label {
  color: white;
  background-color: #05b66d;
}
.label-info-block {
  display: flex;
  align-items: center;
}
/* dashboard tile card styles */
.feature-card-tile {
  border-radius: 6px;
  overflow: hidden;
}
.feature-icon-box {
  width: 100%;
  min-height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--mui-custom-featureIconBackgroundColor);
}
.feature-card-content {
  width: 100%;
  cursor: pointer;
  height: 100%;
  display: inline-flex;
  transition: all 0.2s;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  padding-bottom: 0 !important;
  position: relative;
}
/* .feature-card-tile:hover {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14),
    0px 4px 18px 3px rgba(0, 0, 0, 0.12);
} */
.feature-description-block {
  padding: 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
.justify-start {
  justify-content: flex-start;
}
.feature-title {
  font-size: 16px;
  font-weight: bold;
}
.feature-desc {
  font-size: 14px;
  font-weight: 400;
  color: #808080;
  display: -webkit-box;
  line-height: 1.4;
}
.feature-button {
  margin-top: 10px;
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  color: #0575ce;
  font-size: 14px;
  position: relative;
  font-weight: 600;
}
.feature-button:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background-color: #0575ce;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.feature-button:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
.feature-flex-button-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.feature-card-content:hover .feature-icon-box {
  background-color: var(--mui-custom-featureIconHoverBackgroundColor);
}
.feature-card-content:hover .feature-description-block {
  background-color: var(--mui-custom-featureDescriptionBlockBackgroundColor);
}
.ag-popup-editor {
  background: #ffffff !important;
  /* max-width: 500px;
  min-width: 300px; */
  width: 0;
  height: 0;
}
.ag-popup-editor .ql-container {
  max-width: 500px;
  min-height: 300px;
  max-height: 500px;
}
.ag-popup-child:not(.ag-tooltip-custom) {
  box-shadow: 0 1px 4px 1px rgba(186, 191, 199, 0.4);
  border: none;
}
.ag-rich-text-wrap {
  border: var(--ag-borders) var(--ag-border-color);
  background: #ffffff;
  border-radius: var(--ag-card-radius);
  box-shadow: var(--ag-card-shadow);
  background-color: #ffffff;
  padding: 12px 10px 8px 10px;
}
.no-show {
  display: none !important;
}
.no-space {
  width: 0;
  max-width: 0;
  min-width: 0;
  padding: 0;
}
.simple-link {
  color: var(--mui-custom-linkColor);
  text-decoration: underline;
  cursor: pointer;
  line-height: 1.4;
}
.dv-email-body-preview p {
  margin: 0 0 0.75em;
}
.dv-email-body-preview p:last-child {
  margin-bottom: 0;
}
.dv-email-body-preview ul,
.dv-email-body-preview ol {
  margin: 0 0 0.75em;
  padding-left: 1.5em;
}
.dataview_grid_wrapper {
  position: absolute;
  top: 0;
  background-color: var(--mui-custom-pageBackgroundColor);
  left: 0;
  width: 100%;
  z-index: 1300;
  min-height: 100vh;
}
.formitem-flexbox {
  display: flex;
  gap: 5px;
  align-items: center;
}
.color_settings_flexbox {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
}

/* plan ribbon style  */

.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: 0;
  content: '';
  display: block;
  border: 5px solid #186fa8;
}
.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: var(--mui-custom-containedPrimaryButton);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
}

/* top left*/
.ribbon-top-left {
  top: -10px;
  left: -10px;
}
.ribbon-top-left::before,
.ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.ribbon-top-left::before {
  top: 0;
  right: 0;
}
.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}
.ribbon-top-left span {
  right: -25px;
  top: 30px;
  transform: rotate(-45deg);
}

/* top right*/
.ribbon-top-right {
  top: -10px;
  right: -10px;
}
.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-top-right::before {
  top: 0;
  left: 0;
}
.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}
.ribbon-top-right span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}

/* bottom left*/
.ribbon-bottom-left {
  bottom: -10px;
  left: -10px;
}
.ribbon-bottom-left::before,
.ribbon-bottom-left::after {
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.ribbon-bottom-left::before {
  bottom: 0;
  right: 0;
}
.ribbon-bottom-left::after {
  top: 0;
  left: 0;
}
.ribbon-bottom-left span {
  right: -25px;
  bottom: 30px;
  transform: rotate(225deg);
}

/* bottom right*/
.ribbon-bottom-right {
  bottom: -10px;
  right: -10px;
}
.ribbon-bottom-right::before,
.ribbon-bottom-right::after {
  border-bottom-color: transparent;
  border-right-color: transparent;
}
.ribbon-bottom-right::before {
  bottom: 0;
  left: 0;
}
.ribbon-bottom-right::after {
  top: 0;
  right: 0;
}
.ribbon-bottom-right span {
  left: -25px;
  bottom: 30px;
  transform: rotate(-225deg);
}
.extractor_heading_flex_section {
  display: flex;
  justify-content: space-between;
}
.stats-icon .menu-logo-image {
  width: 20px;
  height: 20px;
}
.navbar-right-nav .MuiListItem-gutters {
  /* padding-left: 8px;
  padding-right: 8px; */
  border: 1px solid #e4ebf3;
  border-radius: 999px;
  padding: 2px 8px;
  margin-top: 4px;
  margin-right: 0;
}
.navbar-right-nav .menu-logo-image {
  margin-left: 5px;
  position: relative;
  top: 1px;
}
.file-name-header {
  display: flex;
  justify-content: space-between;
}
.pageview-dropzone-box {
  border: none;
  max-height: 100%;
  border-radius: 0;
  background-color: var(--mui-custom-chatBotUploadContainerBackgroundColor);
  margin: 1rem 0rem;
  min-height: 100px;
}
.pageview-dropzone-box [class*='MuiDropzoneArea-textContainer'] {
  border: dashed;
  border-color: #0575ce;
  border-radius: 0.125rem;
  background-color: #eff8fe;
}
.pageview-dropzone-box [class*='MuiDropzonePreviewList-imageContainer'] {
  display: flex;
  padding: 8px 2px;
}
.pageview-dropzone-box [class*='MuiFab-label'] svg {
  width: 16px;
  height: 16px;
}
.pageview-dropzone-box [class*='MuiDropzonePreviewList-removeButton'] {
  width: 35px;
  height: 30px;
}
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.spinner {
  position: relative;
}
.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #0575ce;
  animation: spinner 0.6s linear infinite;
}
/* @media (max-width: 960px) {
  .card-tiles-inner {
    width: 32.3% !important;
  }
} */

@media (max-width: 600px) {
  /* .dashboard-wrapper .card-tiles-inner,
  .card-tiles-inner {
    width: 48.8% !important;
  } */
  .annotation-toolbar {
    flex-direction: column;
  }
  .canvas-toolbar-left,
  .canvas-toolbar-right {
    width: 100%;
    overflow-x: auto;
  }
  .canvas-toolbar-left .canvas-toolbar-inner {
    width: 425px;
  }
  .canvas-toolbar-right .canvas-toolbar-inner {
    width: 310px;
  }
  .annotation-props-wrapper {
    position: fixed;
    right: -300px;
    z-index: 9;
    width: 300px;
    transition: all 0.3s 0s;
  }
  .annotation-props-wrapper.show {
    right: 0;
  }
  .annotation-canvas {
    width: calc(100% - 48px);
  }
  .canvas-menu-icon {
    display: block;
  }
}
/* @media (max-width: 475px) {
  .card-tiles-inner {
    width: 95% !important;
    margin: 2.5% !important;
  }
} */
.upload-file-flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  .file-heading {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
  }
}
.additional_editor_wrap {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  position: absolute;
  right: 148px;
  top: 14px;
}
.mobile .additional_editor_wrap {
  right: 50%;
  top: 14px;
  margin-right: -116px;
}
.emoji-dialog-wrapper .MuiDialog-paper {
  max-width: 384px !important;
}
.emoji-dialog-wrapper .MuiDialogContent-root {
  min-width: 384px !important;
}
.html-code-wrapper {
  .MuiGrid-container {
    height: 100%;
  }
}
.html-code-editor {
  background-color: #dedede;
  padding: 10px;
  height: calc(100vh - 150px);
  overflow: hidden;
}
.html-code-editor-inner {
  height: 100%;
  overflow: auto;
  font-size: 0.875rem;
}
.email-preview-wrapper {
  background-color: #dedede;
  padding: 10px;
  height: calc(100vh - 150px);
}
.email-preview-inner {
  height: 100%;
  overflow: auto;
}
.heading-flexbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.special-char-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: start;
  flex-wrap: wrap;
  gap: 3px;
  width: 100%;
  margin: 0 auto;
}
.special-char-box {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mui-custom-formWidthPreviewBackgroundColor);
  cursor: pointer;
}
.special-char-box:hover {
  background-color: var(--mui-custom-specialCharHoverBackgroundColor);
}
.selected-char {
  background-color: #c9c9c9;
}
.preview-special-char-box {
  width: 40px;
  height: 40px;
  background-color: var(--mui-custom-specialCharPreviewBackgroundColor);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.arco-layout {
  position: relative;
}
.email-custom-button {
  display: flex !important;
  align-items: center;
}
.email-agent-icon {
  padding: 0 0px !important;
  border: none !important;
  box-shadow: none !important;
  margin-right: 5px !important;
}
.email-agent-icon:hover {
  background-color: #ffffff !important;
}
.email-agent-icon img {
  width: 44px;
}
div[data-type='WORKFLOW_BLOCK'] .icon-number:before {
  content: '';
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
}
div[data-type='WORKFLOW_BLOCK'] .iconfont {
  width: 22px;
  height: 28px;
  position: relative;
}
div[data-type='LINK_BLOCK'] .icon-number:before {
  content: '\e7e2';
}
div[data-type='FILE_URL_BLOCK'] .icon-number:before {
  content: '';
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%2020010904//EN'%20'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'%3e%3csvg%20version='1.0'%20xmlns='http://www.w3.org/2000/svg'%20width='256.000000pt'%20height='256.000000pt'%20viewBox='0%200%20256.000000%20256.000000'%20preserveAspectRatio='xMidYMid%20meet'%3e%3cg%20transform='translate(0.000000,256.000000)%20scale(0.100000,-0.100000)'%20fill='%23000000'%20stroke='none'%3e%3cpath%20d='M336%202384%20c-32%20-10%20-64%20-31%20-96%20-63%20-84%20-84%20-80%20-31%20-80%20-1041%200%20-1010%20-4%20-957%2080%20-1040%2082%20-83%2055%20-80%20829%20-80%20l676%200%2050%2024%20c89%2041%20164%20155%20173%20263%205%2061%20-7%2083%20-48%2083%20-35%200%20-47%20-14%20-55%20-71%20-9%20-61%20-53%20-138%20-94%20-166%20l-35%20-23%20-685%202%20-686%203%20-31%2022%20c-67%2048%20-64%20-3%20-64%20983%200%20986%20-3%20935%2064%20983%2031%2022%2033%2022%20513%2025%20l481%203%204%20-218%20c3%20-204%205%20-221%2027%20-265%2012%20-26%2041%20-64%2063%20-84%2068%20-61%2094%20-68%20281%20-72%20l167%20-4%200%20-117%20c0%20-126%205%20-141%2050%20-141%2047%200%2050%2012%2049%20185%20l0%20160%20-277%20330%20-277%20330%20-515%202%20c-433%201%20-523%20-1%20-564%20-13z%20m1304%20-424%20l163%20-195%20-104%20-3%20c-129%20-4%20-160%202%20-200%2035%20-51%2044%20-59%2075%20-59%20245%200%20150%200%20152%2019%20133%2010%20-11%2092%20-108%20181%20-215z'/%3e%3cpath%20d='M1030%201210%20c-18%20-18%20-20%20-33%20-20%20-168%200%20-188%2012%20-235%2076%20-290%20109%20-96%20264%20-68%20328%2059%2025%2051%2026%2060%2026%20220%200%20162%20-1%20168%20-22%20183%20-30%2021%20-44%2020%20-68%20-4%20-18%20-18%20-20%20-33%20-20%20-175%200%20-92%20-4%20-164%20-11%20-179%20-28%20-60%20-122%20-71%20-170%20-20%20-23%2025%20-24%2032%20-27%20195%20-3%20160%20-4%20170%20-25%20184%20-29%2020%20-43%2019%20-67%20-5z'/%3e%3cpath%20d='M1573%201215%20c-23%20-16%20-23%20-19%20-23%20-255%20l0%20-240%2025%20-16%20c23%20-15%2027%20-15%2050%200%2024%2016%2025%2022%2025%20106%200%2050%204%2090%209%2090%205%200%2056%20-43%20115%20-95%20131%20-116%20140%20-121%20172%20-100%2039%2025%2032%2060%20-23%20112%20-27%2024%20-58%2051%20-70%2060%20-30%2020%20-29%2029%204%2038%2097%2024%20147%20152%2090%20235%20-41%2062%20-76%2075%20-222%2078%20-107%203%20-134%200%20-152%20-13z%20m283%20-120%20c13%20-21%2015%20-31%206%20-50%20-14%20-31%20-38%20-37%20-132%20-33%20l-75%203%20-3%2053%20-3%2052%2095%200%20c91%200%2096%20-1%20112%20-25z'/%3e%3cpath%20d='M2102%201214%20c-22%20-15%20-22%20-18%20-22%20-254%200%20-291%20-12%20-270%20160%20-270%20126%200%20160%2011%20160%2054%200%2043%20-28%2056%20-123%2056%20l-87%200%200%20195%20c0%20182%20-1%20196%20-20%20215%20-24%2024%20-38%2025%20-68%204z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
}
div[data-type='FILE_URL_BLOCK'] .iconfont {
  width: 22px;
  height: 28px;
  position: relative;
}
div[data-type='SMILEY_BLOCK'] .icon-number:before {
  content: '';
  /* background-image: url('../src/assets/images/emoji-icon.svg'); */
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
}
div[data-type='SMILEY_BLOCK'] .iconfont {
  width: 22px;
  height: 28px;
  position: relative;
}
#easy-email-editor {
  overflow: visible !important;
}
div[data-type='VIDEO_BLOCK'] .icon-number:before {
  content: '';
  /* background-image: url('../src/assets/images/yt-icon.svg'); */
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
}
div[data-type='VIDEO_BLOCK'] .iconfont {
  width: 22px;
  height: 28px;
  position: relative;
}
div[data-type='PDF_BLOCK'] .icon-number:before {
  content: '';
  /* background-image: url('../src/assets/images/pdf-icon.svg'); */
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
}
div[data-type='PDF_BLOCK'] .iconfont {
  width: 22px;
  height: 28px;
  position: relative;
}
div[data-type='DYNAMIC_TABLE_BLOCK'] .icon-number:before {
  content: '';
  background-image: url("data:image/svg+xml,%3csvg%20stroke='currentColor'%20fill='currentColor'%20stroke-width='0'%20viewBox='0%200%2016%2016'%20height='1em'%20width='1em'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0%202a2%202%200%200%201%202-2h12a2%202%200%200%201%202%202v12a2%202%200%200%201-2%202H2a2%202%200%200%201-2-2zm15%202h-4v3h4zm0%204h-4v3h4zm0%204h-4v3h3a1%201%200%200%200%201-1zm-5%203v-3H6v3zm-5%200v-3H1v2a1%201%200%200%200%201%201zm-4-4h4V8H1zm0-4h4V4H1zm5-3v3h4V4zm4%204H6v3h4z'%3e%3c/path%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
}
div[data-type='DYNAMIC_TABLE_BLOCK'] .iconfont {
  width: 18px;
  height: 16px;
  position: relative;
}
div[data-type='FORM_URL_BLOCK'] .icon-number:before {
  content: '';
  /* background-image: url('../src/assets/icons/FormIcon.svg'); */
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
}
div[data-type='FORM_URL_BLOCK'] .iconfont {
  width: 20px;
  height: 20px;
  position: relative;
}
.arco-typography {
  word-break: break-word !important;
}
.form-duplicate-error-border {
  border: 1px solid #f44336 !important;
  border-radius: 4px;
  padding: 6px;
}
.header-padding {
  padding-top: 10px;
  padding-bottom: 10px;
}
.header-padding a {
  display: block;
  width: 170px;
}
.header-padding a > img {
  width: 100%;
}
.download-img {
  position: relative;
  top: 2px;
}
.select-app-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.select-app-title {
  font-weight: 500;
}
.upload-icon {
  width: 20px;
}
.dataview_option_section {
  padding: 6px 0px;
  background-color: var(--mui-custom-dataviewOptionSectionBackgroundColor);
  border-radius: 4px;
  margin: 0 3px;
}
.picker-dialog,
.picker-dialog-bg {
  z-index: 9999;
}
.pdf_error_wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.pdf_error_message {
  background-color: #f44336;
  border-radius: 0.25rem;
  color: #ffffff;
  padding: 0.5rem;
}
.no-visible {
  visibility: hidden;
}

/* styles for pdf audit log timeline : START */
.audit-timeline-wrapper {
  position: relative;
}
.audit-timeline-print-wrapper.audit-timeline-wrapper {
  padding: 20px;
  font-size: 12px;
}
.audit-timeline-wrapper .audit-event-block {
  display: flex;
  gap: 5px;
  padding: 10px 0;
  position: relative;
}
.audit-event-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 22px;
  overflow: hidden;
  position: relative;
}
.audit-timeline-print-wrapper.audit-timeline-wrapper .audit-event-list {
  padding-left: 0;
}
.audit-event-type {
  width: 25%;
  padding-left: 20px;
}
.audit-event-desc {
  width: 49%;
}
.audit-event-list li {
  margin-bottom: 10px;
  background-color: #f8f7f7;
  border-radius: 4px;
}
.audit-event-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.audit-event-type:after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #186fa8;
  position: absolute;
  left: -20px;
  top: 15px;
  z-index: 1;
}
.audit-event-type.event-create:after {
  background-color: #00e099;
}
.audit-event-type.event-submission:after {
  background-color: #0476cf;
}
.audit-event-type.event-viewed:after {
  background-color: #feb500;
}
.audit-event-list:after {
  content: '';
  height: 100%;
  width: 1px;
  background-color: #dddddd;
  position: absolute;
  left: 6px;
  top: 25px;
}
.audit-event-list.no-print-for-after-elem::after {
  display: none;
}
.audit-event-list.no-print-for-after-elem .audit-event-type:after {
  display: none;
}
.audit-event-time {
  font-weight: bold;
}
.audit-log-print-heading {
  font-size: 16px;
  font-weight: 600;
}
.no-view-for-audit-print {
  transform: translateX(-10000px);
  height: 0;
}
/* styles for pdf audit log timeline : END */
.MuiAppBar-root {
  z-index: 1000;
}
.hint_button_wrapper {
  position: fixed;
  bottom: 10px;
  right: 10px;
  margin: 1em;
  z-index: 999;
}
.hint_button {
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 4px, rgba(0, 0, 0, 0.28) 0px 4px 8px;
  -moz-box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 4px, rgba(0, 0, 0, 0.28) 0px 4px 8px;
  box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 4px, rgba(0, 0, 0, 0.28) 0px 4px 8px;
}
.floating_button a {
  background-color: #ffffff;
}
.floating_button li {
  background-color: #ffffff;
}
.react-field-mapping-box .source-data > ul li .column-item,
body .react-field-mapping-box .target-data > ul li .column-item {
  text-overflow: unset !important;
  overflow-x: visible !important;
}
.width-85 img {
  width: 85px !important;
}
.MuiOutlinedInput-multiline {
  padding: 5px;
}
.MuiOutlinedInput-multiline textarea:hover {
  border: none;
}
.pr-15 {
  padding-right: 15px;
}
.submission_success_msg {
  font-size: 1.01rem;
}
@media (max-width: 768px) {
  .MuiDialogContent-root {
    min-width: 300px;
  }
  .MuiTypography-h6 {
    font-size: 1rem;
  }
  .submission_success_msg {
    font-size: 0.9rem;
  }
}
.text-right {
  text-align: right;
}
.MuiPaginationItem-page.Mui-selected {
  border-color: #0575ce;
}
@media (max-width: 600px) {
  .download-filter-wrap {
    justify-content: flex-start;
  }
}
@media (max-width: 500px) {
  .MuiTab-root {
    margin-right: 1px;
  }
  .MuiTableCell-footer .MuiToolbar-regular {
    display: none;
  }
}
.disabled_label {
  pointer-events: none;
  background-color: #dddddd;
}
.prompt_preview_box {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 28px 12px 25px;
  background-color: var(--mui-custom-kaSummaryRowBackgroundColor);
  border-radius: 6px;
  position: relative;
}
.prompt_preview_hint {
  font-size: 12px;
  margin-bottom: 10px;
}
.prompt-btn-wrap {
  display: flex;
  justify-content: flex-end;
}
.flex-header {
  display: flex;
}
.prompt_sub_types {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}
.prompt_subtype_text {
  border: 1px solid #dddddd;
  padding: 5px 10px;
  border-radius: 16px;
  background-color: var(--mui-custom-dataGridBackgroundColor);
  cursor: pointer;
  font-size: 12px;
}
.prompt_subtype_text:hover {
  background-color: var(--mui-custom-containedPrimaryButton);
  color: white;
}
.primary-button {
  color: #fff;
  background-color: var(--mui-custom-containedPrimaryButton) !important;
  font-weight: 600;
}
.primary-button:hover {
  background-color: #0a66ad !important;
}
.primary-button:active {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12) !important;
}
.alert-button {
  font-size: 13.5px !important;
  padding: 7px 15px 8px !important;
  line-height: 1.75;
  border-radius: var(--radius-btn) !important;
  transition: background-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    border 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.secondary-button {
  border: 1px solid var(--mui-custom-containedPrimaryButton) !important;
  background-color: #ffffff !important;
  color: rgba(0, 0, 0, 0.6) !important;
  font-weight: 600;
}
.secondary-button:hover {
  background-color: rgba(56, 56, 56, 0.04) !important;
}
.react-confirm-alert-body h1 {
  /* font-family: 'Nunito Sans', sans-serif !important; */
  font-size: 1.25rem;
  color: #0575ce;
  margin-bottom: 15px;
}
.react-confirm-alert-overlay {
  z-index: 9999 !important;
  background: rgba(0, 0, 0, 0.5) !important;
}
.notification-error {
  background-color: white;
  color: #f44336;
}
.notification {
  margin-top: 5px;
}
.jodit-status-bar {
  display: none !important;
}
.jodit-toolbar-button[data-ref='speechRecognize'],
.jodit-toolbar-button[data-ref='lineHeight'],
.jodit-toolbar-button[data-ref='dots'] {
  display: none !important;
}
.red-asterisk {
  color: #f44336;
}
.no-asterisk-label .MuiFormLabel-asterisk {
  display: none;
}
.flex_label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link-btn {
  color: #0575ce;
  cursor: pointer;
  font-size: 0.9rem;
}
.ag-picker-field-wrapper {
  padding: 0.5rem;
}
div[data-type='UNSUBSCRIBE_BLOCK'],
div[data-type='DISCLAIMER_BLOCK'],
div[data-type='FOOTER_LABEL'] {
  display: none;
}
.MuiInputBase-input.Mui-disabled {
  background-color: rgba(224, 224, 224, 0.6);
}
.checkbox-no-margin .MuiFormControlLabel-root {
  margin-bottom: 0;
}
.ag-cell {
  overflow: hidden !important;
}
.icon-flipped {
  transform: rotate(0deg) scaleX(-1);
}
div[class^='AutoRotatingCarousel-footer'] div[class^='Dots-dots'] {
  display: none;
}
.verify-icon.Mui-disabled {
  pointer-events: none;
}
.MuiStepIcon-root.MuiStepIcon-completed {
  color: rgba(5, 117, 206, 0.8);
}
.MuiStepIcon-root.MuiStepIcon-active {
  color: #0575ce !important;
}
.count-container {
  display: flex;
  justify-content: flex-start;
  padding-left: 10px;
  padding-bottom: 2px;
  font-weight: 500;
}
.ag-status-bar {
  bottom: 31px;
  left: 0;
  background: rgb(249, 250, 252);
  margin-top: 20px;
  min-height: 30px;
  line-height: 1.4 !important;
  padding-left: calc(var(--ag-spacing) * 2) !important;
  padding-right: calc(var(--ag-spacing) * 2) !important;
  border-top: none !important;
  border-bottom: var(--ag-row-border) !important;
}
.parent-grid .ag-status-bar {
  position: fixed;
  width: 100%;
}
.child-grid {
  position: relative;
  width: 100%;
}
.child-grid .ag-status-bar {
  position: absolute;
  width: 100%;
}
.ag-status-name-value {
  padding-top: var(--ag-spacing) !important;
  padding-bottom: var(--ag-spacing) !important;
}
.ag-form-editor-header {
  padding: 10px 8px;
  background: #f5f5f5;
  -webkit-user-select: none;
  user-select: none;
  font-weight: 600;
  width: 100%;
  cursor: grab;
  border-bottom: 1px solid transparent;
  position: relative;
}

.ag-form-editor-header:active {
  cursor: grabbing;
}

.ag-form-editor-header::before {
  content: '⋮⋮';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #999;
  opacity: 0.7;
}

.ag-form-editor-header .close-icon-container {
  margin-left: 20px;
}

.ag-cell-edit-wrapper .formio-form {
  min-height: auto !important;
}

.ag-cell-edit-form-wrapper {
  padding: 10px 14px;
  max-height: 500px;
  overflow-y: visible;
  overflow-x: auto;
}

.ag-cell-edit-form-wrapper .formio-component-multiple .choices__input {
  width: auto;
}

.ag-popup-editor {
  /* width: 300px;
  max-width: 300px; */
}

.ag-cell-edit-form-wrapper .choices__list--multiple {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* Draggable popup editor styles */
.ag-cell-edit-wrapper .ag-draggable-popup {
  background: white;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 300px;
  max-width: 600px;
}

.ag-cell-edit-wrapper .ag-draggable-popup .ag-form-editor-header {
  border-radius: 4px 4px 0 0;
}

.ag-cell-edit-wrapper .ag-draggable-popup .ag-cell-edit-form-wrapper {
  border-radius: 0 0 4px 4px;
}
.ag-cell-edit-wrapper .MuiSelect-select {
  padding: 13px 9px 7px;
  min-width: 180px;
}

.ag-full-width-row {
  overflow: visible;
}
.grid-editor-inner-wrapper {
  min-width: 300px;
  max-width: 500px;
  box-shadow: var(--ag-popup-shadow);
  background: #ffffff;
}
.ag-large-text.grid-editor-inner-wrapper {
  min-width: 400px;
}
.ag-rich-select {
  min-width: 300px;
  max-width: 500px;
}
.editor-grab-hint {
  padding: 4px 10px;
  font-size: 12px;
  color: rgb(102, 102, 102);
}
.ag-draggable-popup .ag-cell-edit-form-wrapper {
  margin-top: -5px;
}
.filter-survey-list {
  display: flex;
  gap: 5px;
  align-items: center;
}
.ag-menu {
  max-width: 350px;
}
/* .ag-center-cols-clipper, */
.formview-grid .ag-root-wrapper,
.formview-grid .ag-full-width-row {
  overflow: visible !important;
}
.formview-grid .ag-cell-edit-form-wrapper {
  max-height: 400px;
  overflow: auto;
  overflow-x: visible;
}
.dataseries-grid-dialog .MuiDialog-paperScrollPaper {
  display: block;
}
.h4,
h4 {
  font-size: 1.21875rem;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
}

.ml-10 {
  margin-left: 10px;
}
.MuiDialogTitle-root {
  padding: 0.5rem 1rem;
}
code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}
.ag-input-field-input {
  border-radius: 1px !important;
}
a {
  color: #0575ce;
}
.ag-filter-from .ag-input-field-input,
.ag-column-select-header-filter-wrapper .ag-input-field-input {
  padding-left: 24px !important;
}
.ag-rich-select-virtual-list-viewport {
  min-width: 200px !important;
}
.dm-group-padding {
  padding: 0.625rem;
}
.close-icon-container {
  position: absolute;
  right: 3px;
  top: 8px;
}
.close-icon-container .close-icon {
  color: #747d86;
  display: block;
  font-size: 15px;
  height: 20px;
  width: 20px;
}
.mb-10 {
  margin-bottom: 10px;
}
button[type='link'] {
  color: #0575ce;
}
.arco-card-body {
  height: 100%;
}
.arco-layout {
  align-items: flex-end;
}
.easy-email-overlay {
  padding: 10px 0 10px 0 !important;
}
@media (min-width: 768px) {
  #easy-email-editor {
    min-width: calc(100vw - 360px) !important;
  }
}
.image-loading-bg-item {
  position: relative;
}
.image-loading-bg-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3csvg%20version='1.1'%20id='loader-1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20width='40px'%20height='40px'%20viewBox='0%200%2040%2040'%20enable-background='new%200%200%2040%2040'%20xml:space='preserve'%3e%3cpath%20opacity='0.2'%20fill='%23000'%20d='M20.201,5.169c-8.254,0-14.946,6.692-14.946,14.946c0,8.255,6.692,14.946,14.946,14.946%20s14.946-6.691,14.946-14.946C35.146,11.861,28.455,5.169,20.201,5.169z%20M20.201,31.749c-6.425,0-11.634-5.208-11.634-11.634%20c0-6.425,5.209-11.634,11.634-11.634c6.425,0,11.633,5.209,11.633,11.634C31.834,26.541,26.626,31.749,20.201,31.749z'%3e%3c/path%3e%3cpath%20fill='%23000'%20d='M26.013,10.047l1.654-2.866c-2.198-1.272-4.743-2.012-7.466-2.012h0v3.312h0%20C22.32,8.481,24.301,9.057,26.013,10.047z'%3e%3canimateTransform%20attributeType='xml'%20attributeName='transform'%20type='rotate'%20from='0%2020%2020'%20to='360%2020%2020'%20dur='0.5s'%20repeatCount='indefinite'%3e%3c/animateTransform%3e%3c/path%3e%3c/svg%3e");
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.ptb-30 {
  padding: 30px 0;
}
.filter_dialog_content .fc {
  margin-top: 20px;
}
.filter_dialog_content .fc-button-color-secondary,
.filter_dialog_content .fc-button-color-default,
.filter_dialog_content .fc-button-color-primary {
  padding: 7px 14px;
  color: #0575ce;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.filter_dialog_content .fc-value-editor {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 3px !important;
  height: 37px;
}
.filter_dialog_content .fc-group .fc-group-button-icon {
  opacity: 1;
}
.filter_dialog_content .fc-button-add:before {
  color: #0575ce;
  font-weight: 500;
}
.filter_dialog_content .fc-button-remove:before {
  font-weight: 500;
  color: #f44336;
}
.filter_dialog_content .fc-dropdownmenu-contextmenu {
  max-height: 126px;
  overflow-y: auto;
}
.fc-group .fc-group {
  display: none;
}
.fc-dropdownmenu:nth-child(2) .fc-dropdownmenu-contextmenu .fc-dropdownmenu-contextmenu-item:nth-child(2) {
  display: none;
}
.with-applied-label:after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  background-color: #f44336;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
/* .react-tel-input .form-control {
  background: var(--mui-custom-kaInputBackgroundColor) !important;
  border: 1px solid var(--mui-custom-inputBorderColor) !important;
}
.react-tel-input .flag-dropdown {
  background-color: var(--mui-custom-kaInputBackgroundColor) !important;
  border: 1px solid var(--mui-custom-inputBorderColor) !important;
}
.react-tel-input .selected-flag:hover,
.react-tel-input .selected-flag:focus {
  background-color: var(--mui-custom-kaInputBackgroundColor) !important;
}
.react-tel-input .country-list {
  background-color: var(--mui-custom-kaInputBackgroundColor) !important;
} */
.react-tel-input .country-list-dropdown {
  background-color: var(--mui-custom-kaSummaryRowBackgroundColor) !important;
  color: var(--mui-custom-kaInputColor) !important;
}
.react-tel-input .country-list-dropdown .country:hover {
  background-color: var(--mui-custom-kaTableHeadCellBackgroundColor) !important;
}
.react-tel-input .country-list-dropdown .country.highlight {
  background-color: var(--mui-custom-kaTableHeadCellBackgroundColor) !important;
}
.react-tel-input .country-list .country .dial-code {
  color: var(--mui-custom-kaInputColor) !important;
}
.react-tel-input .selected-flag:hover,
.react-tel-input .selected-flag:focus {
  background-color: var(--mui-custom-kaSummaryRowBackgroundColor) !important;
}
#easy-email-editor {
  background-color: transparent;
}
.arco-icon[stroke='currentColor'] {
  stroke: var(--mui-custom-kaInputColor) !important;
}
body {
  background-color: var(--mui-custom-bodyBackgroundColor) !important;
}
.react-resizable .react-draggable {
  background: var(--mui-custom-dataSelectionBackgroundColor) !important;
  border: 1px solid var(--mui-custom-dataSelectionBackgroundColor) !important;
}
.arco-tree-node {
  color: var(--mui-custom-textColor) !important;
}
.arco-tree-node-drag-icon {
  color: var(--mui-custom-textColor) !important;
}
.arco-icon[stroke='currentColor'] {
  stroke: var(--mui-custom-kaInputColor) !important;
}
.arco-popover-content,
.arco-popconfirm-content,
.arco-select-popup,
.arco-select-popup .arco-select-option,
.arco-select.arco-select-focused .arco-select-view,
.arco-input-number-step-button {
  color: var(--mui-custom-kaInputColor) !important;
  background-color: var(--mui-custom-pageBackgroundColor) !important;
}
.arco-select-popup .arco-select-option-selected,
.arco-select-popup .arco-select-option-hover {
  background-color: var(--mui-custom-kaSummaryRowBackgroundColor) !important;
}
.api-form-input input[type='text'] {
  border: 1px solid var(--mui-custom-inputBorderColor);
}
.sign-settings {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sign-settings-width {
  width: 200px;
}
.react-confirm-alert-body {
  background-color: var(--mui-custom-confirmAlertBackgroundColor) !important;
  /* color: var(--mui-custom-textColor) !important; */
  font-size: 14px;
  padding: 20px !important;
}
.react-confirm-alert-button-group {
  justify-content: flex-end;
}

.react-confirm-alert-button-group > .secondary-button {
  background-color: transparent !important;
  border-color: var(--mui-custom-confirmSecondaryButtonBorderColor) !important;
  /* color: var(--mui-custom-confirmSecondaryButtonColor) !important; */
}
.react-confirm-alert-button-group > .secondary-button:hover {
  background-color: var(--mui-custom-confirmSecondaryBackgroundColor) !important;
}
.output-formname {
  display: inline-block;
  font-weight: bold;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.output-form-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
}
.output-form-header-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 50%;
}
.output-form-no-print-header {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
@media (max-width: 992px) {
  .output-formname {
    max-width: 200px;
  }
  .output-form-no-print-header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .output-form-header-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .output-form-header-wrapper {
    flex-direction: column;
  }
  .output-form-page-buttons {
    display: flex;
  }
}
.header-input-select-container .MuiAutocomplete-inputRoot {
  padding: 3px !important;
  padding-right: 30px !important;
}
.MuiDrawer-root label,
.summary-row-data {
  font-size: 0.87rem;
}
.ar_menu:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0575ce;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.active_menu.ar_menu:after {
  opacity: 1;
}
.grid-items-4 {
  width: 23%;
}
.grid-items-3 {
  width: 32%;
}
.tiles-container {
  background: var(--mui-custom-featureCardBackgroundBlue);
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 15px;
}
.homeFeatureDescriptionBlock {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  background-color: var(--mui-custom-navbarBackgroundColor);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(20, 32, 47, 0.04), 0 1px 3px rgba(20, 32, 47, 0.05);
}
.homeIconContainer {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: var(--mui-custom-featureIconBackgroundColor);
  width: 68px;
  height: 68px;
  padding: 7px;
  border: 1px solid var(--mui-custom-featureIconBackgroundColor);
}
.homeIconContainer img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}
.homeFeatureDescriptionBlockInner {
  display: flex;
  gap: 10px;
}
.featureDescription {
  font-size: 13px;
  font-weight: 400;
  color: #808080;
  display: -webkit-box;
  line-height: 1.4;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
  min-height: 73px;
}
.tabsWrapper .MuiTabs-scroller {
  overflow: auto !important;
  background-color: var(--mui-custom-pageBackgroundColor);
  border-bottom: 1px solid var(--mui-custom-tabBorderColor);
}
.tabsWrapper .MuiTab-root {
  position: relative;
  margin-right: 5px;
  border-radius: 0;
}
.tabsWrapper .MuiTab-root:hover {
  color: var(--mui-custom-featureHeading);
}
.tabsWrapper .MuiTab-root.Mui-selected:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0575ce;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}
.MuiDataGrid-columnHeader {
  height: 35px;
}
.MuiDataGrid-columnSeparator {
  color: rgba(233, 232, 232, 0.5);
}
.MuiDataGrid-row--borderBottom {
  height: 36px !important;
}
.MuiDataGrid-toolbar {
  border-bottom: none;
}
.MuiDataGrid-virtualScroller {
  border: 1px solid var(--mui-custom-inputBorderColor);
  border-radius: 12px;
}
.MuiDataGrid-row .MuiDataGrid-cell {
  border-top: 1px solid var(--mui-custom-muiTableRowBorderColor) !important;
  /* color: #7d8aa0; */
}
.MuiDataGrid-row.MuiDataGrid-row--firstVisible .MuiDataGrid-cell {
  border-top: none !important;
}
.MuiDataGrid-row:hover {
  background-color: var(--mui-custom-muiTableRowHoverBackgroundColor) !important;
}
.message-detail-header {
  padding: 20px 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(12, 125, 210, 0.07);
  border-bottom: 1px solid rgb(224, 224, 224);
  margin-bottom: 1px;
}
.icon-button-expand {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}
.outerPadding {
  padding: 1rem 0.5rem;
}
.simple-link-icon {
  color: var(--mui-custom-actionLinkColor);
}
.accordionShowcase {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.backButton {
  background-color: var(--mui-custom-iconBackButtonColor);
  border: 1px solid var(--mui-custom-formCardBorder);
}
.creation-heading {
  font-weight: 500;
  font-size: 1rem;
}
.form-input-section-container {
  width: 60%;
}
.form-section {
  display: flex;
  gap: 5px;
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--mui-custom-formSectionSeparatorColor);
  padding-top: 1rem;
}
.form-section-content {
  width: 40%;
  padding: 10px;
}
.section-container {
  position: relative;
  border-bottom: 1px solid #dedede !important;
}
.form-input-color-wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.form-input-color-label {
  margin-top: 5px;
}
.mnl-8 {
  margin-left: -8px;
}
.small_dialog_modal .MuiDialogTitle-root {
  /* font-size: 0.9rem; */
}
.section-container-label {
  font-size: 1rem;
  font-weight: 600;
}
.form-input-section-container:last-child .section-container {
  border-bottom: none;
}
.sub-section-action-buttons {
  position: absolute;
  right: 0;
  display: flex;
  top: 28px;
}
.form-section-block {
  border: 1px solid #dedede;
  border-radius: 6px;
  padding: 10px;
  margin-top: 5px;
  background: var(--mui-custom-pageBackgroundColor);
}
.cursor-pointer {
  cursor: pointer;
}

.dataflow_flow_step_wrapper {
  width: 100%;
  border: 1px solid #e4ebf3;
  border-bottom: none;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.dataflow_header {
  background-color: var(--mui-custom-kaSummaryRowBackgroundColor);
  font-size: 14px;
  font-weight: 600;
  padding: 10px;
  border-bottom: 1px solid #e4ebf3;
  color: var(--mui-custom-kaInputColor);
}
.dataflow_flow_step_wrapper_empty {
  border-bottom: 1px solid #e4ebf3;
  padding: 10px;
  font-size: 0.8rem;
}
.upload-file-icon-wrap {
  padding: 10px;
  background-color: #ebf5ff;
  border-radius: 50px;
  width: 60px;
  display: flex;
  justify-content: center;
  height: 60px;
  align-items: center;
}
.dropzone {
  border-width: 1px;
  font-size: 0.9rem;
}
.no-bg-color {
  background-color: transparent !important;
}
.no-padding {
  padding: 0 !important;
}
.d-flex {
  display: flex;
}
.iconfont.icon-undo,
.iconfont.icon-redo {
  font-size: 0.9rem;
}
.ka-file-name-cell {
  overflow: clip;
}
.block {
  display: block;
}
.mb-2 {
  margin-bottom: 2px;
}
.mb-3 {
  margin-bottom: 3px;
}
.tooltip_icon_wrap {
  position: relative;
  top: 2px;
}
.output-form-page-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .tiles-container {
    background: var(--mui-custom-favouritesContainerBackgroundColor);
  }
}
@media (max-width: 1000px) {
  .ar_menu {
    margin: 3px 12px;
  }
  .menu-logo-image {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 768px) {
  .form-input-section-container {
    width: 100%;
  }
  .form-section {
    flex-direction: column;
    padding-top: 0;
  }
  .backButton {
    padding: 2px !important;
  }
}
@media (max-width: 576px) {
  .output-form-header {
    flex-direction: column;
  }
}

/* Otherwise, use `::-webkit-scrollbar-*` pseudo-elements */
@supports selector(::-webkit-scrollbar) {
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: #f1f1f1;
  }
  ::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
}
.sap-action-btn-container {
  position: absolute;
  right: 28px;
  top: 40px;
}
@media (max-width: 1200px) {
  .sap-action-btn-container {
    right: 10px;
  }
}
.no-extra-padding {
  padding: 0 !important;
}
:root {
  --accent: #0c7dd2;
  --accent-700: #0a66ad;
  --tile: #f0f6f9;
  --border: #e4ebf3;
  --border-2: #d6dfeb;
  --ink: #14202f;
  --ink-3: #7d8aa0;
  --r-card: 18px;
  --radius-btn: 10px;
  --r-pill: 999px;
  --feat-accent: #0c7dd2;
  --feat-tint: rgba(12, 125, 210, 0.07);
  --sh-1: 0 1px 2px rgba(20, 32, 47, 0.04), 0 1px 3px rgba(20, 32, 47, 0.05);
  --sh-2: 0 6px 16px -6px rgba(20, 32, 47, 0.12), 0 2px 6px -2px rgba(20, 32, 47, 0.07);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1280px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 500px) {
  .features {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 400px) {
  .feature .card-foot button {
    font-size: 3vw;
  }
}
.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 26px;
  background: var(--mui-custom-featureCardBackground);
  box-shadow: var(--sh-1);
  transition: transform 0.18s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.18s, border-color 0.18s;
  cursor: pointer;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
  border-color: var(--border-2);
}
.feature::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--feat-accent);
}
.ftile {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--mui-custom-featureIconBackgroundColor);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--mui-custom-featureIconBackgroundColor);
}
.ftile img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.feat-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 18px 0 8px;
  font-family: var(--font-family-1) !important;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--feat-accent);
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--mui-custom-featureHeading);
}
.feature .desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mui-custom-featureDescription);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 62px;
}
.card-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.feature .card-foot {
  border-top: none;
  padding-top: 20px;
}

.feature-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 15px;
  border-radius: var(--radius-btn);
  font-size: 13.5px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.12s;
  cursor: pointer;
  text-decoration: none;
}
.feature-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(12, 125, 210, 0.25);
}
.feature-btn-primary svg {
  transition: transform 0.18s;
}
.feature-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
}
.feature-btn-primary:hover {
  background: var(--accent-700);
}
:root {
  --tab-color: #0476cf;
}
.form_inner_wrapper {
  height: 100%;
  margin: 0 auto 50px;
}
.form_login_wrap {
  padding: 20px;
  /* box-shadow: 0px 10px 18px 4px rgba(0, 0, 0, 0.2); */
  border-radius: 10px;
  background-color: #ffffff;
  width: 100%;
  color: var(--mui-custom-darkColor);
}
.form_login_edited_style_wrapper {
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff;
  width: 100%;
}
.form_header_wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  width: 100%;
  flex-shrink: 0;
}
.form_header_wrapper p {
  margin: 0;
  margin-right: 5px;
  font-size: 14px;
}
.form_header_wrapper a {
  display: block;
  /* padding-top: 6px; */
}
.form_header_wrapper img {
  width: 80px;
}

/* .form_header_wrapper.white-text img {
  width: 20px;
} */

.theme_image_box {
  width: 100%;
  height: 170px;
  position: relative;
}
.theme_image_box img {
  width: 100%;
  height: 100%;
}
.theme_image_wrap {
  display: flex;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.theme_image_wrap li {
  margin: 10px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px;
  padding: 10px;
  border-radius: 10px;
  background-color: #f9fafc;
  border: 2px solid white;
  width: 46%;
  position: relative;
}
.theme_image_wrap li.selected {
  border: 1px solid #ffb600;
  background: rgba(255, 182, 0, 0.2);
}
.theme_name {
  margin-top: 10px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
}
.theme_name a {
  text-decoration: none;
}
.theme_overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.theme_image_wrap li:hover .theme_overlay {
  display: block;
}
.theme_icon {
  width: 30px !important;
}
.theme_inner_overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-picker-box label {
  margin-bottom: 0;
  margin-right: 10px;
}
.color-preview-box {
  width: 250px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-inner-preview {
  width: 200px;
  height: 150px;
  background-color: #ffffff;
}
.color-picker-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  padding: 8px;
  z-index: 102;
}
.color-box {
  align-items: center;
  display: flex;
  margin-bottom: 15px;
}
.theme-header-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.theme-model .MuiDialog-paper,
.theme-model .MuiDialogContent-root {
  /* overflow-y: visible; */
}
.color-picked {
  position: relative;
}
.gradient-color-box {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 10px;
}

/* The Modal (background) */
.preview-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  padding-top: 50px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content (image) */
.preview-modal .modal-content {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 1200px;
}

/* Caption of Modal Image */
.preview-modal #caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.preview-modal .modal-content,
.preview-modal #caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* The Close Button */
.preview-modal .close-icon {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.preview-modal .close-icon:hover,
.preview-modal .close-icon:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .preview-modal .modal-content {
    width: 100%;
  }
}
.theme_inner_overlay a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}
.color-box .label-text {
  margin-right: 5px;
  font-weight: 600;
  min-width: 170px;
  font-size: 0.87rem;
}
.color-picked input[type='color'] {
  -webkit-appearance: none;
  border: 1px solid #ddd;
  padding: 0px;
  block-size: 35px;
  width: 100px;
}
.color-picked input[type='color']::-webkit-color-swatch-wrapper {
  padding: 0;
}
.color-picked input[type='color']::-webkit-color-swatch {
  border: none;
}
.theme-back-btn {
  margin-left: -12px;
}
.color-choose-box {
  width: 100px;
  height: 35px;
}

.online_form_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0;
}
.form_preview .online_form_wrapper {
  background-color: #ffffff;
}
.card-body table.datagrid-table th,
.card-body table.datagrid-table td {
  padding: 5px;
}
.choices__item--choice[data-value='custom'],
.choices__item--choice[data-value='event'],
.choices__item--choice[data-value='oauth'],
.choices__item--choice[data-value='url'],
.choices__item--choice[data-value='resource'] {
  display: none;
}
/* .formio-component-customClass, */
.formio-component-tabindex,
.formio-component-customDefaultValuePanel,
.formio-component-custom-validation-js,
.formio-component-json-validation-json,
.formio-component-errors,
.formio-component-customConditionalPanel,
.formio-component-kickbox,
.formio-component-shortcutButtons,
.formio-component-panel-disable-function,
.formio-component-customOptions,
.formio-component-customBlackListedWordsPanel,
.formio-component-customRules,
.formio-component-addons .formio-component-isValidPanel,
.formio-component-addons .formio-component-selector,
.formio-component-addons .formio-component-template,
.formio-component-manualModeViewString {
  display: none;
}
.formio-component-calculateValuePanel {
}
.html2canvas-container button {
  display: none !important;
}
.form-print-header {
  margin-bottom: 20px;
  background: #eee;
  padding: 10px;
}
.form-print-header h3 {
  font-size: 20px;
}
.form_preview .online_form_wrapper {
  padding: 50px;
  min-height: auto;
}
.selected-image {
  border: 5px solid #ffb601;
}
.plx-5 {
  padding-left: 5px;
}
.btn-with-white-text {
  color: white;
}
.mrpx-5 {
  margin-right: 5px;
}
.wf-wrapper {
  width: 100%;
  border: 1px solid #dedede;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.wf_row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 15px;
  flex-wrap: wrap;
}
.wf_col_1 {
  width: 40%;
  margin-right: 0.3%;
}
.wf_col_2,
.wf_col_3 {
  width: 40%;
  margin-right: 0.3%;
}
.wf_col_4 {
  width: 25%;
  margin-right: 0.3%;
}
.wf_col_5 {
  width: 10%;
  display: flex;
  margin-top: 14px;
  padding-left: 10px;
}
.wf_col_6 {
  width: 100%;
  display: flex;
}
.with-mtop-4 {
  margin-top: 4px;
}
.date-text-field {
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}
.date-text-field input {
  padding: 0.75rem 0.75rem;
  font-size: 14px;
  max-width: 180px;
}
.form_key_name {
  width: 30%;
  font-weight: 600;
  font-size: 16px;
}
.form_key_value {
  width: 68%;
  font-weight: 400;
  font-size: 16px;
}
.form_value_block {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.grid_block {
  width: 100%;
  background-color: #eeeeee;
  padding: 10px;
  font-weight: 600;
  color: #0575ce;
  margin: 10px 0;
}
.form-image-file {
  width: 150px;
  height: 100%;
}
.row-flex {
  display: flex;
}
.form_print_wrapper {
  padding: 20px 10px;
  border-radius: 10px;
  background-color: #ffffff;
}
.form_print_header {
  background-color: #f9fafc;
  padding: 10px;
}
.header-sub-id {
  font-size: 14px;
}
.seq_col_name {
  width: 25%;
  margin-right: 1%;
}
.seq_col_from,
.seq_col_prefix,
.seq_col_reset {
  width: 10%;
  margin-right: 1%;
}
.seq_row {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.simple-input-field {
  padding: 8px 10px 8px !important;
  background-color: var(--mui-custom-kaInputBackgroundColor);
  color: var(--mui-custom-kaInputColor);
  border: 1px solid var(--mui-custom-inputBorderColor) !important;
  border-radius: 0.3rem;
}
.seq_col_reset .MuiFormControlLabel-root {
  margin-top: 18px;
}
.no-bg-color {
  background-color: transparent;
}
.form-ref-no-print,
.form-ref-num {
  text-align: right;
  padding: 10px;
  font-size: 12px;
}
.white-text {
  color: #ffffff;
}
.fixed-for-print {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 0px;
  padding: 10px;
  font-size: 12px;
}
.print-settings-accordion.MuiPaper-elevation1 {
  box-shadow: unset;
  margin-left: -10px;
  margin-right: -10px;
}
.print-settings-accordion .MuiAccordionSummary-root {
  background-color: rgb(192, 222, 250, 0.5);
}
.print-settings-accordion .MuiAccordionSummary-root.Mui-expanded {
  min-height: 48px;
}
.print-settings-accordion .MuiAccordionDetails-root {
  display: block;
  border: 1px solid rgb(192 222 250 / 50%);
}
.print-settings-accordion .MuiAccordionSummary-content.Mui-expanded {
  margin: 13px 0;
}
.transform-sub-label {
  transform: translateY(17px);
}
.processing-screen {
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  z-index: 9999;
}
.processing-text {
  position: fixed;
  top: 20%;
  font-size: 16px;
  font-weight: 500;
  left: 50%;
  width: 400px;
  margin-left: -200px;
}
.processing-progressbar {
  height: 10px;
  position: fixed;
  left: 50%;
  top: 29%;
  width: 340px;
  background: #0575ce;
  border-radius: 30px;
  margin-left: -204px;
  padding: 2px;
  margin-top: 10px;
}
.pro-loading {
  transition: all 700ms ease;
  height: 6px;
  width: calc(100% - 5px);
  border-radius: 10px;
  background: white;
  position: absolute;
  margin: 0px;
  display: inline-block;
  animation: load 7s ease infinite;
}
.form-navigation-header {
  width: 100%;
  display: FLEX;
  justify-content: space-between;
}
.wf_workflow_block {
  width: 90%;
  padding: 20px 10px;
  border: 1px solid #ddd;
}
.wf_inner_row {
  display: flex;
  gap: 10px;
}
.wf-select-wf-col,
.wf-source-col,
.wf-source-datagroup-col,
.wf-property-col {
  width: 25%;
}
.wf_operator_col {
  width: 33%;
}
.wf-action-block {
  /* display: flex; */
  margin-top: 5px;
  width: 5%;
}
.form_preview_header .online_form_wrapper {
  min-height: auto;
  background-color: #ffffff;
  padding: 0px 50px 0 50px;
}
.form_preview_header .form_inner_wrapper {
  margin: 0 auto;
}
@keyframes load {
  0% {
    width: 2%;
  }
  10% {
    width: 10%;
  }
}
@media (max-width: 600px) {
  .processing-text {
    width: 300px;
    font-size: 14px;
    margin-left: -150px;
  }
  .processing-progressbar {
    width: 300px;
    margin-left: -154px;
  }
}
.online_form_wrapper.no_background {
  background: #ffffff !important;
}
.wizard-pages .badge-info {
  background-color: grey;
}

/* pagination styles */
.formio-form .pagination {
  flex-flow: nowrap !important;
  overflow-x: auto;
  counter-reset: li;
}
.no-form-pagination .formio-form .pagination {
  display: none;
}
.formio-form > div > nav > ul.pagination .page-link {
  height: 100%;
}
.formio-form .page-link:focus {
  box-shadow: none !important;
}

/* new progress bar styles */
/* Container */
.form-progressbar-wrapper .progressbar {
  display: flex;
  justify-content: space-between;
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 40px 0;
  width: 100%;
  overflow-x: auto;
}

/* Each step */
.form-progressbar-wrapper .progressbar li {
  counter-increment: step;
  text-align: center;
  position: relative;
  flex: 1;
  color: #999;
  min-width: 100px;
}

/* Step number circle */
.form-progressbar-wrapper .progressbar li::before {
  content: counter(step);
  margin: 0 auto 10px auto;
  background: #ddd;
  color: #333;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  font-weight: bold;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Connector line */
.form-progressbar-wrapper .progressbar li::after {
  content: '';
  position: absolute;
  top: 16px;
  left: -44%;
  width: 88%;
  height: 2px;
  background: #ddd;
  z-index: 0;
}

/* Remove line from first step */
.form-progressbar-wrapper .progressbar li:first-child::after {
  content: none;
}

/* Completed steps */
.form-progressbar-wrapper .progressbar li.completed,
.form-progressbar-wrapper .progressbar li.active {
  color: var(--tab-color);
}
.form-progressbar-wrapper .progressbar li.active {
  font-weight: bold;
}

.form-progressbar-wrapper .progressbar li.completed::before {
  background: var(--tab-color);
  opacity: 0.65;
  color: #fff;
}
.form-progressbar-wrapper .progressbar li.active::before {
  background: var(--tab-color);
  color: #fff;
}

.form-progressbar-wrapper .progressbar li.completed::after {
  background: var(--tab-color);
}

/* Active step distinct styling */
.form-progressbar-wrapper .progressbar li.active::before {
  border: 2px solid var(--tab-color);
}
.form-progressbar-wrapper .progressbar li.active::after {
  background: var(--tab-color);
}
.update_modal_wrapper {
  display: flex;
  /* flex-wrap: wrap; */
  margin-bottom: 30px;
  height: calc(100vh - 50px);
  background-color: white;
  /* border-top: 2px solid #dedede; */
}
.form_left_section {
  width: 70%;
  height: 100%;
  overflow: auto;
  min-width: 200px;
}
.form_right_section {
  flex: 1;
  height: 100%;
  min-width: 200px;
}
.styles_code_wrapper {
  padding: 10px 5px;
  color: var(--mui-custom-darkColor);
}
.split_bar {
  width: 6px;
  cursor: col-resize;
  background: #ccc;
  margin: 0 5px;
}
.update_modal_wrapper.full-form-width {
  /* width: 85%; */
  margin: 0 auto;
  /* padding: 20px; */
}
.full-form-width .form_left_section {
  padding: 0px;
}
.form_css_editor_wrapper {
  background-color: var(--mui-custom-kaHeaderFilterPopupBackgroundColor);
}

@media (max-width: 786px) {
  .form-progressbar-wrapper .progressbar li {
    font-size: 13px;
  }
}
@media print {
  .form-progressbar-wrapper .progressbar {
    display: none;
  }
  .no-form-pagination .form-progressbar-wrapper .progressbar {
    display: block;
  }
}
@media print {
  .no-print {
    display: none !important;
    width: 0;
    height: 0;
  }
}
.form-ai-preview-only .form_inner_wrapper {
  margin: 0;
}
.print-icon-button {
  border: 1px solid rgba(0, 0, 0, 0.23);
  border-radius: 2px;
  padding: 5px;
  cursor: pointer;
  background-color: #fff;
  color: #000;
  transition: all 0.3s ease;
  &:hover {
    background-color: #f0f0f0;
  }
}
.btn-wizard-nav-submit {
  display: none !important;
}
li:has(.btn-wizard-nav-submit) {
  display: none !important;
}
.btn-wizard-nav-cancel {
  position: relative;
  padding: 10px 30px !important;
  &::before {
    content: '×';
    position: absolute;
    top: 12%;
    left: 15px;
    font-size: 20px;
  }
}
.btn-wizard-nav-next {
  position: relative;
  padding: 9px 30px !important;
  &::before {
    content: '›';
    position: absolute;
    top: 12%;
    right: 18px;
    font-size: 20px;
  }
}
.btn-wizard-nav-previous {
  position: relative;
  padding: 9px 30px !important;
  &::before {
    content: '‹';
    position: absolute;
    top: 9%;
    left: 18px;
    font-size: 20px;
  }
}
.font-changes-preview {
  padding-block: 10px;
  text-align: center;
  border: 1px solid rgb(222, 222, 222);
  border-radius: 2px;
  margin-bottom: 28px;
  background-color: var(--mui-custom-formThemeSampleBackgroundColor);
  position: relative;
}
.font-changes-preview:after {
  content: 'Preview';
  position: absolute;
  left: 8px;
  top: -12px;
  font-size: 11px;
  font-weight: 600;
  background-color: var(--mui-custom-pageBackgroundColor);
  padding: 2px 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: var(--mui-custom-textColor);
}
.font-changes-preview .form-control {
  font-size: 0.87rem;
}
[aria-labelledby='customized-dialog-title'] {
  font-size: 0.87rem;
}
[aria-controls='epr-search-id'] {
  padding-left: 40px !important;
}
[ref='sidebar-container'] {
  max-height: 300px;
  overflow: auto;
}
a[ref='fileLink'] {
  display: block;
  max-width: 100%;
  word-break: break-word;
  text-decoration: underline;
}
.form-control:focus-visible,
textarea:focus-visible,
textarea.form-control:focus-visible,
input.form-control:focus-visible,
input[type='text']:focus-visible,
input[type='password']:focus-visible,
input[type='email']:focus-visible,
input[type='number']:focus-visible,
[type='text'].form-control:focus-visible,
[type='password'].form-control:focus-visible,
[type='email'].form-control:focus-visible,
[type='tel'].form-control:focus-visible,
[contenteditable].form-control:focus-visible {
  outline: none;
}

.no-view-for-print {
  transform: translateX(-10000px);
  position: fixed;
}
.no-view-for-print.form_login_wrap,
.no-view-for-print .form_login_wrap {
  padding: 0 !important;
}
.form-print-container.MuiContainer-root {
  padding-left: 0;
  padding-right: 0;
}
.show-sub-id {
  display: block;
  position: fixed;
  right: 10px;
  bottom: 0px;
  padding: 10px;
  font-size: 12px;
}
.form-control.builder-sidebar_search {
  background-color: var(--mui-custom-kaInputBackgroundColor);
  color: var(--mui-custom-textColor);
}
.form-control.builder-sidebar_search::placeholder {
  color: var(--mui-custom-textColor);
}
.formio-button-remove-row .fa-times-circle-o::before,
.formio-component .fa-times-circle-o::before {
  content: '';
  background-image: url("data:image/svg+xml,%3csvg%20stroke='currentColor'%20fill='%23ffffff'%20stroke-width='0'%20viewBox='0%200%20512%20512'%20height='1em'%20width='1em'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M128%20405.429C128%20428.846%20147.198%20448%20170.667%20448h170.667C364.802%20448%20384%20428.846%20384%20405.429V160H128v245.429zM416%2096h-80l-26.785-32H202.786L176%2096H96v32h320V96z'%3e%3c/path%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.drag-and-drop-alert {
  border: dashed !important;
  cursor: pointer !important;
  margin: 2rem 0rem !important;
  overflow: hidden !important;
  position: relative !important;
  box-sizing: border-box !important;
  /* min-height: unset !important; */
  border-color: #0575ce !important;
  border-radius: 0.125rem !important;
  background-color: #eff8fe !important;
  color: #333 !important;
  padding: 50px !important;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.component-edit-container div.row div.col div.float-right a {
  display: none;
}
@media print {
  .MuiContainer-maxWidthLg {
    max-width: 100%;
    width: 100%;
  }
  .row {
    flex-wrap: nowrap;
  }
  .no-print,
  .grecaptcha-logo,
  .btn-primary,
  .form-ref-no-print {
    display: none !important;
    width: 0;
    height: 0;
  }
  .page-break-before {
    page-break-before: always;
  }

  .formio-component-button,
  .formio-component-submit {
    display: none !important;
  }
  .fixed-for-print {
    display: block;
  }
  .formio-component .form-control {
    font-size: inherit;
  }
  .formio-select-autocomplete-input {
    padding: 0 !important;
  }
  .form-print-container .form_login_wrap {
    padding: 0;
  }
  input::-webkit-input-placeholder,
  .form-control::placeholder {
    display: none !important;
  }
  .col-form-label .fa.text-muted {
    display: none;
  }
  .datagrid-table td,
  .datagrid-table th {
    padding: 0.2rem 0.5em;
  }
  .datagrid-table .form-group .form-control,
  .datagrid-table .form-group textarea,
  .datagrid-table .form-group textarea.form-control,
  .datagrid-table .form-group input.form-control,
  .datagrid-table .form-group input[type='text'],
  .datagrid-table .form-group input[type='password'],
  .datagrid-table .form-group input[type='email'],
  .datagrid-table .form-group input[type='number'],
  .datagrid-table .form-group [type='text'].form-control,
  .datagrid-table .form-group [type='password'].form-control,
  .datagrid-table .form-group [type='email'].form-control,
  .datagrid-table .form-group [type='tel'].form-control,
  .datagrid-table .form-group [contenteditable].form-control {
    padding: 0;
    padding-right: 0;
    height: auto;
    border: none !important;
  }
  .datagrid-table .form-group .input-group-text {
    display: none;
  }
  .datagrid-table .card-body {
    padding: 0rem !important;
    margin-bottom: 0 !important;
  }
  .list-group-header {
    font-weight: 700;
    padding: 0.2em 0.5em;
  }
  .list-group-item {
    padding: 0.2em 0.5em;
  }
  .choices__list--dropdown {
    display: none;
    height: 0;
  }
  .choices__input {
    height: 0;
  }
  .datagrid-table .form-group.formio-component-select input[type='text'] {
    height: 0;
  }
  .datagrid-table .form-check {
    padding-left: 0;
    display: none;
  }
  .datagrid-table .form-check .form-check-input {
    display: none;
  }
  .datagrid-table .form-check.radio-selected {
    display: block;
  }
  .editgrid-listgroup {
    margin-top: 2px;
  }
}
.component-edit-tabs .formio-component-form {
  font-size: 14px;
}
.component-edit-tabs .formio-component .form-control:not(textarea) {
  height: 2.99em;
}

.form_login_wrap .with-fixed-width {
  min-width: 1200px;
}
.with-fixed-width .row {
  flex-wrap: nowrap;
}
.component-edit-container div.row div.col div.float-right a {
  display: none;
}
.btn-block {
  width: 100%;
}
@media (max-width: 786px) {
  .form_preview .online_form_wrapper,
  .form_login_edited_style_wrapper {
    padding: 0;
  }
}
/* data flow creation changes */
.dataflow_flow_wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
  height: 100vh;
  background-color: var(--mui-custom-pageBackgroundColor);
  border: 1px solid #e5eaf2;

  background-size: 24px 24px;
  /* justify-content: center; */
  background-image: radial-gradient(circle, var(--mui-custom-dataflowBackgroundColorDotColor) 1px, transparent 1px);
}
.app_flow_flex_container {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  min-height: 100%;
  font-size: 14px;
  border-radius: 4px;
  position: relative;
  left: -30px;
  /* border: 1px solid #e5eaf2; */
}
.app_flowname {
  /* width: 200px; */
  /* text-align: center; */
  /* padding: 10px; */
  /* background: white; */
  /* border-radius: 4px; */
  /* background-color: var(--mui-custom-appFlowNameBackgroundColor); */
  font-weight: 700;
  color: var(--mui-custom-kaInputColor);
}
.app_flowname.incomplete {
  background-color: #ffb600;
}
.app_flowname.complete {
  background-color: var(--mui-custom-appFlowNameCompleteBackgroundColor);
}

.decision_box {
  position: relative;
  height: 150px;
  width: 150px;
  line-height: 1.4;
  text-align: center;
  margin: 10px 0px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mui-custom-formSectionTitleColor);
}
.decision_box:before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  transform: rotateX(45deg) rotateZ(45deg);
  /* box-shadow: 0px 0px 12px rgb(128 128 128 / 35%); */
  background-color: rgb(255 182 0 / 30%);
  z-index: 0;
  border: 1px solid #ffb600;
}
.decision_box:after {
  position: absolute;
  top: 10px;
  left: 10px;
  content: '';
  height: calc(100% - 22px); /* -22px is 2 * 10px gap on either side - 2px border on either side */
  width: calc(100% - 22px); /* -22px is 2 * 10px gap on either side - 2px border on either side */
  /* border: 1px solid orange; */
  transform: rotateX(45deg) rotateZ(45deg);
  background-color: transparent;
  z-index: 0;
}
.app_flow_step_wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.arrow {
  display: flex;
  height: 60px;
  position: relative;
  width: 100px;
  margin-top: 6px;
}
.arrow.ver {
  align-content: center;
  justify-content: center;
}
.arrow .line.top-to-bottom {
  height: auto;
  width: 1px;
}
.arrow .line {
  background-color: var(--mui-custom-kaInputColor);
  display: block;
}
.arrow .line.top-to-bottom::after {
  border-right: 6px solid transparent;
  border-top: 12px solid var(--mui-custom-kaInputColor);
  border-left: 6px solid transparent;
  content: '';
  height: 0;
  left: 44px;
  position: absolute;
  top: 50px;
  width: 0;
}
.loader-with-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-top: 15px;
}
.dependent_step {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
  position: relative;
}
.dependent_step_name {
  width: 170px;
  height: auto;
  background-color: var(--mui-custom-automationDependentStepWrapperBackgroundColor);
  border-radius: 7px;
  text-align: center;
  padding: 8px 10px;
  word-break: break-word;
  border: 1px solid transparent;
}
.app_flow_step_composer {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--mui-custom-dataGridBackgroundColor);
  /* box-shadow: 0px 0px 12px rgb(128 128 128 / 35%); */
  border-radius: 4px;
  border: 1px solid #e4ebf3;
  color: var(--mui-custom-formSectionTitleColor);
}
.decision_outcome_arrow {
  position: absolute;
  bottom: 0;
}
.decision_hor_outcome_arrow {
  position: relative;
}
.decision_vert_outcome_arrow {
  position: relative;
}
.decision_hor_outcome_arrow::before {
  content: '';
  position: absolute;
  left: 109px;
  width: 60px;
  height: 1px;
  background-color: var(--mui-custom-kaInputColor);
  z-index: 1;
  bottom: 75px;
}
.decision_hor_outcome_arrow::after {
  border-top: 6px solid transparent;
  border-left: 12px solid var(--mui-custom-kaInputColor);
  border-bottom: 6px solid transparent;
  content: '';
  height: 0;
  left: 160px;
  position: absolute;
  bottom: 70px;
  width: 0;
}
.decision_vert_outcome_arrow {
  position: relative;
}
.decision_vert_outcome_arrow::before {
  content: '';
  position: absolute;
  right: 0px;
  width: 1px;
  height: 60px;
  background-color: var(--mui-custom-kaInputColor);
  z-index: 1;
  top: 6px;
}
.decision_vert_outcome_arrow::after {
  border-right: 6px solid transparent;
  border-top: 12px solid var(--mui-custom-kaInputColor);
  border-left: 6px solid transparent;
  content: '';
  height: 0;
  left: -6px;
  position: absolute;
  top: 57px;
  width: 0;
}
.success-yes-text {
  width: 40px;
  position: relative;
  left: 58px;
  top: -32px;
  color: var(--mui-custom-formSectionTitleColor);
}
.success-outcome {
  position: relative;
  text-align: center;
  padding: 10px;
  background-color: rgb(0 224 153 / 30%);
  width: 180px;
  word-break: break-word;
  /* box-shadow: 0px 0px 12px rgb(128 128 128 / 35%); */
  border: 1px solid #00e099;
  color: var(--mui-custom-formSectionTitleColor);
}
.failure-no-text {
  position: relative;
  left: 62px;
  top: 6px;
  color: var(--mui-custom-formSectionTitleColor);
}
.failure-outcome {
  position: relative;
  left: 111px;
  background-color: rgb(244 67 54 / 30%);
  padding: 10px;
  top: -9px;
  width: 180px;
  text-align: center;
  word-break: break-word;
  border: 1px solid #f44336;
  color: var(--mui-custom-formSectionTitleColor);
  /* box-shadow: 0px 0px 12px rgb(128 128 128 / 35%); */
}
.failure-wrap {
  position: absolute;
  left: 153px;
}
.success-wrap {
  position: relative;
  margin-top: 44px;
}
.dependent_step_incomplete {
  background-color: rgb(255 182 0 / 35%);
  border-color: #ffb600;
}
.flash-green {
  animation: flashGreen 0.8s;
}

@keyframes flashGreen {
  0% {
    background-color: #04b66d;
  }
  100% {
    background-color: white;
  }
}

.flow_step_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.app_flowname_wrap {
  width: 250px;
}
.flow_icon_wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  justify-content: center;
  background: var(--mui-custom-formThemeSampleBackgroundColor);
  border: 1px solid var(--mui-custom-formThemeSampleBackgroundColor);
}
.app_flowname_description {
  margin-top: 8px;
}
.question_icon {
  position: absolute;
  top: 20px;
  border: 1px solid #ffb600;
  width: 22px;
  height: 22px;
  border-radius: 20px;
  left: 44%;
}
.json-view {
	display: block;
	color: #4d4d4d;
	text-align: left;
	--json-property: #009033;
	--json-index: #676dff;
	--json-number: #676dff;
	--json-string: #b2762e;
	--json-boolean: #dc155e;
	--json-null: #dc155e;
}
.json-view .json-view--property {
	color: var(--json-property);
}
.json-view .json-view--index {
	color: var(--json-index);
}
.json-view .json-view--number {
	color: var(--json-number);
}
.json-view .json-view--string {
	color: var(--json-string);
}
.json-view .json-view--boolean {
	color: var(--json-boolean);
}
.json-view .json-view--null {
	color: var(--json-null);
}

.json-view .jv-indent {
	padding-left: 1em;
}
.json-view .jv-chevron {
	display: inline-block;
	vertical-align: -20%;
	cursor: pointer;
	opacity: 0.4;
	width: 1em;
	height: 1em;
}
:is(.json-view .jv-chevron:hover, .json-view .jv-size:hover + .jv-chevron) {
	opacity: 0.8;
}
.json-view .jv-size {
	cursor: pointer;
	opacity: 0.4;
	font-size: 0.875em;
	font-style: italic;
	margin-left: 0.5em;
	vertical-align: -5%;
	line-height: 1;
}

.json-view :is(.json-view--copy, .json-view--edit),
.json-view .json-view--link svg {
	display: none;
	width: 1em;
	height: 1em;
	margin-left: 0.25em;
	cursor: pointer;
}

.json-view .json-view--input {
	width: 120px;
	margin-left: 0.25em;
	border-radius: 4px;
	border: 1px solid currentColor;
	padding: 0px 4px;
	font-size: 87.5%;
	line-height: 1.25;
	background: transparent;
}
.json-view .json-view--deleting {
	outline: 1px solid #da0000;
	background-color: #da000011;
	text-decoration-line: line-through;
}

:is(.json-view:hover, .json-view--pair:hover) > :is(.json-view--copy, .json-view--edit),
:is(.json-view:hover, .json-view--pair:hover) > .json-view--link svg {
	display: inline-block;
}

.json-view .jv-button {
	background: transparent;
	outline: none;
	border: none;
	cursor: pointer;
	color: inherit;
}
.json-view .cursor-pointer {
	cursor: pointer;
}

.json-view svg {
	vertical-align: -10%;
}
.jv-size-chevron ~ svg {
	vertical-align: -16%;
}

/* Themes */
.json-view_a11y {
	color: #545454;
	--json-property: #aa5d00;
	--json-index: #007299;
	--json-number: #007299;
	--json-string: #008000;
	--json-boolean: #d91e18;
	--json-null: #d91e18;
}
.json-view_github {
	color: #005cc5;
	--json-property: #005cc5;
	--json-index: #005cc5;
	--json-number: #005cc5;
	--json-string: #032f62;
	--json-boolean: #005cc5;
	--json-null: #005cc5;
}
.json-view_vscode {
	color: #005cc5;
	--json-property: #0451a5;
	--json-index: #0000ff;
	--json-number: #0000ff;
	--json-string: #a31515;
	--json-boolean: #0000ff;
	--json-null: #0000ff;
}
.json-view_atom {
	color: #383a42;
	--json-property: #e45649;
	--json-index: #986801;
	--json-number: #986801;
	--json-string: #50a14f;
	--json-boolean: #0184bc;
	--json-null: #0184bc;
}
.json-view_winter-is-coming {
	color: #0431fa;
	--json-property: #3a9685;
	--json-index: #ae408b;
	--json-number: #ae408b;
	--json-string: #8123a9;
	--json-boolean: #0184bc;
	--json-null: #0184bc;
}
.json-view_vitesse {
	color: #393a34;
	--json-property: #998418;
	--json-index: #2f798a;
	--json-number: #2f798a;
	--json-string: #b56959;
	--json-boolean: #1e754f;
	--json-null: #ab5959;
}
