: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);
  }
}
/*@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300;
  src: local('Nunito'), url('./assets/fonts/Nunito-Regular.ttf') format('truetype'); !* Safari, Android, iOS *!
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  src: local('Nunito'), url('./assets/fonts/Nunito-SemiBold.ttf') format('truetype'); !* Safari, Android, iOS *!
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  src: local('Nunito'), url('./assets/fonts/Nunito-Bold.ttf') format('truetype'); !* Safari, Android, iOS *!
}*/
.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;
}
.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;
}
.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: #0575ce;
  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: 12px 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);
}
*: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: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif !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: 30px;
  height: 30px;
  margin-right: 10px;
}
.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: 600 !important;
  border-bottom: 3px solid transparent;
  padding: 12px 15px;
  font-size: 0.89rem;
  color: var(--mui-custom-menuColor);
}

.ar_menu:hover,
.active_menu {
  border-color: #0575ce;
  color: var(--mui-custom-menuColor);
  /* background: rgba(5, 117, 206, 0.25); */
  background: linear-gradient(0deg, rgba(5, 117, 206, 0.2), rgba(5, 117, 206, 0.1), rgba(5, 117, 206, 0));
}

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

.card-tiles-inner {
  width: 24% !important;
  margin: 0.5%;
}
.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;
}
.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 {
    font-size: 12px;
    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-textColor);
  font-weight: 700;
  line-height: 19px;
}
.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: 28px;
}
.popper-zindex {
  z-index: 1;
}
.MuiDialog-paperWidthXs .MuiDialogContent-root {
  min-width: 444px;
}

.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;
}
.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;
}
.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: -9px;
}
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;
}
.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: 25px;
  height: 25px;
}
.navbar-right-nav .MuiListItem-gutters {
  padding-left: 8px;
  padding-right: 8px;
}
.navbar-right-nav .menu-logo-image {
  margin-left: 5px;
}
.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;
}
.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: #04b66d !important;
}
.primary-button:hover {
  background-color: rgb(2, 127, 76) !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: 0.875rem !important;
  padding: 0.5rem 2rem !important;
  line-height: 1.75;
  border-radius: 3.5rem !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 rgba(0, 0, 0, 0.23) !important;
  background-color: #ffffff !important;
  color: #383838 !important;
}
.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;
}
.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);
}
.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;
}

.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;
}
@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 .MuiFormLabel-root {
  font-size: 14px !important;
  font-weight: bold !important;
  color: var(--mui-custom-kaInputColor) !important;
}
.header-input-select-container .MuiAutocomplete-inputRoot {
  padding: 3px !important;
  padding-right: 30px !important;
}
: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-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.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;
}
.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;
}
.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;
}
.form-group {
  margin-top: 1rem;
}
.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: transparent;
  color: var(--mui-custom-kaInputColor);
  border: 1px solid var(--mui-custom-inputBorderColor) !important;
}
.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: 10%;
    left: 15px;
    font-size: 20px;
  }
}
.btn-wizard-nav-next {
  position: relative;
  padding: 9px 30px !important;
  &::before {
    content: '›';
    position: absolute;
    top: 10%;
    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;
  }
}
/* data flow creation changes */
.dataflow_flow_wrapper {
  background-color: var(--mui-custom-dataflowCharBackgroundColor);
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  overflow-y: auto;
}
.app_flow_flex_container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  min-height: 100%;
}
.app_flowname {
  width: 200px;
  text-align: center;
  padding: 10px;
  background: white;
  border-radius: 4px;
  background-color: var(--mui-custom-appFlowNameBackgroundColor);
  font-weight: 600;
}
.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;
}
.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 / 52%); */
  background-color: rgb(254 181 0 / 52%);
  z-index: 0;
}
.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: gray;
  display: block;
}
.arrow .line.top-to-bottom::after {
  border-right: 6px solid transparent;
  border-top: 12px solid gray;
  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: 135px;
  height: auto;
  background-color: var(--mui-custom-automationDependentStepWrapperBackgroundColor);
  border-radius: 30px;
  text-align: center;
  padding: 10px;
  word-break: break-word;
}
.app_flow_step_composer {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--mui-custom-dataflowStepWrapperBackgroundColor);
  box-shadow: 0px 0px 12px rgb(128 128 128 / 35%);
  border-radius: 4px;
}
.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: gray;
  z-index: 1;
  bottom: 75px;
}
.decision_hor_outcome_arrow::after {
  border-top: 6px solid transparent;
  border-left: 12px solid gray;
  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: gray;
  z-index: 1;
  top: 6px;
}
.decision_vert_outcome_arrow::after {
  border-right: 6px solid transparent;
  border-top: 12px solid gray;
  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;
}
.success-outcome {
  position: relative;
  text-align: center;
  padding: 10px;
  background-color: rgb(0 224 153 / 58%);
  width: 180px;
  word-break: break-word;
  box-shadow: 0px 0px 12px rgb(128 128 128 / 35%);
}
.failure-no-text {
  position: relative;
  left: 62px;
  top: 6px;
}
.failure-outcome {
  position: relative;
  left: 111px;
  background-color: rgb(244 67 54 / 52%);
  padding: 10px;
  top: -9px;
  width: 180px;
  text-align: center;
  word-break: break-word;
  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: #ffb600;
}
.flash-green {
  animation: flashGreen 0.8s;
}

@keyframes flashGreen {
  0% {
    background-color: #04b66d;
  }
  100% {
    background-color: white;
  }
}
.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;
}
body.react-confirm-alert-body-element {
  overflow: hidden;
}

.react-confirm-alert-blur {
  filter: url(#gaussian-blur);
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

.react-confirm-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.9);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  opacity: 0;
  -webkit-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  -moz-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  -o-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
}

.react-confirm-alert-body {
  font-family: Arial, Helvetica, sans-serif;
  width: 400px;
  padding: 30px;
  text-align: left;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 75px rgba(0, 0, 0, 0.13);
  color: #666;
}

.react-confirm-alert-svg {
  position: absolute;
  top: 0;
  left: 0;
}

.react-confirm-alert-body > h1 {
  margin-top: 0;
}

.react-confirm-alert-body > h3 {
  margin: 0;
  font-size: 16px;
}

.react-confirm-alert-button-group {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

.react-confirm-alert-button-group > button {
  outline: none;
  background: #333;
  border: none;
  display: inline-block;
  padding: 6px 18px;
  color: #eee;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

@-webkit-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.react-tel-input{font-family:'Roboto',sans-serif;font-size:15px;position:relative;width:100%}.react-tel-input :disabled{cursor:not-allowed}.react-tel-input .flag{width:16px;height:11px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAACmCAMAAAACnqETAAADAFBMVEUAAAD30gQCKn0GJJ4MP4kMlD43WGf9/f329vcBAQHhAADx8vHvAwL8AQL7UlL4RUUzqDP2MjLp6un2Jyj0Ghn2PTr9fHvi5OJYuln7Xl75+UPpNzXUAQH29jH6cXC+AAIAJwBNtE/23Ff5aGdDr0TJAQHsZV3qR0IAOQB3x3fdRD/Z2NvuWFLkcG7fVlH4kI4AAlXO0M8BATsdS6MCagIBfQEASgPoKSc4VKL442q4xeQAigD46eetAABYd9jvf3nZMiwAAoD30zz55X5ng9tPbKZnwGXz8x77+lY7OTjzzikABGsenh72pKNPldEAWgHgGBgAACH88/Gqt95JR0OWAwP3uLd/qdr53kMBBJJ3d3XMPTpWer8NnAwABKPH1O1VVFIuLSz13NtZnlf2kEh9keLn7vfZ4vNkZGHzvwJIXZRfZLuDwfv4y8tvk79LlUblzsxorGcCBusFKuYCCcdmfq5jqvlxt/tzktEABLb8/HL2tlTAw8SLlMFpj/ZlpNhBZ81BYbQcGxuToN9SYdjXY2Lz7lD0dCQ6S9Dm0EUCYPdDlvWWvd2AnviXqc11eMZTqPc3cPMCRev16ZrRUE0Hf/tNT7HIJyTptDVTffSsTkvhtgQ0T4jigoFUx/g+hsX9/QUHzQY1dbJ7sHV02Pduvd0leiK1XmaTrfpCQPgELrrdsrY1NamgyPrh03iPxosvX92ysbCgoZzk5kP1YD7t6AILnu+45LykNS40qvXDdHnR6tBennz6u3TSxU1Or9Swz6wqzCsPZKzglJbIqEY8hDhyAgFzbJxuOC+Li4d9sJLFsnhwbvH2d1A3kzAqPZQITsN76nq2dzaZdKJf4F6RJkb078YFiM+tnWZGh2F+dDibykYoMcsnekdI1UhCAwWb25qVkEq43km9yBrclQMGwfyZ3/zZ2QK9gJxsJWCBUk32QwqOSYKRxh6Xdm3B4oMW22EPZzawnR72kgZltCqPxrdH1dkBkqDdWwwMwMO9O2sqKXHvipPGJkzlRVLhJjVIs9KrAAAAB3RSTlMA/v3+/Pn9Fk05qAAAUU9JREFUeNp0nAlYVNcVxzHazoroGBkXhAgCCjMsroDoKIgKdFABBwQUnSAoCqLRFBfcCBIM4kbqShO1hlSrCJqQQmNssVFqjBarsdjFJWlMTOLXJDZt8/X7+j/n3pk3vNq/bb8+3nbP79137/+dd954qTVt8uTJL73OMhqNer03ady4cWOhWbNmjV+0FfKGjMb36Y9/1fXUst9cb2y8/lpb797z5k2dOjXVD9Ljn59fcHBwQEDAgGch3l9on6feeeedn0r9kvT222+/sErRgvcDArwV8f5tN/rcvPnMZ22pqVFRSVGjR38k9Rsp9fLql/MXLj20VGjt2rVeak2Og/auI/kHBQ3We/tCo0ZNhwYNGj58/NaWlpbOyMhIX1//2/jTrICvckhXruQsWbJw4cL3tzhPORynSk5lZWVtglL9IkmdDQ05NqvVGhLwbKSUL+Tvb9yH/2sj+eN0IZZ3fvq3Hnp71ZtCOyofdnTYSzq9xX7UtsF9+/Y1FpeZT54sc2aUlq6Jy89YM/qj2oZaoeOkMR8dV/Tee++NWb04rrA5MRYKDAyc/NKCpwDIyKhE9LEzZ/r4DLQAAE6EyEeM6AcNH7m1pTMnB+fHX7tG9Bs0Xt+GwM/frqm5tz950aKDk6rsiA0xbUrbRAii/BDeV9bGhQsPRlyOCAuZ9GykZwT++n2RHPnVYQU+oaFDPQD8jEQAPiDdaLPaHGVXbn/O7YHQuIH9B/gYgzts1iqrtSopKWlNRkzS6I8arFaOFvTfew8AfiYil/rN6sWTKwtbArOzExISUl7+vwCuQNt8Bg71AQCcTwNpWeFbW3IIQEmJr08XgIzX2xDcvZrs7Jru5EWXwwKSwh2RkQ77w7Q0bXp6YRoDaKO+kZl8MCwsYpJ3pEf8liAAoPhDhqUMQ/wAkF+oqKiosJYA7HxotdnTtVe6Pr/S0h+AI90QffU3T9obGuwdD5PqkmJiMtbM+ajWI/60TX0COhoarAAE1dfXV80FgMmLi1oSKP7/B6ASAGyBV4YM7D/Bx8/bF7g5fgmgEwCCSiJtJQRgxEi9zZqVdYUu9pW0tLCIgOvxdR0dpxx5aWl7EzV7CYDV+tXnCzMzkzMvE4AFlTuhZaSf/OQny1L32RC+JcHikzJ06NAJoe+YNKRbsbG3xPlWZTxssNmdOP/J27ffudLJ60V7DAaT1lxRVvfwYe3Jlrq4uJiKjAwAcIWP+BkAhV/i7HA0uAG8BAIUf8qfzvwvgJcQf+XMK4GWi8OGTpgQ6uftzwC0LIM2WgcASwaXOBwlA7v6/YgAhFRt2pRGeu0/UyImbal77eHDo2kVAJAeKwE0fl6P63/5nSlTAKBCiR8AovbZEL9lf8I5AMD5booAE7OzY8X5fhGJi0/nTzTcMh+80iIBaF0APqvIu3EjqfRGcV3S4aSKYk8AaW4ADU4gOFlfn8sAXnoJBDpTCMDL87zU2kwATl+x1Nw+P2HChKHBBMDHFT8DwGjX11FSYu/f/aMf9XtOjwAacf2hmxRg7ywXDrr30kb7NVhDquo/z0y+nJs7ZUoYA5DxM4BFmcnJyV93PzjbvQhK3urqAYF7xflWVT5ssDaU4Ox7T9+6Ei4BaN0AUkvXJEExMTGHD9cdFgA2yfgZQAP1f0dJw0lrfS4BmIb4z5yZBgL/H8DibbehGROenQ0AQRhvZPwQAGDQ8wlqsFkmdP9ofr/n/OgK2ml1xxQECAAy/tdee++91wCA1mfWJy/KXUTr536T+O67764X2r9//T+3JkPdDx50f7qItDXfff+zeAxY1lYV0VCmPV1Ts5fGAGUYDbHpo0qT6vKTignAtWvXiuf0StwGZZPQybMPAYC8/xF/bj0AUPwvvzytKCdl6dMAvJxRuXjxkCHnL86YMXs2A8B4m4yWQTrdIp0uByMajcATJrwzXwCIiIjAFSrbJwGI+FlH00YH8/rQy5enQPsYgBK/BLCI1c0Afonhn/XjH8MNLP9o1Y4Pfg795N9hYQ23bt1q4fb07z+A/ITR2J8AFJnqOP7iuj7Fc35TK+9/bkPaM+NGiSnsB6wRIwGA4n/5T5Pzc5aeeAqAP1VCM4niWRqVgr1p1sEYlskNJQC4BQZbLJi0MAgCgBUKqYo3VEVEhIWFTZqXtYmVxiIAtB4QeDUAvMuSFBgAJCkwAKHlLAKw4wMIFG5URVgdLdwedEq6BuCgj1qzpi4uiVScYa6I0fWKJQVC2aRDY0eNWrlyECwMMIDDc2vZ6UF0F7z8tB5w4kTvtZ+ygklGkk4lvZ6sne45SDg8aJIQ2z+4Mmg0qcfauXPnfvPNN9XV/1S0VSWyf1Ls4FZ5aIHu/blGKb2UOM0ckq4PmsZ2b8yYMb2l4FbhX8ePHwmhuSPXkhaQ5q0tXzBvntdUUq9eSyFu9njXxpA74Leg198yktRWVI4OkAkymw2Q3WO90+nnN3u2H0QkHI6JpHHj2GvTYdsupd68GfVZ4yTJqJeUaNKhQ+rzCUvOMXEr//4vD3333XdLe+rRJx4iqumDnT2O5zW1HII1hPLy8pJGjz9GWgk9D61Al4fWkWay9VRbUa1GEVCYDRoonu0dr++n0ZQ0dMCNdDRYHVrtuImjWHQ80lvfl4WfhJetw1CFm6h+rkazd28iJHvyIe/IHt7ZOBY7o4GPH4smPqf7nRwz/sH6bmmi2HtvYiBUYPxEcZakt701PdsPAIhb3DBbYmIIAOK+F9HXJ6z7t799AwDI48+cOQRi66m2ogoAYVwIQEkQb8DrJza1azRWq9NpjUjXtg+aNXHU9EEQHW/YsGFD3toHMFZbgzUsDNPkPgAgpScG1vA4TgB8PZATAAoc6IasWPHhhwCQkyNCdwMIJCVqDabA8+cAAJFLYVD92dvpjvQe7ZcA7p0/350dEzNmy+iRAHBPrO9+AwB41Of4h2HoFdZYhsfL7ej7QmbSBdED/GkDXv+ju9Pv4i9mM+g09Rs1duKoQSQR/4whb7msbFhufHy8M2xup6AZ3sHzWOChaveIWQCtn00A7s/84MDuD4bd+fBDcYEukrVna5fwMQPAsqnQZOqqLtBzezysvHd6z/YLANndUELMGAmgXqzPfeON3+IE8PHbuL2YegYCAO+/fz/io2VMM+5HpR/BGXIPGCzix3oAaBo13aApK9Mahg8fNAo9ANsPGi7iB4BLZRUPH9advJGb6zx+3Jk7FwFtCNekNzQUabW3cAv0Ek9uUA0U+PGsY4NmzrxQVBS3e82wGQDA7bvI8SsAsgNP7y26HV4GALyeJzGaY5J18fZ4GT+3DwBK8/K2ZF/s7v46ZYwEsMJHrJ/gApBJ8QPAs9gh2BYBnT077OwUnvcBwB0/nCEAQPFBdADefv5dPEu3p2u18e39Bg2aPou2h9wNmP3wi7bGL9qsuVOcizoBgM/X0BBtamggK2wGABn+WSLw8awm9P4Du3ecys+aMWPGt6J9medF/EsBIBbxJxSFm4vM5moJAOGL+AHAO90jfglgy5bshO7uFAIQM2fkyhUr6sX6fW+MJQDYX1wvWI/+uOIc79mziJec4ESxDPGy6AF9RfzYHgBw02s7yswNhf1GDJ8+lvcfPgKrxfoAa0S9uP9HTV95LHdur8TzuF7W5OSqDdEGAFiaiIjk9U8hAMdw+1Ts3r37VPOMGR/K9l3k+CUA9P9b4c6y8LKC6upqAiDj3wpxD1Dix/m9Uku3KAD6xMx5DgC6xfrLYwnAEuw/jOJnAMHjpnvECwA8aK5YseK3EA2aogf0pQNIAIOaXI8S0/sBAPaHaLUEIOJHPmjUsWACACN7/qLVmoz2Zjabv3x8X+oBdP/DWeih94d9sHv3BzO+fOOND6l9C93xL00BgOy97dHo/ZHm6EcAwM8OHlZ+YLpFtF9eQAGA9+81pg8DQCzdU3D9Ef/YN3AC8OP4Z5D1DBg7XYmfAKitqYl7AA8AvDxxVLtGW1VVVhYRZjC0jhg/Tuzv3j6gCuEjfghGYd/cXrFk5BNqai4K633k938h/Zp15C8Tx68E7X7Dtm2b8QZEAH743j8gYQQwC8TGlp08Z7ZWC+k/4eFf6pc//Sje3+TZ/pFeqXkQ7hoIhhoAnve8ogRgCQZBMQsgTgBgXykpAoDKmpoIuJP/wMvzwaOKHkisVfUnDYZZ2J/k3n4ST/94UiHt2/d+Lx7yttFAXnP+60W6+X9ggQFzGDdeOJT791fQNAgAv/qHFFMAAJou7AWQBCAkKXzknW71bD96APnWQ4c+hthRsv1Ty2WNA4InwYYpzhJSW1MT+lmkxx9awyfNhQVmvf9+c9M4kVt1by8tsmuLub3I/in6er7URGkh1SZ1znfk/xR9o2oP7F8Pax1vbO8RgJcwhYp8BvpMcD1t+0GffPJ7xUo+CA54Yc+DPXv2vGA0vkBavfqIW+xeH3kr8iJ9QxJegQNpu/TMzZupnzXOkQ7+OkumeCCOU+Si2Sr7kR6RkQZ/iA0y62PWVKlUiLy8fsz1MSd6s+YhLz1vu0t7ILS4T1Rqn2cU9fF6YQdpMZIAG6dNmzZ5bX+7PZKGsXi0CM9xwZ+0DmuVnejxsHMDJu3Zu24vkrT+QTtYq4/8nvWHPzyeCa2HUySRbzMKAO9CGhZ15Pku67uGlaS7frzoeFat26uY2CpzijiIrbKfLdH2buy7eKLkR8oAaXWhQNLH8+qEKirKy0tLS6O8bXVZQpvg8dPmbV/O+jH0IvRClLY06hkPAcBGqLa19ckBzC0HVg+0R9rQFpqFtWER1oBPhr3+eutPocevPzIaBwTseTORAu/rQ7sd2AgA4g69T1PlfmGVsX9fn8ESALk4ER5Gsb/Mny2tbzGkPQwASH1s2iTDBwC2yhYeVdgq+yXODAwpCCzAozT7Dml12fqR8VGcOMtk9A0pkUvsI7YvR+DQrl2vQLtWpdbFPAVAq8lgMrcygKEEoKQsJKTMYQgLDQn4ZN3r60T43ngSrH5g1rBcWaINAoCMX1plXq8GoBUAXNYX4RcfPqzVXa8tqk3bpATAVtnCVpytsp8tsCBifcJVil8BoFhfu7OE5RCyGn0HWxweQLYvf/HF2tp1T568IgD0Gf2MJilKBSCrPf5Cc3h76e4zuwmAv8ZqQ5cLMwwNA4DWn+IfwoeqX3/8kQvAQC2rGQCU+NkqywuiAqAVACa6rO/hYsR/uBi3wKZd7wGA1gPAcEvfhAQAmEEA4DwLEgo4/tmzwyYdYqurWF+9zWKxhCKlTjnV2WEBxkhHX5/G8jSZEZoKALWJWbuyYgWBVRgA6vqk9hgDNh54YtI2t2jbn5wBgAl2m1XTYAmxhFoNU5DG/uRnHuG/d/yjEa0X7kID+99tgu6OxTytxK8A0KoAaCGexz+rWHPpUtKaG4e1hwnAhhNZlLtMhwyG+HhDGVvl0PXZ2fv7w3oMe8vPijuf4of2AQCyutDmzWdI1zcv0Psr8SOFF2As0Th8Qr84CiEzcjSKni09b4l5C+al4r9uAcCBA1nthuYKc3spA4i0hWgNdFazgbK8n3iEjzct380S1rd/f+mkAECJH87O21/2v76eALQM4MiRX0+MKqXsFXSYAei8/d3WXLHaoQNTUga4AYSGiesPTSEASvwEwCrin4D4GYAv4m9MS5M5yalGX1uixccntCDwKqf5n5FSboGNBw4caG03m1tbz5zZs3v1bAAAKvtJDAuzAeD1c0r4DEBY4f4DKH4C8AclfgYQxFl0etRWAAj+RwjA6DUyfuoC3xt02F6JnwDQ8UNpeQAB+DTY6op/HxJLU+au3jj5JYRPwvR5ZoFN3v12oVxjkE+oXbG+4o71WH5dJa9VALD7wBPMArvP7AEAfaTVgm3NZkzcszHoBCvhM4BvhTcfMOCB8OZH/sDxp0hrCwA8PvKjNqkaAPaL80sAyvU3fF+sU1tptspDaRkA3gKAEIoforwaAPhZ3f2de4RWeUvAARqDKH65ZDKE7/nxriexm17ZtO0JxvhXX1n1Q5UAYCMQTCsvn7ybEuYL9JE2q9jfZJoSBgADEP5xt757MJM0xMcHUUOfzr9Pywlua+vtThhJAOvdPYDc/LjRayC+CxiDTm2l2SpbeJmPHywzyhLDXH1ICI96wEAcAlIr4ABKSThuXt4c75ByyJ2Zj9qDWbD2SSJmAdaqBSp5CdPoB5frx9LDdEVDG6C5cKnB/xz1kdB3rAcP2Bb7+X0q9GtOXirWU7HGEgBSwI/CoehosrIT2f7pFKmtNFvlYF4W/jvAI6kMoX2y1kBIZKBHu1PDwfNI7A1ZbP+UIgPMAn08hFnAIOROal3P6pnlzSQlK8pHf4F2s+AwjSRNvDsCadl76bQif9tbqDBdNvzPfxcy8+nCw1OULDDrOukEi7PXnngo+IDLY8UZZMmGOmsMn09yPTI8VwjhWEUkXIY4mYVu2/7qq9tJXuqsLoxJj+XMZqEWUmdnskabf8olWOI9Rl9Ik07vqeh1id/EpqZRUGKOhksqxveuZGm0Idx3g//+BPrd734n793wXnuFEoUOXc+ClJcrC4wiI8rv0On4GNUbbh8TBRtwDOPVWerxv2P9SuiPukKcBwd0xRPusuLSH+/xUmd1r9dm5XsuZzZ35kBLxCt+ANBoihA5CY6YAODEmnS8KRpIr7cBgJp2uyDkahcmi+EAUE7SpvPQFRrw9yfcvk5nPHUyApDokQWPBQCOXN7DafPo+ABH1RN8fL0t6OrVq1X3eC7C8dVZ6vHu2P/4xz//WQDAQ44rnmhXFlrYYxeAW+mJ6bcSEyUAEFCyqJdPfkX6HLp8+fJXBEBTyAR2uAD0tWjSfbh9BGAUxX/1zi8HVXcpAHZq03m9BNBptXY4ET8DUOKXANJk/AxAFETYbO/ayJ3aACAwcH3gep/Qru4PUZ8w/nW8X9gWOMSdZR7bRG81jkOU1XjeDUArFOey4i++WFW1vr4NAMTLaFjLvekuAJvylYKIXIcvFcQItzLB9o5G44CzylcA+Pe1+GjS+fojwGDO4hbcOfuXX35bnZ0deIgB7Nyp1QqrygB+1Wb9lbOBAUQTAOV1XuwhdRZXI7Q3UVplfSKS45aEc0MH9p/yTveKkQCw7WrIXneWmYDMrD3++Mnx47x8Iqt8GiTs4+bJ8y6V3Xj4sOLkjV27qjA9AYCBvGJsQkLgXraKBAAEOsCdZPfLdbjjRwQAUOJvxy7t/BK+NKuPhqVYTX6PEHJ101+qq8MWLcrUqdf/ne5Pa+OvMLPRPB3dBw+ychaDSkers7gaFiAliv31sSHr14euv0o8n322XoeAHXhwOyuydsMYwJDax0+ePD5OywCA8NM4fAIwdWfdtIqKvKyMXbuKDPWFRS8wAG3r3lvtF0RBAveANuqv7K2Dc+3K9Z/g7gGtlKRja9sjPjSQF6/eqc7+9ttztKz3Z6uarl22BcqL+jvdo1URvyqzGbSUpOTX6XlkW0mvpaqzuBLA6dOxOD4DKMA7koRzaMyUf3+xczUCvlVgic+m+CWAIUNqjz95vEkBwJdfAniVhj6+/xuRjGyTAO42XRjVxJMfACjxE4CuveRlC2SO7d13NJD59yJFSQD0QRj+tPHu7flhpqv6y+pv/9lF7wn0QexZ4g1bBIBZBCAnIsJaEm+QAJT4f/Naqrmndd2wCFMPhuHTp3OWQDk6vS1hfcL+6v6I/iU8vgPAkAs1+5vPIn62zt6+56AsdNChjx49OqcvwsEQPx2OjwcAIv5d+YW5hfkSgNZ814wNGADHP0HEo58Q8PXe2Fjx/JkCxd7T8uXn+CUA3P4AILcPFu8NuqrDziF+lND4hfCjigAQsywKozQN0Esc8eJ89LTHLk8+7ZmV+LnBnJX2KNAA8KvVQ//9xWTYkDNnJq9VW2m5XF8vl2lSx/X3AMDhU35kee7yXS94mfh8St78RNZDOetAEwBAmaRjoS6t4a7M0TKFcWxNtfE+cvvgsWKCjs3U8jwFAGxd0w150DIAkHO0QSjaSPM3Pa6BI+RnVtojAPAErBRo6AeHtN1YDP8uRra1aiutXgYALTZ1H287pn+SxAAA0pFB0aQT7wuzKbOQwV93kfC/Qt13j/TI0k5kg2Yqox1YY0VBwlKdWXgx6VvLzKlRrPEjRU53Q7QQdpenE/bW7G7JBpZOpUmfLVi9arXQWkhtpdXLZP8WzFsQFx3Hh2vm/CjrBZaX9UbvmzenotZWWmpZ3AOJUgvCtkq/2u2Vy0lmbiOfZhxLqSWuyC/FpS5qbCyiW/6LUm/om2rv6mrvR9VGyCRkNErs6uOprS2bcpaZ91Bbd0CTmsTiPd/i8gtuzxGVPpoIebTY61qJ+aT9pJOytEnQ6NfiSBlxcbWsMTRG7LBtdFvJ8nxI9FAyKEhgkJRa4jqHpigjQxMZqamry/fV1Hk3eWRx198zmjTpmEZovSbe7tRGq4+ntraGnlY9nJfT47Wu5YAGVIKSZIEF7y8KOrg9R5C++r2iI6/W9myvF2p3/YNwyqQYcl/Fc14TkcNAk+r60AkPhBzg0wkA4GNi2fyDCMAg5VURKkfz4uwOzWJN0GBNuR0Qrnk3jTrrqlh68O1wvDlyNCBp6R+k0Tqq7ACgOp7K2koA6b7xSgFGeuTgvkElWBYAEDgidxVY8P5c0DGMrbLTgx908tVTPdo73uumw+4baW94WByTlp+fFuMCkJGhBqD1ACCeFP2pTg/WVzkgTpiXUV6GtCCeD4Li82N29vYGoDs1/Lrvy379ngcADaWtg0JwMAe8ufp46gIM+brdYnEKL4/lSF5fItqjFE6ms6/g/UVBB18Qb1xgeno4x7qqf/XUKdr81i2ZIfJaU1LR0YEsbUxMWmnFUQEgP5/sYFxceXlWn1XIGR6w0JzDWosGZ2SIBgeFwJvDeBBvtxWVz5Ior2Xle486i4KIO1fP3aEXkiv0QQ47pa9CQoTTnP304227d08ejwMsszRaylwAZIGDvwCw/RQ8ObRRaBUXcIiCDpwPAN6NvQoN5vgHngOA5XT7NDVJa+31WUXSjRsxa27EXEuLawGAo3HU/+OysnBjlpdmPeNnExkYV16+HO3NEKMQJjgrGizjl1a0MTLI4xL2vek9KrBg+IiuhBRUFhMAfrojiae74Kcf715m8j0+ngDgj/vBR9QOAyArUmj2njc5cJmkOLCKa5u5PTO4YMM7cR0REPELAMtxxA0bpDX3SsXYFwNdu5bWmZN0bc7RjNraOMSPHpBRCgCrKWcYKq//njNrp4kGmyCQCQlGg5X40WDZA3z6u3vAnUEjRtw5d+5LAJi/Qm9xcOstFht9JxHp9/TjDeteKJyd7AFhuVPKhFX39vcXXd4hssjbuQO4IGxkAD6iPZy1Rg9Yj/g5/IGPAGD58kJ42Q0bwnE8AUDG39mZl5eToyMAiL62Fok2AkD34O7QM26jlIcG14oui6sYEjymrpxeyuUJlaZuqViWnz5Y0x8AQpt7J6V6Hxs+4k4N2chD386f/6EeRseB9lso89oBY6I+3lhVAQYDSHfud5qEkUEWGftj574ii2xWUqJyPTqfKOjg/WlQ5P7v4wJwSguhoJEV7hW1huOHKO1xDQD45aJWWyoAUAPOhBEAgwtAbZ2YhC2haDA/bbkfNvKmxmRobJF5mgEDNL/Q2EPKU72nD7rPPhq5rwf9CIDdageAUK2hod4GAKrj/U8BRiQ/ju8/R/7UJ4Ssbl9HutbpL63uUws2RH/k5bKe1vrKq8td1nsflDsXAES5OXQY9da639SS6uQswAC0ByyTlR6QAQkbEgIBQNbicggY8qCpdRpb3M6dNAguS4rTWC4ZjwVCXIABCitgdZ2RGNBDMAs4bSUAoDre/xRgsCFYvx5hkbkVVjfIv6/L6j61YIMLOs7ysuvttdSRV+vcnqEecycAiFpbFtUbiEpbzpiy6NKsDlhL/pS1ZQuq6TZwkjCYJOtuSVNJpZ8nIQeaf/NmPlKyz9R+b4T++cj46JF+9iM9JK2un5+0uurjkX2T5Qsso5Df/7O6smCj5/a93oI+5eUjKu0JVpLMJK/r18PDZRaWq4i3k0ykcHbLKmcqaoVlCvcQtGjEjyZ6emF1Fre3CpDa6vKZhbHn8wdLueytnqU8n7CTFSllugeMik0WaJd6CrUZDTfmwep/cY3S5M/hmqjP73V9Mj0uKjnA7ZQtFebiRWiVt8x/yrHW6GE1SYf8Hraa2psUa2m0QWRlQ0QWd8FiUrkrL5XK+ytm13iiUog3mzZtQbANsrpL7CfpySCz+G8BXEChYRVAxj1vSsmCDVUBxTfFTq3zpDO+Li5/Q9OFlrg6tdX2MovZCn6MtXM7PS8LAPQ+HQA48IcPeardqFesJtf6HvL2bby97tat9unCCQIAz/ORkWKeBwB3PgafKWxOFVYXCYvjwuqe4NAlnpcIgIhcFkQAAAfOfwwNIwAALR4IkKEpMJp6ZrWj1QUUgx2Yde32G/hIB+VVx6LUVlsCcF2Dyt4MQBzvFQgAKP62pvA2CUBaTZmF/RjLEV+dn7nuVvuo4fQRFQBYoHRH31DKAgdX5EMSb0ZGXIy0uiU+JcLqEoBprvgZgBK/BKDEHxYBAIMEAG16NQDoJYAdO7QCQAKnL043N5+mbpB4qNEZ77CXlFRk5FMJfFOd/OyOxJ/deZ1A99+8Weue5gjALphFLL+yezcB2AhZmy5Y2Wnh9feSCGE1ET8DAM2D3WeHDKFuMGi80R/hl+CjqvgSBsBlc5V0vMpCqigRF4viN7AVXV252B3+S8jaKtdTZoH5q7IIaUUjJnEBhYHWxysA3ty4482Nb2r5+KyMuvw64fQqnBknT2aU7aQe0PX8MqoXaKUsaCvivWvQmiQA7qHQ5t7bkSt5RctWYzcD2MEAwsNDJICvFi7sewf6knRnIltPn8vdxGNYvGkcAPj42OPt9hJfTqpyAws1GRnaImRBXQAQf4mBG7i2snwnaxlp51R1FjnEYRfqgBo69nHO0YD1ngAKNxbiP7S9BFAXV1EhnN7D8KLw5riiirq4lXUHK47VIf6mC63tTU3trU3T78IJilJSpQcAwK5XeLlQAXCg6oMbVYife8DCep8RSqkpACD+e0hL70UPGD5S70/pLXQ6pyhY4BzfYi20uNDgBoD4Bxi4gQyQZnVZPK3OMquXOecIdgQA0vMGuPwbD+yg9RIA4o8T20+tAFvxlV59Te6y0Vh5wWQytLYaTOgBAFCp3KNiEPzxrldUADD8VV06/wUWfw4AZDUVqzoSy2GXHwyZiTGgHwGhLHGoj7Mk0jmUAVS4D54BxcVcr90E5fUfkJTGb36ox4gSDwg9hkthP4RQCDtu3Ic6dYEDF1CYPAHweowBwgqPbVoJyXJXfFCxrCgjDv8Jr4urO51bk1GBLDOUQ+IssxesKKlSqveeH7+iBnAAqo/YTTogsq49rOfB7m23brUOp2UGQNH4DJ1gEVnledP47pKvfLdEqd/9occo8TMAJX4CoFXilwBg+lQA5HoFAIcvviiZWsHXH4q5nVDzk9HqLLNXUaFLJlORqahuz4uQOCDPAkblUYvkx1bTw3oGt3Xi4ivLsoDBnVWeygNc3mYSsoQA4PnyFwDIMCglD8EjXc3/kAQAPbPE4Wx9PW6BF6RDkW1ci2+K+JsngQE9AB2QOwEudGNdRoU6y+zl/ohMmjWyf6uiyfduWEVSnJ0wZLw4UvkMTaebCCuqLOtVFQxKGasQdwSYZdcZPWweSykFFuKwlZxoOBdQXIiGmvUkVxJ5g5TaSivnHs3SqeQ1UZUl7Q1p9Bp3kQWvFicXNvvQfGX7cR8fmqs6oPozOp1KAqgClSyw1AKSnqVA/PbTXj3E7RWnn/81jrcb4loHme7+n/Pz5krWuu3GM5+hVnmOfAICAFVWtzdVE9g05VApHvNTPawnW8fLiYmPeXvofmCNztv2lRxRuG/p1AUXOl6rrDd6WFGyyqsXQ4oXnKe3sRIT2f5YAsY2PV4nNJPUS2nv/a9wQJ3yewPiW2OcP3wDN8LQvIHP3zO+7/kXJ8IvrYGuJBUDgEhqyruaAJSXa0I0eaSjRwGA1otw2DrqOs8HBt6hzb+tSbi4RAdn17jE/UI7UwJw+Po6xLOFjmsroj//fEMmr+eCCovl6lUfeqHu47d2scsG0WA5eSqMj1AovM/QiAB8JXZnnRvBul6u9k4/v9Ccmbzwn8ZIgROwwDPET6sxdeaEa5xOTfiSnHA+//OeWetce0cDVAzl5BwGgNb29lb570L73fZ+AFCqsWg4fgCIYuspLidbVxzwNgggzZOQ0o2AyNpG2JWHKQZgJ6sdycvR3CGdDbYyE6kFABD/+uyEgoFcUBHQEAHVV1XxZyNhcwUAy/r1FP+UiIBZo0zmY+2etcQc//3uzE5T54P1evSokvj4SB/w7I/jAUB4Z3N6ZF8f3/TmJRsYwMILraQLUOvwz8ocHR2ODlSo5V65sg8ANKx0B7IsJGGtLaraXXF+Nir0/r77fPb58wkXM1HAAACUpbZjvQJAfJY00EnLRt8gdPXPIyIuiwoRLqi4mlBQkFI9gQFQUWpDhNNZbwWAXADg+AMD9w8dOmVKaMAsg2FQ+3BYFs/2TL+/EIN4Z8qjgXqjf4kdpoP7kwCgMWkdMGNDI03hOD+11+xhrWWt8uHiwyfbGk+6AdjtjkhhPV3Fx2F0/tnyszixP9cCy8/UshP2y8/Q7Brg9sHeImvLX42JlLADy+E4HrxxZlhY8gSuEGGrjOrnagAg4wMA9RH4lCu+w5lLADpQ+mlxxm8LvFUytKTEcnCWofV5fOVzzAmVlDk7yAneP4/4M79GcSoBcJb4l8SHIH4+Hj8oNoeGLtv8kNojASjWGlnwS5eK16BMM6eidMlhFwBtpK/Bw3qGqqyn2J+SkASAPtM6fz7l62QG4O8RvwQQL95qOGnZDeCyLGaGVeYesL8ayxKANl6Lt125+/DV2CVTZZGzcrHZPDmvbPLm8O/RA4a39+uux+WQF2T6/ZZMxJ/yDbcHPcBGPYDjFwBM2lPL8jafyTCF4/zUXrOHlY7iStXDEDlUAPCNdzgdeHqz8z9Hwzx8SQoAR4/S6/yYo1FsPbUKADipewnZeMvxZcrS7q2LuNY3TMYPAQAUSfHbeDma/1xmtdIYYMYYQE5yYEFKyjdoLwMIC4sHAPzHSQAqKovi8L5w2uT8yrz8uPLiWStN7Su60COnkADg8fkWU2dmZkr/ZwWAoCCMAUEU/7M4np9BE57TrM3avLm8sHnhBkM0ffbX4S4mdoSNXiPiv3b7ypIlt2/rvNjaYnwXFQb99QRAO5QB4Fvio6PZeor4OAury7mYXfMtWeFvD/X6OpNqfbtkXpYLIkTBhX1w30gDA6D9Mfp2d/cTn6kZg7gQoLpaFlQsKH/J9Sj6p1/8Yktq76LFIDAtP39yXn5dXv4zs5DFqFB06Us8jYZn7v/GVRCBW4qrC4aKMQA9wJyzJFqbn2+IXrgkmgHkDqRV8nwE4DDU53DO7dt0C6gLCqZi+tdatHlyGhjN1lPL4vVbAwPvu2aVOyn7dd4h92ReVhREqAsuxk6XqyFplT0LMILXyklQUpiaVJlfWRkXt7g8P6M8I2Na1KyVpTt2vPjiRgjO/MAq3RKopsDd3lNFbuVDWTj/hmYTj3ctzQYCEIFRVzkfirUheRdcAwB1lpXsnyHAFOVyj2w9hdPk9UsPjVM+Oxv/9cdzx49VliF1wcVY1S84eBg9JavMLlyqeOrhw6mpl4qjooqfiSruM+sErLmHYP7++sijvduVYgfa7gX1+XV6Y48TzoF6WOFPDilfxZHUWWB1VlY+Fe12qTe0wCOIQKkE+SaAQcp6E1JvlZRSYaH+AyCPn1sTnxMqmq2SOsurXl5L6vUWnYFb4KXWJ3v39viFBXXWVFpT/EFY0wOiSjg//03Wmd5ZdRcSL9SJdyN4MRK4cuX69bHvtjWyLn4claHNqFCssfN/ACSSlF+MGKC8+fSFjHPbWOJ4Bw/+1VsldXvVy2sXQ+ug2Fgy108DwIHXPr4gfmHhs4fQDegL0g2dPhI20/2ISwA4B52fv5EeQncAwGk0/HReHj/u5qUGrny+oCBWNPhg48GuKK3GcMkKcR2DddI8IfQYIffvA8hfjEDBBklG4A8AHDj0DnTwr656mAApdZZXvcxWe+bM27e3bQujn/J6CoDH/FFkQs1dBnCiklL4izERbebSUmEMTE3HzOIzOQaw42+dnX/bCBGAFjS/heNXADQ27u+6eLHrIABkGOouKVmdsgyhiooMoU/58/ga1vnzNV/j9beUqB94v02JnwDopFxPzOqCCvUyAZi8rQa/d5f9fwAkcg/APXteApgGFWq0hZM9ANx9fkWTJ4CizOQiAWDBYnR8cf1BYHNq4PMAEAgACfsPgkBXVMWlS+gBso6lapJGqKVFI6T+BQpTz6ywuSzeKVVG6tCxtrZsdQPgeLu65C9W8LLyCxEAgFlm2+2IiHsAMOWpAKgHXKAe8AQE3j5BxMrp/NO4tJQBtFOKpp2sJAPYsTwuOTnuRQbwfcWNG5eEMLdc0kkABxMu7t+f0nWzK75nlrdMxpe8SAGgxA8fYVJlhf+nFpkVvUSn6RQAOCtd39WVi3gJQKS4f0R9bxAATAaAewUFADDlqQD+W9y1hkVRRmGyy+6ygrYleMVCM4sQoRvQKiFSBlG56CZiYYigEIgFlcJWhIJ0YUuUCLMbT1mhS4ClaRJPEQRElhbhpRD1qSyhInvq6f6e832zMzta/arebm4zOzvnnW9n3j3fOe9H8f/gev6HH57vpPZyMAbK0pESpAfz/YKA5YuWvb9skdnMBGCq6PO2lpbMz6l19pWhUZdg8h1ljvLHSOCiZUxASxyw/eM9F7Cbn1LHNGWugYHyv3pJgIcDhSRAla5B/zQCZNvdnj2y7U73/lAiYFVJ3/33980jJXkqAsDA84e+aaorq5MEYCaLlBjiVwgw73z//eadZgAEIAV3O6YB9qN4CASQ1t/KMkP82BEE4Mu/5+ieoyDA6pnVzd3G6Ni3r0P8aVqwNA94nJDcetfnWyRuB7Z80rqDvv8MPA+36y1M9W13escIEACVNW9eX9+8vyIghr0Fnq/r/IEdFnq/xP1fwbHjprFqZyYCvHDaYzRXGBkHJAoCArby5qtJa4KAGctAwIzqTR9/vP3j7Xu20whQ69gwAs7UgbPIfGyRRUYxs1LMCzy6tnWTGj8R8CkDnUfyDyc5WOiyxCtmQmTOGxcXd20cm7mdTIALI4DwvHBYGOopjceO9czaggDcA0TBA+4BIGCSsp1mr8YIAgKrqqs/BrbvOWr1lMa5egJ0WWQQAIhqXgAEqE9BQu+3OuilvL7W+FZKOAmHvYuBkwl4rV81WCB4CmNtgncag+XfKyr0bWyiq7kK2MDQdb2dPALUtzPWywznWolWoFcD/fv1Ul6pE1DKjVmkiloGPgMvPTh/qpGOWjsGoPeZUlF9+ypv//pVTspyLe5S3n/paR5YynvfweDt+qzzEAn5CWhkdySGR2NKMD4+1oH/c5WAsv9lO9qSqJZ5k5LbNgukKuerrxUmKrSXzyTQ2moSuJEgiiouIKBfAPBTpWO0IzJS9rAsWNAWPLR0ZQw9VyIisH1UQcnXnJVdSYjg/U/Twcdvl5/fewzejv0ZSlZ2SDmhsLs7t5w+I2yIozwjwwGxjFcZkflh+iz1L7VBtW+jzc3pzM8CwoyGUM7hBcjz5YIKqTSBaWrWWbTxcVZ6IHhgYNMAZ6Vv7ADEk4J9jgUBE1TpiConQzls5WJji2IHStN+8vErCEzzpSqlEVtnVG0dylnZEioQmMf7y7jnzXMTEDjBF/aHAG/n/YHD54us8xDE7WjurLVXuPDDlAjIiUzPyTcY8ImRKSBAZH0PHJAFF4+/jfDwd2wl5c5jw8xB9cSAzVeeL0tleZ8gpYik6yRlQp0KMSkrXb3uq2EXvpv8LmWluWNFEIAqBDcBqnSMTiQCEH7R/D2lu1ItkJZdBWm+aWkj0qq2YjtnZbkKawbvf4TQ39/d3d/Pf/TZFVjg+xID22l/jv6aiyYOP4DECBNQX9HgKMx3VRAB0Q5k9nNiiYCUICaA4p84ejTCp/25zQ21zCCgvHxmJUZAoYEJkOcLLzQMDE5fsRcaLDQ+BA5to8IwImCA4qcn7cePX6cSAG8zI0nj8WJ6fJQqHeMdiZH5dPk3IXyjOf/rkC5fhF9QUFp69jkoNOSsLBdIzOD9ScGcf+gio/GiQ+dfjxcYMV2SAN6O/YGJzcaJQuoSARXfFDkiwztiYjPzw8opNZcSaTBGRpYnwhwT+59/WEijfux/heI4URk+8+aamZWzzTKNPUyebxKZwRURwskLbSqatCj+nTsPCQJ8/Dyn35kAY27nV7VaAiZdDAjT03gUfdLl79rVbcxw5M+mvjykMEePSyutikPpKkvXEtkxzwQA2wzANv6jT0RBYJcggLfT/ofroKK2NSOi4ZOHOEBAaE650VEUkwkC+LGNf5SkJRFwzWiaGm08QbW+xxxZe/dWOvdmhs901EzP1BAgpO9UR74U4sBZbSYm4KNtOz8iIAlLSlGVSgoB/vUDQWb+bSAIGMnnTlL0ivgcXP62Tbu6zZE54bDW+toPI6CrNC6utPQcGgEsXRE/CGDlxe1Tt8Ay8NAtz9KffWBmtpXCv/NO1RFip9G80+hfh+MTAfmFFbGO0AUdMZnhsbPLUzLSMQjQ05kY5J8YGUv7L2scfaB/XOMLtH+8MysWU9tAT0tfX7gkwGgdIaWvvlZZEPAhj4DPQIDOoYIJ2GdsQFkiDDLcBJyvFjzE5+Dmtys7qDwW1ZIgAFJza0HaCIRf+v3XisMD1+IKAoRIsaRmp2/nP/pEzPAkgM3TcAecOFwc35Gf73C5CuubY9rDQQCMkVPgCms04kVkfvhs3v/9/nHj+hE/E1CE+LmYt69vtyQAOWSY1UkCZPyybQ7KkupCP9yG+ImAG2vUyXYyiLyCCfBvaPDXEGA8Xy14iM9v67Tj4u++dPduJiCgYF7p2WdXVZ177tenfT9CODzw58Wx9OQMlq/9ppvsvufSn/EVmAECKEGnOkIMP7TN/9A1fHwiIL+jor4+ph7FuUxAeUo+EwBvcBDA+7//Pp8PEyDiZ4AAPl8iQErfE4cPc8GSBNr4hDK/Wrb9ieOp8YGAffvEF078NmDpeI1a4DC1vjYxJ5YQDuArMCuwC4MItjaY7Kq6lmtz5VOApScr2DE3QcvjP4APPZ9fYpyyljdetMkWFnJ2lghIsVgc+UYjnoL+QeGz9ftP5cd/bCxYIJhk1tn6F7XC+qzzeP32K94ABAEXAyCApOONkwGRtT1rSLxaPQzAP4qwdKk34wvOEn/xKnDUmzBGB9477w4gj7frfX01hg8MvMbfYRZLmHAX4/35DfyOydjbo5pZJn1zvSXUUmEBVb4L6D+f/yMKQKYRvPKSBgeTUKp7gdT0c3XSNSlaZqzjo4upse0DAVFcDHytgmt3rwDqLNQXbekwAaLAwky1x3w8ofRVua/P4iImwwcGNQ198OBBLy2mMlQSnQGLF/vOnD5scyCjTPEpVnZhFjRtdkrbHX8U4JVUUVFfUeF4z2wjWHN9NtZ5SNFop8PBZXzF6dmjID0/ePjh4vLyYsXn4davd0mI/uKh8CWm2Wwz5uN2ki8xS1tRsMDHQy2ytnfzTn3tMLLQhocNAcETpOPEwaHeBz0IQLM5Q5ixzX4iIzVjZUZ2yr0ls8gQvEw6RNCdZm8+vmLjbXZjsGfbnTGdunBEgYa31/6KehdKS9dMkVlfH79JfdousCSnK7ANPviRlgBIz4TmDx7+xlUyq6T+vpkzUeM0EwSkKSil2l2y2AQBNTWoxiSLTZa2ggA+HipRAf65DxABOBN3HpMImGS42cClc+w4sXmoNfVlDwI4cDm7Ezt7UmpMQkRIRMLqEkYZHCJYOmeGH99xfDcISDWkTvHwPU7npplhskADBDhcaE5fY7EycimrmqvxCU5yBoIAZ0YqbEKH5W678VgFcsz7R4/u3MsIy7ZZFaQCtZMFAYsWGY3bXmACRgoCjGaWtg8h06Ma3N3+4Dlau/xRAd6CAJmCIQJsqanW0zUE5GjihxvdsOyYkEC/iLensB98SZl0iNiLG+bx3cczZ4832g1TZPxyBKRsYTM04XiBr0CM0+VyrrmYSwKmjB+6o2CS77qFC5WSl2hnW1tloiUE99yQoIuoDW3WrP19eAYMGwY16uuN2IDsXbtkSQwREGrYtuydDiLgHZNa22tmKawYQsRUiIIFs2cWOMgA3Ky+tuy2W63eY4d4jgCKX5qxPZFhD5oVaX9xeiPiBwGKQ0T4pszdxzcdnz0+WG2rpPoD5fMofiYgz4HLDygjYKhrfqDvsGTFwQEEVGbh8o84e5h950RuQ5vVtx8MjEP8RIA4YEJX6S7hQEG+xKGGmnfeWW5sJgLU2l4LZX0VApo3SkcIszZ+aeCw+D5gJq8Qcesv3t6bdyN9oBCwocKloKmpyTW4KmHx4mGLnVOyED9QdmxvZlvbk20gYNPu3cfDmQAZPxOwfosYfTTbRZ4kXhdQ/z6AEUfCYLz3QGDwsGS+/A8IAootCfh2+gUdIqlMI2B0H+KfQfFTZ6c6AjgLS77Eoc3L33lnUUcz+RKrtb0Wer86AmKE9jfrsrj06j5NQcMvYzdu5OsvQStKuGd3z8g0Bc7CzY/RyASobYAQckPCTdK3mJukqP6A70G4Aymf52W1EZRvsTWXtHM20hUSndEZVrQt4vKPFFJ58jdNfXPm9I07wZnJfaZt8maxU6D5PCKgbhkufkcz+RKTtJUE8PvlPeD55/kxcPfa0++RM/EA2d9ByRnuY8cV4RU2NSo1dcpULQHlhoxYEf4ZggAZ/jyE31g1NV+N/9iQ3aZp5Fs8nCDOn9sBRDl0SBSyxl5jgy/RZnWnQfunwdWcgPRG3NEgKviZkNs8XErJyW8coJo4jh+pWZNH29pVw88jX2I00eBGENRMvsQsRQUB/H4qxmasB2BuFp0jg+dmrefCxk4iAjhLTO5x08JgTD9pWpibAHiRWSIRvyDgSRDA8SN8ip8IcMdfXX0MBJBvscZHGN5iiJ8IyL5wTDYISLUB6n28FtpftrkxC0d98JCy+9e5peR57FEk8SkI0ElN8iVGaVxNjdFcCF9isV0QwNvXqklvgAjIkUOAAQImGW82KlVaIOACOKmOBwMqATnKUwA8yBEgKWACshQdn3kcbYDsW6w5v7UYeQSaqU6lEUBunLUCbxOGfr90A5qtjiqAYuqsu0yVkqjj9YBeatLmGmRlC4NCF7m3hwbR/zmPtq8FtPZm0bpaXsg/88sWNcuJ/81QGFCW01DA8k+iCsD+HrtwOhonqIh9pZgCYpghfIXF1RcNegLu1rVeb0+p2pDkmTcmWenO4QI2BXJIXRYVdUWS5h1508aqWXZAX2sszNDUz1uvgvXzKZf40MwX6R0puCXvVeC009T0uSZGL5aimlrgsbq2NdPARqFSAgp4++juYqdmsawwesRrpbPNs1Y4NcpiycbuLqcLv7OzKqfe8d6XG0UWF4Djg77WGFIaULPU6kQJpm0efXTtqZf4GFD8vkx6RwquRdYsEeI9aRSyppw2JYwHATiQphZ4rK5tDVnV6kt8gbQZcVuxHQEmInBgMyAIuIZqd6Ujg00bPhPgb8/KaiqrbGrLbNkNApAvp/dI5OprjSGllx9oKiiQWV8QgMB/+OabH14ngIBTLfGB0IXXGQjQOVLk0WSvcJTg/b1HjRmT3NWVfDWDCcDxNLXAcqkrV0y3UGKUVv4KS06k4a5IvsFGg82W4pTxny4IQPzI+E1sngil5yZABvhCtr2msrKsrL2sJbNpSWwYCHjpvQx1u77WGAQ0lXVtLaiSWV8i4BCmYcYJBtby8ckugn1ozf5iBHD8TIDekSKPJns1S4SMRU3pxStXagkAnZpaYNGuHjElLcIqCVhY2DCnetjWrajuRUbI2L1ypc3s3Mzxn75ZElDnP3L4yJ3NUHoKAcoVDsKZVFa2tcMvP65lScvUOx5JwdpRe1ezozwmS30CRslaY5WArtTcLrmEBxMw7hmgkVYgen2tCDg1JCRVU5w9wPEzAXpHCnah1SwRMgQP3ITkZDseusBz8V6cNVVrgQUBFYGrdwRWSHO0woVz6ue8m3z2OaVLUZxs6541q9uwsuH4McJxk5l+506sI9P+kcNJKofILyjPWI7CXB0IaI/tmUEE7G8JuyPSkIFs0XEpTVuJAG2tsSAgI7iKs54gAN/9ZwjjBAHpQnnWObOF9BZKEvFLAvSOFAoBSOLheIIAFDFnX6olQK4mp86vm8v37i2HYwET0DBnznx8P7efc24ptmMEVNhsIe4sKxFw/sSLzIdkgYM+CxtKBLS0NM3vw11uMBNfgUhaNkuugLYaI0CNX0rpAy1dUWVx4v0g4NFHrxUj4DUQcKcgIDUqCgSYFQIGZPyt75r0jhRUIHF/ibpECBEA45mNl3KPPAgQq8npCDBmwARItKlRre2cBvpl0Ps4B2zrtmVPkPFJApBTbTbX1TWPBAH6goWhWI+wMhMFUC0tRwaXbAYBuP4Z6nS5rtaYf0scaKqqKsX7FQLoHnBtx2uCAGVPbvNKZwKMRhl+77smvSPFipmo9OD4BQFGIDk7N5mPgQssaoU1tcB6H18QUN9O8QNzh3LACcPUggQmgB4AdTv9rxl+1clLbnh3pq3bvHl+S8sgsGTzbBCwyuJu6zHX6muNJ9MSH+/jAPx+IgC3vh8OH0b8TADf1QFaLg1marcyAQNMQG8rCNA7UqygUieO/1U+Ht+YduzINQv4i1phtRYYBEzx8PFFbW77EqXN7N2rva/tDtEvqWH+uyU3QMDqrErG5vDNRMBe7ZoarfpaY7HEh/r+9fT4B15nEAGA6LYGmACcungMAia9IwXXInMWex4fz6wWTwgChhJyGd6EC7QqDTB5ojVNV5BAVN+od3AANJP0c8NUeTo7r3U8jqsuqaGrNZZaW33/ep37WR5B02amb03TO1LQXis2cIGEPF8mxw0vo4TSO6lRngycm8f6c3mL895Tz2D7IGRuUvQR8i6Tvr46qXoGgAINLomYCgz19qw/GeMMv2l8uPNxxQhZ3/ZmtCkwQ1pbLM+6cQvDKODuHLuccBrjlFL6KkDbR6f3Fc5YzwVaAi7X3WshTRmyE9NUbFxsSHwPwJewweXaHw2dW78SSBPS9Ko6T6l6BrLHqATOEXg6zDvbZseyvAEy6zu2MiElISTFnuh0kt1g1lSeKFXPx6Jvw4MpitYW5Rb9+bO5GytfIX3VeISPsFqwIXyJ9b7C/kgZKVnrzrIyFwhwNyPj7rTMlFecQrGvATrLmpYhY5SV5YLUTGNpSgURNVqpCgJycvCDTVr0gQCbPcAOF6ULpZMUChsnTAAdYoa/CATgt4Z6PhabgWtm+bUgQLPuDlas0J0/CEBgmtXx1HiEj7BnBsq80+slt0cwrW35yB14g7L/fU1N5SBgUd225prmZvzT8QIIWJyBq4/w9zaVHXiBCWgX8Z+tFEQs12QYckHADcgv5CN+SUDqJVi2WcQPAi5IwHjxi9pRVNQCFE2FoUIGtxKuIkxPeiUxalSq36jixYziFZ9tOwQoo+DDZyUBLpdRIQAXViN9RTx3bdnyKKUh7lrrE8J1pAUFUqh54bHEEBO6L92xXsaP3ekNdxIBzc11zXUdy5mANcZVxmJx+V9A3osIcLnjv8SeS1ng5WrbSOhS/ZIYdlsCHtDSIv/C8UUJiVEbEzc6isKZgLAVM+1m+xrCQWBNdN4jAci8+zqJEJTu3qp+PTRSuK4C+dHl/BoE0Fp2Bw4I6QsCEM2WlIwMUPDoQyCACyZm4IRYamsJoCzFS3dgvh1QZpxLvkCWt3lnc0dH3aLlNcsQcF7kquJVuPxNB16QBLTL+M+eYIew4CzwIqVSDwREqPETAUNxBTTl9xfMjSzescNZviM8fMCR4ggHAZhtUOJ/GQQsDh6VGuI7cxURsMZNgHL8IL5gD3f+8ENPA7JMd93Jnz8aNSaHxep44oLiB3IK4gcBomAibdy4UsSvJ+AOEKAvOJisLqbGAa/A+HfSt5/iv4wIcHH8IwKy3W12y/3l+TEBFL+6GpzNMwucixHEX38QMLBsERGAG4wHAaHOmc7a6Rw/E6B9vyRgeWddTc+yh4gAWcDR3y+lr/ARvj09/faHeLuQ3jNQyS1Xm5u28WfCbwI/t+oLDkiaNjMKmwUBaxo6cfk5fiKggeIfRj/OcEtpvhxZ4EWaR23hkJynn0b80qP0uTAmQOMHEO1E/JVU4VS0bFlReNjcL38W+Jjwc+/4jW/nTg/FuuF8fuvmHpSOQwC7zrBP8H03d7bcdwNPtbEZm0b6Ch9h3Ai2KFNxbqXGaX0vvXRFAB7L0REBYt21ukV0xfPqcfkXyfiR9Y12pQ3zTbCiBubQRcOx/+XXLJqjdWgAAc/h+iN+JmC2TY2fgBGgVHjtxlK54WGn8AkOsEepr1es4tEB5AEHo0Wef0ts7O0iQM5Sq6vjgQB1KpK2mw3ysy2M0JPa5k7K8roNKd4hmOZ0lnVqV6ML2+Vn99/ZXDdyotj/suWeDg1UEIG7AB4CjNlmXe1wvJPL3ABRkPFPPsG3riIo3xEQIGcZRZhEgPoUoP312y93t/HJ1eZOMifTFRwAJi2ODr7g8frdd9+/6jLs7y5AMHmC5B+yzO4SB5Jz0gwil0ACkHPCEv/kE6zvslOFsgCXVyAHitU5dFJabscO2iy211kmT4zXFUioApyxoiF4UrCKKVfrs7TwRvFwJt7Rdvqxj4cc26Skvrm0gl0hNrAWlu+9SpGm+uONB7T11nkEFvj4B2jV7T958uPT5k4+7zvluumPZxZQzdSefEVncRHlKRXvhLXMI8WPKHeeFfWpU66+2I2bxuuztDeopjkPA2+dIWt9xSIwsWFsniYW1SA5PFYWSLg/T18wofcN5l+D5JPlqidtkGTq3OXx+ZM7MLkB++7QDp7BMZ3sU5zqB6td5TUIeH29RyelT9QkjfEuCPDw+gIBWEYZi2lLPL5dn6X9vkK7uvqun0St78bg2KL89vZYIgB5e9EoCCFABCRkB4waFSgelWVy9ThVCut9gykfkJ7TiQVPmnqK1tyfZJrfE9ilfj4I2LFxdce+jn3+b/ASG3x+2Zj/svtJn+JRtByesj8IwK+kyFSLgoU+fl1pJcDoRrqTNvanpKutuUBxvXVXdwgYUAjQL2xMxcvrqhcutNqruc3tmFzSIraoKbCqpWg2ETBTNEqyEPLB9Ugd5et2f6tkSyMH4AQc0eK5H1NREWHj43OOL316J9DUfpAIWNJXUqDWOk/uwFjZV7gv1PLGp5IAX7vdzzfAHjJB+BRnj4Kxsbrw8hkPbXvo0ewQBe9CKnaljR5dMoj4B68dfcTgqbUt9fVL2g3Z5yhfKzYsMDaT+dghiyQgrQWPgVBrbkvuu9W9+bLWt6ioottNADu9BUIOEwF2q93X94QEapI4feLOOhs5/u6KCmuMQkBDw/T0+9e0d7b3HLw/2tQQtHB/ybw0WTsMAlZvWr3vDf+gjn1MAElfu1+C1c8vdQJtlxdMXXj5jIefKXxw/c8+Er1QSl1bYex73eC4/bcNjpMEpNTUpIiChvr65x21BssxBXRArK6N+M+/iKRv647OzoUNDXMKl7TX7tmDEeBYwKvLhYe3NLWAAG7MdHG36BgmIISywr7utrloJ8evpt0pfuSpkaN2kfSFUnQ1dC5Ys6aop70FvxVMFqyEg4qVNFkLfB4TsG/fGxQ/pu9J+dl9rX7D7NZRtF1XOwwCHq149MEv8UoABPAIaBwcd+2rg9cyAXyNm2XBQkPnlztiUqBZBIbwCGCLjzp/MxPgKK+GCij0r9/elrO9N56qLlnptBw4MBg+m5e8cFH8IECt5j7BGH7iininev1PT9osa4PxiypGSGsQ0NlQ1g4CsEY6pDKPgMZ5aUoW+rw3Vg+sw7y1nL4XBASEWBP8Un1puz5r7XXWaw8+mNJtVbDQZ8LWNEUJv/pqY3+k+v0X94DumApHtLpiob5NjdvcPr7utsJaavOSBIQTAZktLWeFzz6dZmpcFH8ZF0EtjaCeYVmQgIWTk4o1M4+VWVPNuuODgPbOpibcAfct20cEzJ+zv0TMoigEVK/m+CUByDonJEwYAWfJS2i7LmsNAh5c/60GV/gEY4EkjVsc33SgvbDEHdTXqlvxFFgQPUSF3pzse9z+GVWEgp9AgIj/0ieBcNPp90xfsMDF/cJXEgEbIsoA8l0mxA3qzdN4Ieh3VOmNLG9WT1N7T0/PvmUvEwFL+maUqtIZBLy9eqMIXxKAeO2pVmvCKN6ul9pev6z/9lktAd471BwtcF6e6vIEHkBAyu54TfzxenMyOFMzygWGTOXHP0HU+t56j3ITdF0IoJbX8/N88MiWE0sEb/1C0LfiPJwNrsCypvY3yHHC1FMwSiOVQQAeg7J8AzD9g7TGCPiOcYWCabqCB9XxVqAt3mPR1l9MOkD+aZ2Jz9CW+tL205OAQV43mBPQemmql776haClFI6Pjxbo1e1vMs31qDn4J2ntpZeKVgzkB6y+7tetEr2M7b0vM2B6JrerWdbLTxzBB+qzynqCshT4BfAMvX7JjPjElKypUxMdiZI3xV3CIrPEdDlOkyDmXj1yhMsfFOxou/XYx0mQ3sBUQH98fbxeeql4jq1h/vwGm1153bpDwaZO16ae3pdp4QG4aSvb3W1uFzWW9KHAAQUNgFrQYFINHAmmLMMW+sv4ovimN5htFVjj62HCzcDp8UYkiOm2K+6Cs3k1OpRVKlnhvPe43oHTvlSQ8X7UykPyNWFpkpDexe4CjgqrrbvCUIG/u7u7K1z6eEWBREKC6sBgt7UvXDjfliBf66XpyzcXw4UX5dlyu2JudrgR1lq37R+k6WwOXRY0cIpN9SF+NWuLdCDBrDD8xqZYUHpbwfe8dEJkfEa6IyMyIzIofDM1SIAAIRttstY3773pq5TjkTna+4unf6M5/lLZZrfaXcBRERGD6CNKbLaIwLLGTindu7oUKcxS0Wq1qw4MCWBgznxriHgNy1as2vQmgMLNuI4hgoDp0y9Us8Bk7tXYuB/3wMHGfhCgncpae5pYKFlK3XlHs7YYHzM+Zn5sPY3LWeZCEFCyEi1jW7bwyh5vtX6ptAF+DFSblMXYbObuzs5uKwhYtQrF2qNJqpOP8WlEsOpzvEFI7417Kzcvwn0QBEBDlJQsdux9zzXuSFl3EMULFMxQpDCEiJ/Nb1jACOswxYEhwTZ/DjHAr/F+Q4qM/+mON0EA1ieFR+aFQkoyAbj8TXPQlHek8dAHTMBTMn5MZgqhk91gtIv9s7Y8Rlj/li8oP8dvndkaE2M1SpdReIzqsr6FICCCYMzo6Ww6UiEIOHzg8OETh6+l2uM8nqVIxwDiLHJSFknv4tq9mzfvq2letjnMaQx1BZY4sVNZo6sisZDPZ96M0aPj4s5mKQxlZLdhPCOppUhFMICCgCXWEHptaG7GIBDxPx3XEX36zewRugBnL9vi6PL34RnY19j45utrP3n4ecKbEpdCGAHGhiVGaoDfjnsALr/lQf8P+L6UXm+hiSCcvkShrna4cKkwWcFPIXNPj9koCDgwsbFxeP+1JJ3xGvEXrzlYnIEs2ZqkY85KVHdnEQF1ze+AgIxIgyHCFpy7uqy5OAMEsI0vjZcROH8mAPEGQCj5ZZ/rlooh1iW33bbEGoXXMRUx3Rkcf08cLWV98kLJB+jyX4fLX0fT16d5ZpVp/UASxsaL68XqcTwCHnzrg5eZQb/qG1J4+Ct4K10bv4YAY4WrtrY+NHSFGAEnTvQfuZZylnjN8R8EA5QjjHZL6X3LQMDs4sgUw7JAIqAx0uEPAvj8S5EWl1KYpKEd9Xw0Ia9KRTDwwAMLU6PO9jZ0d3P4lOmJewME6KTkVa6SPmigvsbDb74mCFDjJwIGXU3AEQX70Umi+qQGpba/fLNqsksE97KUdsO0IUa47GCuqbbWbAmlgFHwcWI4jk6lt71uvwdRshOfpfyU6Ozra9rMXWaNByqaWppccUGQ0uL8x20dgaSxJIDiDaH4tVIxxLrwgQfmpIZ466WpXkp+4VooLj8qWCQBavyvjtvwjOfrL/yy/ahVW3yDfAKqM/j+z4Crr6VQ5yvMBAQCZloMGgFQVrgEXYX9OBoRoD8fECB/SvUAggBzs6UszlVcaGYCeK0KavbD/kzAqaUixsB1ty1J9e5Vbsp7qvYgw3GStCQp3NdY8vzrDBCgPvUIG3y6BLYKeAepbFrS/f27XlZshm9gRF/h6SsMAuRTgN7DBOArII7feKqCjHihH+QwYAL487qRpmMC9FL4r6Virgmo7WVAYP7Ue0ppif+1/4sTH7izrm5jsA0C+v2nELhEpJrhr1teTilEUCCOcvRortxpxYqkJOXopyrI0LflWdxrTwicJIUf2GCaq5WGSTC4nzZtndvyIgzgo2G7B2SNw1VXjQw9R/N+/epzQZM1OWZgnhszGJfq8MckTbGtbdIfXv82TD0xAzs00jDJiaxncIIsY1s3Nyy/PMgRCTsouR0ODVF+qpPt2P66ukOWBPX9l9cp6CkoaEk7z2io+YaADlfCVaNHqEBKqErGHa4QkD3l92xeZZWqAX+fku31b8M0vy8QpbCKFGYCVq97e906tvYhAiLb2spRmy+2gwBEfoni4njJ2MGYi5ZftDNhgnw/CLhIunuPXJ6WVjMZN9FOrRSeN8LdIgkwAUVFOQtynAvuKSrCC4Ph1z9+tRm6ugw2/MFg8Pq3QVnVsq+q3VlSImAdCEhel2tMTU5uRYNCZnkbehPk9pBsuwLy6LzQ1BlxzfKROy3yfweDAMR/jSwrWT7ZuDLBMCBvgj/9tHU8CKDoq6q8CRczAU6MAAyBBQvwgi/879lRUfRvw39BgCuwqa9MWeh4jkkSkJycm1yLv0BAZmI59WZI6asvUKC8PFWLi6zGyCtAgDR3H3PObQ+keUfFzAqJql5XnZzMbnCt80Yg/LRzq6puSsPEEAgQGOjJFH8wEH4dExx8MS7/f0JA55KyOftlv8WGsj3JYi2L5GRj7eNvm0FAW2Ybxf+LlL46qUq+vX2B15xPFilw9Zl43uV1irm9IMAeMmuW3Sj5hRIUBFS99VZV2lg3AZkopJQMSJ/jm25KMPxHBPS0NO0vk+eHE5wWLK29UpPffhwjQC999W1uuIeU1cD1REwlnT8ZBMjhf+W5D4AAc8isAnM1H5L79ogA79KqHxdV/aQSgPjBQLgkgG8D+Ps/ImAJrv+c990LKU9bLU82udZci2puvfRtL9Sux19/namzERUFO/3FdGBklljiYqRKAHyWv8Is4k8//cQNGCDAG6iqajmGphVJQHgPCBhQRkAqf/v/s3vAEjV+QQDHT0DG7vFWvdTEkFduGDxiBiOoXWLxGqVgQV3i4qZzHzCVggBzzziNFJ43huMvrfqpCk07IICR2TMwHwNAfQoA/9VToM+15HzNQspz8fgHkiUNraeQvu48MGDqp6fgYnfFQrS6xMWFY667rdTbaK45wBBGF5fNGKN1uU0GAYz5bh1wCS484T/TAUdNk7ULKSuFvK0SJ0lfHS677MzyFZrV1NQlLi6Aj9dYb3+T55IXM9CxogAcV/3vSvC/Bj1utPD6n/EnnaQbrf6BCX0AAAAASUVORK5CYII=)}.react-tel-input .ad{background-position:-16px 0}.react-tel-input .ae{background-position:-32px 0}.react-tel-input .af{background-position:-48px 0}.react-tel-input .ag{background-position:-64px 0}.react-tel-input .ai{background-position:-80px 0}.react-tel-input .al{background-position:-96px 0}.react-tel-input .am{background-position:-112px 0}.react-tel-input .ao{background-position:-128px 0}.react-tel-input .ar{background-position:-144px 0}.react-tel-input .as{background-position:-160px 0}.react-tel-input .at{background-position:-176px 0}.react-tel-input .au{background-position:-192px 0}.react-tel-input .aw{background-position:-208px 0}.react-tel-input .az{background-position:-224px 0}.react-tel-input .ba{background-position:-240px 0}.react-tel-input .bb{background-position:0 -11px}.react-tel-input .bd{background-position:-16px -11px}.react-tel-input .be{background-position:-32px -11px}.react-tel-input .bf{background-position:-48px -11px}.react-tel-input .bg{background-position:-64px -11px}.react-tel-input .bh{background-position:-80px -11px}.react-tel-input .bi{background-position:-96px -11px}.react-tel-input .bj{background-position:-112px -11px}.react-tel-input .bm{background-position:-128px -11px}.react-tel-input .bn{background-position:-144px -11px}.react-tel-input .bo{background-position:-160px -11px}.react-tel-input .br{background-position:-176px -11px}.react-tel-input .bs{background-position:-192px -11px}.react-tel-input .bt{background-position:-208px -11px}.react-tel-input .bw{background-position:-224px -11px}.react-tel-input .by{background-position:-240px -11px}.react-tel-input .bz{background-position:0 -22px}.react-tel-input .ca{background-position:-16px -22px}.react-tel-input .cd{background-position:-32px -22px}.react-tel-input .cf{background-position:-48px -22px}.react-tel-input .cg{background-position:-64px -22px}.react-tel-input .ch{background-position:-80px -22px}.react-tel-input .ci{background-position:-96px -22px}.react-tel-input .ck{background-position:-112px -22px}.react-tel-input .cl{background-position:-128px -22px}.react-tel-input .cm{background-position:-144px -22px}.react-tel-input .cn{background-position:-160px -22px}.react-tel-input .co{background-position:-176px -22px}.react-tel-input .cr{background-position:-192px -22px}.react-tel-input .cu{background-position:-208px -22px}.react-tel-input .cv{background-position:-224px -22px}.react-tel-input .cw{background-position:-240px -22px}.react-tel-input .cy{background-position:0 -33px}.react-tel-input .cz{background-position:-16px -33px}.react-tel-input .de{background-position:-32px -33px}.react-tel-input .dj{background-position:-48px -33px}.react-tel-input .dk{background-position:-64px -33px}.react-tel-input .dm{background-position:-80px -33px}.react-tel-input .do{background-position:-96px -33px}.react-tel-input .dz{background-position:-112px -33px}.react-tel-input .ec{background-position:-128px -33px}.react-tel-input .ee{background-position:-144px -33px}.react-tel-input .eg{background-position:-160px -33px}.react-tel-input .er{background-position:-176px -33px}.react-tel-input .es{background-position:-192px -33px}.react-tel-input .et{background-position:-208px -33px}.react-tel-input .fi{background-position:-224px -33px}.react-tel-input .fj{background-position:-240px -33px}.react-tel-input .fk{background-position:0 -44px}.react-tel-input .fm{background-position:-16px -44px}.react-tel-input .fo{background-position:-32px -44px}.react-tel-input .fr,.react-tel-input .bl,.react-tel-input .mf{background-position:-48px -44px}.react-tel-input .ga{background-position:-64px -44px}.react-tel-input .gb{background-position:-80px -44px}.react-tel-input .gd{background-position:-96px -44px}.react-tel-input .ge{background-position:-112px -44px}.react-tel-input .gf{background-position:-128px -44px}.react-tel-input .gh{background-position:-144px -44px}.react-tel-input .gi{background-position:-160px -44px}.react-tel-input .gl{background-position:-176px -44px}.react-tel-input .gm{background-position:-192px -44px}.react-tel-input .gn{background-position:-208px -44px}.react-tel-input .gp{background-position:-224px -44px}.react-tel-input .gq{background-position:-240px -44px}.react-tel-input .gr{background-position:0 -55px}.react-tel-input .gt{background-position:-16px -55px}.react-tel-input .gu{background-position:-32px -55px}.react-tel-input .gw{background-position:-48px -55px}.react-tel-input .gy{background-position:-64px -55px}.react-tel-input .hk{background-position:-80px -55px}.react-tel-input .hn{background-position:-96px -55px}.react-tel-input .hr{background-position:-112px -55px}.react-tel-input .ht{background-position:-128px -55px}.react-tel-input .hu{background-position:-144px -55px}.react-tel-input .id{background-position:-160px -55px}.react-tel-input .ie{background-position:-176px -55px}.react-tel-input .il{background-position:-192px -55px}.react-tel-input .in{background-position:-208px -55px}.react-tel-input .io{background-position:-224px -55px}.react-tel-input .iq{background-position:-240px -55px}.react-tel-input .ir{background-position:0 -66px}.react-tel-input .is{background-position:-16px -66px}.react-tel-input .it{background-position:-32px -66px}.react-tel-input .je{background-position:-144px -154px}.react-tel-input .jm{background-position:-48px -66px}.react-tel-input .jo{background-position:-64px -66px}.react-tel-input .jp{background-position:-80px -66px}.react-tel-input .ke{background-position:-96px -66px}.react-tel-input .kg{background-position:-112px -66px}.react-tel-input .kh{background-position:-128px -66px}.react-tel-input .ki{background-position:-144px -66px}.react-tel-input .xk{background-position:-128px -154px}.react-tel-input .km{background-position:-160px -66px}.react-tel-input .kn{background-position:-176px -66px}.react-tel-input .kp{background-position:-192px -66px}.react-tel-input .kr{background-position:-208px -66px}.react-tel-input .kw{background-position:-224px -66px}.react-tel-input .ky{background-position:-240px -66px}.react-tel-input .kz{background-position:0 -77px}.react-tel-input .la{background-position:-16px -77px}.react-tel-input .lb{background-position:-32px -77px}.react-tel-input .lc{background-position:-48px -77px}.react-tel-input .li{background-position:-64px -77px}.react-tel-input .lk{background-position:-80px -77px}.react-tel-input .lr{background-position:-96px -77px}.react-tel-input .ls{background-position:-112px -77px}.react-tel-input .lt{background-position:-128px -77px}.react-tel-input .lu{background-position:-144px -77px}.react-tel-input .lv{background-position:-160px -77px}.react-tel-input .ly{background-position:-176px -77px}.react-tel-input .ma{background-position:-192px -77px}.react-tel-input .mc{background-position:-208px -77px}.react-tel-input .md{background-position:-224px -77px}.react-tel-input .me{background-position:-112px -154px;height:12px}.react-tel-input .mg{background-position:0 -88px}.react-tel-input .mh{background-position:-16px -88px}.react-tel-input .mk{background-position:-32px -88px}.react-tel-input .ml{background-position:-48px -88px}.react-tel-input .mm{background-position:-64px -88px}.react-tel-input .mn{background-position:-80px -88px}.react-tel-input .mo{background-position:-96px -88px}.react-tel-input .mp{background-position:-112px -88px}.react-tel-input .mq{background-position:-128px -88px}.react-tel-input .mr{background-position:-144px -88px}.react-tel-input .ms{background-position:-160px -88px}.react-tel-input .mt{background-position:-176px -88px}.react-tel-input .mu{background-position:-192px -88px}.react-tel-input .mv{background-position:-208px -88px}.react-tel-input .mw{background-position:-224px -88px}.react-tel-input .mx{background-position:-240px -88px}.react-tel-input .my{background-position:0 -99px}.react-tel-input .mz{background-position:-16px -99px}.react-tel-input .na{background-position:-32px -99px}.react-tel-input .nc{background-position:-48px -99px}.react-tel-input .ne{background-position:-64px -99px}.react-tel-input .nf{background-position:-80px -99px}.react-tel-input .ng{background-position:-96px -99px}.react-tel-input .ni{background-position:-112px -99px}.react-tel-input .nl,.react-tel-input .bq{background-position:-128px -99px}.react-tel-input .no{background-position:-144px -99px}.react-tel-input .np{background-position:-160px -99px}.react-tel-input .nr{background-position:-176px -99px}.react-tel-input .nu{background-position:-192px -99px}.react-tel-input .nz{background-position:-208px -99px}.react-tel-input .om{background-position:-224px -99px}.react-tel-input .pa{background-position:-240px -99px}.react-tel-input .pe{background-position:0 -110px}.react-tel-input .pf{background-position:-16px -110px}.react-tel-input .pg{background-position:-32px -110px}.react-tel-input .ph{background-position:-48px -110px}.react-tel-input .pk{background-position:-64px -110px}.react-tel-input .pl{background-position:-80px -110px}.react-tel-input .pm{background-position:-96px -110px}.react-tel-input .pr{background-position:-112px -110px}.react-tel-input .ps{background-position:-128px -110px}.react-tel-input .pt{background-position:-144px -110px}.react-tel-input .pw{background-position:-160px -110px}.react-tel-input .py{background-position:-176px -110px}.react-tel-input .qa{background-position:-192px -110px}.react-tel-input .re{background-position:-208px -110px}.react-tel-input .ro{background-position:-224px -110px}.react-tel-input .rs{background-position:-240px -110px}.react-tel-input .ru{background-position:0 -121px}.react-tel-input .rw{background-position:-16px -121px}.react-tel-input .sa{background-position:-32px -121px}.react-tel-input .sb{background-position:-48px -121px}.react-tel-input .sc{background-position:-64px -121px}.react-tel-input .sd{background-position:-80px -121px}.react-tel-input .se{background-position:-96px -121px}.react-tel-input .sg{background-position:-112px -121px}.react-tel-input .sh{background-position:-128px -121px}.react-tel-input .si{background-position:-144px -121px}.react-tel-input .sk{background-position:-160px -121px}.react-tel-input .sl{background-position:-176px -121px}.react-tel-input .sm{background-position:-192px -121px}.react-tel-input .sn{background-position:-208px -121px}.react-tel-input .so{background-position:-224px -121px}.react-tel-input .sr{background-position:-240px -121px}.react-tel-input .ss{background-position:0 -132px}.react-tel-input .st{background-position:-16px -132px}.react-tel-input .sv{background-position:-32px -132px}.react-tel-input .sx{background-position:-48px -132px}.react-tel-input .sy{background-position:-64px -132px}.react-tel-input .sz{background-position:-80px -132px}.react-tel-input .tc{background-position:-96px -132px}.react-tel-input .td{background-position:-112px -132px}.react-tel-input .tg{background-position:-128px -132px}.react-tel-input .th{background-position:-144px -132px}.react-tel-input .tj{background-position:-160px -132px}.react-tel-input .tk{background-position:-176px -132px}.react-tel-input .tl{background-position:-192px -132px}.react-tel-input .tm{background-position:-208px -132px}.react-tel-input .tn{background-position:-224px -132px}.react-tel-input .to{background-position:-240px -132px}.react-tel-input .tr{background-position:0 -143px}.react-tel-input .tt{background-position:-16px -143px}.react-tel-input .tv{background-position:-32px -143px}.react-tel-input .tw{background-position:-48px -143px}.react-tel-input .tz{background-position:-64px -143px}.react-tel-input .ua{background-position:-80px -143px}.react-tel-input .ug{background-position:-96px -143px}.react-tel-input .us{background-position:-112px -143px}.react-tel-input .uy{background-position:-128px -143px}.react-tel-input .uz{background-position:-144px -143px}.react-tel-input .va{background-position:-160px -143px}.react-tel-input .vc{background-position:-176px -143px}.react-tel-input .ve{background-position:-192px -143px}.react-tel-input .vg{background-position:-208px -143px}.react-tel-input .vi{background-position:-224px -143px}.react-tel-input .vn{background-position:-240px -143px}.react-tel-input .vu{background-position:0 -154px}.react-tel-input .wf{background-position:-16px -154px}.react-tel-input .ws{background-position:-32px -154px}.react-tel-input .ye{background-position:-48px -154px}.react-tel-input .za{background-position:-64px -154px}.react-tel-input .zm{background-position:-80px -154px}.react-tel-input .zw{background-position:-96px -154px}.react-tel-input *{box-sizing:border-box;-moz-box-sizing:border-box}.react-tel-input .hide{display:none}.react-tel-input .v-hide{visibility:hidden}.react-tel-input .form-control{position:relative;font-size:14px;letter-spacing:.01rem;margin-top:0 !important;margin-bottom:0 !important;padding-left:48px;margin-left:0;background:#FFFFFF;border:1px solid #CACACA;border-radius:5px;line-height:25px;height:35px;width:300px;outline:none}.react-tel-input .form-control.invalid-number{border:1px solid #d79f9f;background-color:#FAF0F0;border-left-color:#cacaca}.react-tel-input .form-control.invalid-number:focus{border:1px solid #d79f9f;border-left-color:#cacaca;background-color:#FAF0F0}.react-tel-input .flag-dropdown{position:absolute;top:0;bottom:0;padding:0;background-color:#f5f5f5;border:1px solid #cacaca;border-radius:3px 0 0 3px}.react-tel-input .flag-dropdown:hover,.react-tel-input .flag-dropdown:focus{cursor:pointer}.react-tel-input .flag-dropdown.invalid-number{border-color:#d79f9f}.react-tel-input .flag-dropdown.open{z-index:2;background:#fff;border-radius:3px 0 0 0}.react-tel-input .flag-dropdown.open .selected-flag{background:#fff;border-radius:3px 0 0 0}.react-tel-input input[disabled]+.flag-dropdown:hover{cursor:default}.react-tel-input input[disabled]+.flag-dropdown:hover .selected-flag{background-color:transparent}.react-tel-input .selected-flag{outline:none;position:relative;width:38px;height:100%;padding:0 0 0 8px;border-radius:3px 0 0 3px}.react-tel-input .selected-flag:hover,.react-tel-input .selected-flag:focus{background-color:#fff}.react-tel-input .selected-flag .flag{position:absolute;top:50%;margin-top:-5px}.react-tel-input .selected-flag .arrow{position:relative;top:50%;margin-top:-2px;left:20px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.react-tel-input .selected-flag .arrow.up{border-top:none;border-bottom:4px solid #555}.react-tel-input .country-list{outline:none;z-index:1;list-style:none;position:absolute;padding:0;margin:10px 0 10px -1px;box-shadow:1px 2px 10px rgba(0,0,0,0.35);background-color:white;width:300px;max-height:200px;overflow-y:scroll;border-radius:0 0 3px 3px}.react-tel-input .country-list .flag{display:inline-block}.react-tel-input .country-list .divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.react-tel-input .country-list .country{padding:7px 9px}.react-tel-input .country-list .country .dial-code{color:#6b6b6b}.react-tel-input .country-list .country:hover{background-color:#f1f1f1}.react-tel-input .country-list .country.highlight{background-color:#f1f1f1}.react-tel-input .country-list .flag{margin-right:7px;margin-top:2px}.react-tel-input .country-list .country-name{margin-right:6px}.react-tel-input .country-list .search{position:sticky;top:0;background-color:#fff;padding:10px 0 6px 10px}.react-tel-input .country-list .search-emoji{font-size:15px}.react-tel-input .country-list .search-box{border:1px solid #cacaca;border-radius:3px;font-size:15px;line-height:15px;margin-left:6px;padding:3px 8px 5px;outline:none}.react-tel-input .country-list .no-entries-message{padding:7px 10px 11px;opacity:.7}.react-tel-input .invalid-number-message{position:absolute;z-index:1;font-size:13px;left:46px;top:-8px;background:#fff;padding:0 2px;color:#de0000}.react-tel-input .special-label{display:none;position:absolute;z-index:1;font-size:13px;left:46px;top:-8px;background:#fff;padding:0 2px;white-space:nowrap}