

/* node_modules/react-toastify/dist/ReactToastify.css */
: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;
  --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);
  --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: 0;
  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);
  z-index: 0;
  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);
}
.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);
  }
}

/* app/javascript/application.scss */
#ui-datepicker-div {
  display: none !important;
}
.role-32-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 20px;
  position: relative;
  left: 40%;
}
.create-recommendation-btn {
  background: none;
  border: none;
  cursor: pointer;
}
.role32-input {
  height: 25px !important;
}
.role-32-search input {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
#react-root input,
#react-root input:not([type]),
#react-root input[type=text],
#react-root input[type=password],
#react-root input[type=email],
#react-root input[type=url],
#react-root input[type=time],
#react-root input[type=date],
#react-root input[type=datetime],
#react-root input[type=datetime-local],
#react-root input[type=tel],
#react-root input[type=number],
#react-root input[type=search] {
  height: auto !important;
  min-height: 0;
}

/* app/javascript/components/ExampleComponent.scss */
.pagi {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
input {
  height: auto;
}
.css-1ig7bcg.Mui-selected,
.css-1ig7bcg,
.css-1ig7bcg {
  width: 50px !important;
}
.css-1orzuox-MuiTableCell-root,
.css-1dc80h3-MuiTableCell-root {
  padding: 2px 5px !important;
}
.css-1ex1afd-MuiTableCell-root {
  padding: 6px !important;
}
.head {
  display: flex;
  cursor: pointer;
  margin: 0px;
  padding: 9px 5px;
  color: red;
  justify-content: center;
  font-weight: 900 !important;
  text-shadow: 0.5px 0.5px black;
  height: 8vh;
}
.css-rorn0c-MuiTableContainer-root {
  width: 100%;
  overflow: hidden !important;
  box-sizing: border-box !important;
  border-radius: 8px !important;
}
.table-heading {
  color: white;
  border-right: 1px solid white !important;
  padding: 12px 16px !important;
}
.css-1ex1afd-MuiTableCell-root {
  padding-left: 16px !important;
  border-right: 1px solid rgb(219, 219, 219) !important;
  box-sizing: border-box !important;
}
.css-1bigob2 {
  line-height: 1.5rem !important;
}
#logic_descriptionHover:hover {
  color: #0073ff;
  text-decoration: underline;
}
.css-1ex1afd-MuiTableCell-root {
}
.css-q34dxg {
}
.TabContainer {
  display: flex;
  justify-content: space-evenly;
  padding: 4px;
  width: 100%;
  position: fixed;
  background-color: white;
  border-bottom: 1px solid lightgray;
}
.Tabs {
  background: white;
  color: rgb(75, 137, 168);
  font-size: 14px !important;
  border-radius: 3px;
  padding: 9px 43px;
  font-weight: bolder !important;
  cursor: pointer;
  width: 30%;
  text-align: center;
  border: 1.5px solid rgb(75, 137, 168);
}
.Tabs:hover {
  background: rgb(75, 137, 168);
  color: white;
  border: 1.5px solid rgb(75, 137, 168);
}
.SelectedTab {
  background: rgb(75, 137, 168);
  color: white;
  border: 1.5px solid rgb(75, 137, 168);
  font-size: 14px !important;
  border-radius: 3px;
  padding: 9px 43px;
  font-weight: bolder !important;
  cursor: pointer;
  width: 30%;
  text-align: center;
}
#rIndex {
  z-index: 0 !important;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 5px solid transparent;
  border-image-slice: 1;
  position: sticky;
  top: 0px;
  background-color: white;
  z-index: 9 !important;
  height: 10vh;
}
.header-left {
  display: flex;
  align-items: center;
}
.header-logo {
  width: auto;
  height: 50px;
}
.logo img {
  width: 150px;
}
.header-center {
  display: flex;
  align-items: center;
  justify-content: start;
  border-radius: 30px;
  background: #def2ff;
  border: 1px solid rgb(131, 131, 131);
  overflow: hidden;
  width: 376px;
  height: 42px;
}
.user-icon {
  padding-left: 2px;
  position: relative;
  display: inline-block;
  margin-right: 3px;
  width: 40px;
  height: 36px;
  cursor: pointer;
}
.header-search {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-bottom: 2.3px solid #ffffff;
  padding: 5px;
  margin-left: 5px;
  height: 45.91px;
  width: 100%;
  justify-content: space-between;
}
.header-search:hover {
  background-color: white;
  border-bottom: 2px solid rgb(158, 158, 158) !important;
}
#searchBox {
  font: 16px "Lato" !important;
  width: 23vw !important;
}
#searchBoxx {
  font: 17.5px "lao-regular" !important;
}
.header-search-input {
  border: none;
  position: relative;
  outline: none;
  background-color: transparent;
  width: 95%;
}
.header-right {
  display: flex;
  align-items: center;
}
.header-avatar {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.header-avatar-info {
  display: flex;
  flex-direction: column;
}
.header-avatar-name {
  font-size: 15px;
  font-weight: light;
  color: #4b89a8;
}
.header-avatar-role {
  font-size: 12px;
  font-weight: light;
  color: grey !important;
}
.header-avatar-details {
  font-size: 10px;
  font-weight: light;
}
.header-options {
  position: absolute;
  top: 71px;
  right: 8px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2) !important;
  width: 180px;
  height: auto;
}
.header-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  cursor: pointer;
  color: #4b89a8;
  height: 50px;
  font: 17px "lato-regular";
  border-bottom: 0.5px solid #e5e5e5;
}
.header-option:hover {
  background-color: rgba(0, 0, 0, 0.06);
}
.header-option i {
  margin-right: 10px;
}
.loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 4px solid #ffffff;
  border-top-color: #050505;
  border-radius: 50%;
  animation: loader 0.2s ease-in-out infinite;
}
@keyframes loader {
  to {
    transform: rotate(360deg);
  }
}
.floatingbullets {
  display: relative;
  padding-left: 45%;
}
.react_pagination-container {
  color: #333;
  display: flex;
  justify-content: center;
  margin-bottom: 2px;
  margin-top: -25px !important;
  width: 85%;
}
.back {
  color: #3385ff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0px !important;
  width: 38px;
  height: 30px;
  margin-right: 30px !important;
  background-color: transparent;
  cursor: pointer;
  font-weight: 900;
  font-size: larger;
}
.frwd {
  color: #3385ff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0px !important;
  width: 38px;
  height: 30px;
  margin-right: 5px;
  background-color: transparent;
  cursor: pointer;
  font-weight: 900;
  font-size: larger;
}
.pagination-page {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px !important;
  width: 38px;
  height: 30px;
  margin-right: 5px;
  background-color: transparent;
  cursor: pointer;
}
.pagination-page:hover {
  background-color: #f2f2f2;
}
.dashboard-navbar {
  display: flex;
  justify-content: space-evenly;
  height: 38px;
  line-height: 40px;
  width: 100%;
  position: fixed;
  top: 81spx;
  left: 0;
  margin-bottom: 20px;
  background-color: #fff;
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.dashboard-item {
  flex: 33%;
  padding: 9px 10px;
  text-align: center;
  font: 15px lato-semibold;
  color: #4b89a8;
  border-right: 1px solid #2b2828;
}
.dashboard-item:hover {
  background: #c8e5f3;
}
.MuiSelect-nativeInput {
  opacity: 10 !important;
  border: none;
  height: 33px !important;
  background: transparent;
  font-size: 16px;
}
.MuiSelect-select.MuiSelect-select {
  padding-right: 195px !important;
}
.css-q34dxg {
  padding: 6px !important;
}
#uIMG {
  height: 29px;
  width: 30px;
  top: 4px;
  left: 5px;
  background: #43b12a;
  border-radius: 50%;
  padding: 2px;
}
.MuiAutocomplete-hasPopupIcon.css-18nc3u2 .MuiOutlinedInput-root {
  background-color: white !important;
}
#questionHoverLEI:hover {
  background-color: rgba(142, 142, 142, 0.186) !important;
}
.css-jfdv4h-MuiStack-root > :not(style):not(style) {
  margin: 0px;
  width: 100%;
  background: white;
  box-shadow: none;
  height: 50px;
}
.react_body-container {
  padding: 0vw !important;
}
.inputFieldOverride {
  height: auto !important;
}
input.inputFieldOverride,
input.inputFieldOverride:not([type]),
input.inputFieldOverride[type=text],
input.inputFieldOverride[type=password],
input.inputFieldOverride[type=email],
input.inputFieldOverride[type=url],
input.inputFieldOverride[type=time],
input.inputFieldOverride[type=date],
input.inputFieldOverride[type=datetime],
input.inputFieldOverride[type=datetime-local],
input.inputFieldOverride[type=tel],
input.inputFieldOverride[type=number],
input.inputFieldOverride[type=search],
input.inputFieldOverride[type=text]:not(.browser-default) {
  height: auto !important;
  min-height: 0 !important;
}
input.inputFieldOverride:focus,
input.inputFieldOverride:not([type]):focus,
input.inputFieldOverride[type=text]:focus,
input.inputFieldOverride[type=password]:focus,
input.inputFieldOverride[type=email]:focus,
input.inputFieldOverride[type=url]:focus,
input.inputFieldOverride[type=time]:focus,
input.inputFieldOverride[type=date]:focus,
input.inputFieldOverride[type=datetime]:focus,
input.inputFieldOverride[type=datetime-local]:focus,
input.inputFieldOverride[type=tel]:focus,
input.inputFieldOverride[type=number]:focus,
input.inputFieldOverride[type=search]:focus,
input.inputFieldOverride[type=text]:not(.browser-default):focus {
  background-color: rgb(218, 231, 255);
  box-shadow: none !important;
}
input.checkboxOverride[type=checkbox]:not(:checked),
input.checkboxOverride[type=checkbox]:checked {
  position: relative;
  opacity: 1;
  left: 2px;
  pointer-events: all;
}
select.react_css {
  display: block;
}
input.react_css[type=text],
input.react_css[type=password],
input.react_css[type=email],
input.react_css[type=url],
input.react_css[type=time],
input.react_css[type=date],
input.react_css[type=number] {
  height: auto !important;
}
input.react_css[type=radio] {
  position: relative;
  opacity: 1;
  pointer-events: all !important;
}
.css-1tlcqt-MuiAutocomplete-root .MuiOutlinedInput-root .MuiAutocomplete-input {
  height: auto !important;
}
h1.react_css {
  margin: 0px;
}
ul.react_css {
  margin: 0px;
}
.color_white {
  color: white !important;
}
.digit-component {
  height: calc(100vh - 108px);
}

/* node_modules/reactflow/dist/style.css */
.react-flow {
  direction: ltr;
}
.react-flow__container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.react-flow__pane {
  z-index: 1;
  cursor: grab;
}
.react-flow__pane.selection {
  cursor: pointer;
}
.react-flow__pane.dragging {
  cursor: grabbing;
}
.react-flow__viewport {
  transform-origin: 0 0;
  z-index: 2;
  pointer-events: none;
}
.react-flow__renderer {
  z-index: 4;
}
.react-flow__selection {
  z-index: 6;
}
.react-flow__nodesselection-rect:focus,
.react-flow__nodesselection-rect:focus-visible {
  outline: none;
}
.react-flow .react-flow__edges {
  pointer-events: none;
  overflow: visible;
}
.react-flow__edge-path,
.react-flow__connection-path {
  stroke: #b1b1b7;
  stroke-width: 1;
  fill: none;
}
.react-flow__edge {
  pointer-events: visibleStroke;
  cursor: pointer;
}
.react-flow__edge.animated path {
  stroke-dasharray: 5;
  animation: dashdraw 0.5s linear infinite;
}
.react-flow__edge.animated path.react-flow__edge-interaction {
  stroke-dasharray: none;
  animation: none;
}
.react-flow__edge.inactive {
  pointer-events: none;
}
.react-flow__edge.selected,
.react-flow__edge:focus,
.react-flow__edge:focus-visible {
  outline: none;
}
.react-flow__edge.selected .react-flow__edge-path,
.react-flow__edge:focus .react-flow__edge-path,
.react-flow__edge:focus-visible .react-flow__edge-path {
  stroke: #555;
}
.react-flow__edge-textwrapper {
  pointer-events: all;
}
.react-flow__edge-textbg {
  fill: white;
}
.react-flow__edge .react-flow__edge-text {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.react-flow__connection {
  pointer-events: none;
}
.react-flow__connection .animated {
  stroke-dasharray: 5;
  animation: dashdraw 0.5s linear infinite;
}
.react-flow__connectionline {
  z-index: 1001;
}
.react-flow__nodes {
  pointer-events: none;
  transform-origin: 0 0;
}
.react-flow__node {
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: all;
  transform-origin: 0 0;
  box-sizing: border-box;
  cursor: grab;
}
.react-flow__node.dragging {
  cursor: grabbing;
}
.react-flow__nodesselection {
  z-index: 3;
  transform-origin: left top;
  pointer-events: none;
}
.react-flow__nodesselection-rect {
  position: absolute;
  pointer-events: all;
  cursor: grab;
}
.react-flow__handle {
  position: absolute;
  pointer-events: none;
  min-width: 5px;
  min-height: 5px;
  width: 6px;
  height: 6px;
  background: #1a192b;
  border: 1px solid white;
  border-radius: 100%;
}
.react-flow__handle.connectionindicator {
  pointer-events: all;
  cursor: crosshair;
}
.react-flow__handle-bottom {
  top: auto;
  left: 50%;
  bottom: -4px;
  transform: translate(-50%, 0);
}
.react-flow__handle-top {
  left: 50%;
  top: -4px;
  transform: translate(-50%, 0);
}
.react-flow__handle-left {
  top: 50%;
  left: -4px;
  transform: translate(0, -50%);
}
.react-flow__handle-right {
  right: -4px;
  top: 50%;
  transform: translate(0, -50%);
}
.react-flow__edgeupdater {
  cursor: move;
  pointer-events: all;
}
.react-flow__panel {
  position: absolute;
  z-index: 5;
  margin: 15px;
}
.react-flow__panel.top {
  top: 0;
}
.react-flow__panel.bottom {
  bottom: 0;
}
.react-flow__panel.left {
  left: 0;
}
.react-flow__panel.right {
  right: 0;
}
.react-flow__panel.center {
  left: 50%;
  transform: translateX(-50%);
}
.react-flow__attribution {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.5);
  padding: 2px 3px;
  margin: 0;
}
.react-flow__attribution a {
  text-decoration: none;
  color: #999;
}
@keyframes dashdraw {
  from {
    stroke-dashoffset: 10;
  }
}
.react-flow__edgelabel-renderer {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.react-flow__edge.updating .react-flow__edge-path {
  stroke: #777;
}
.react-flow__edge-text {
  font-size: 10px;
}
.react-flow__node.selectable:focus,
.react-flow__node.selectable:focus-visible {
  outline: none;
}
.react-flow__node-default,
.react-flow__node-input,
.react-flow__node-output,
.react-flow__node-group {
  padding: 10px;
  border-radius: 3px;
  width: 150px;
  font-size: 12px;
  color: #222;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  border-color: #1a192b;
  background-color: white;
}
.react-flow__node-default.selectable:hover,
.react-flow__node-input.selectable:hover,
.react-flow__node-output.selectable:hover,
.react-flow__node-group.selectable:hover {
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.08);
}
.react-flow__node-default.selectable.selected,
.react-flow__node-default.selectable:focus,
.react-flow__node-default.selectable:focus-visible,
.react-flow__node-input.selectable.selected,
.react-flow__node-input.selectable:focus,
.react-flow__node-input.selectable:focus-visible,
.react-flow__node-output.selectable.selected,
.react-flow__node-output.selectable:focus,
.react-flow__node-output.selectable:focus-visible,
.react-flow__node-group.selectable.selected,
.react-flow__node-group.selectable:focus,
.react-flow__node-group.selectable:focus-visible {
  box-shadow: 0 0 0 0.5px #1a192b;
}
.react-flow__node-group {
  background-color: rgba(240, 240, 240, 0.25);
}
.react-flow__nodesselection-rect,
.react-flow__selection {
  background: rgba(0, 89, 220, 0.08);
  border: 1px dotted rgba(0, 89, 220, 0.8);
}
.react-flow__nodesselection-rect:focus,
.react-flow__nodesselection-rect:focus-visible,
.react-flow__selection:focus,
.react-flow__selection:focus-visible {
  outline: none;
}
.react-flow__controls {
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08);
}
.react-flow__controls-button {
  border: none;
  background: #fefefe;
  border-bottom: 1px solid #eee;
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 5px;
}
.react-flow__controls-button:hover {
  background: #f4f4f4;
}
.react-flow__controls-button svg {
  width: 100%;
  max-width: 12px;
  max-height: 12px;
}
.react-flow__controls-button:disabled {
  pointer-events: none;
}
.react-flow__controls-button:disabled svg {
  fill-opacity: 0.4;
}
.react-flow__minimap {
  background-color: #fff;
}
.react-flow__minimap svg {
  display: block;
}
.react-flow__resize-control {
  position: absolute;
}
.react-flow__resize-control.left,
.react-flow__resize-control.right {
  cursor: ew-resize;
}
.react-flow__resize-control.top,
.react-flow__resize-control.bottom {
  cursor: ns-resize;
}
.react-flow__resize-control.top.left,
.react-flow__resize-control.bottom.right {
  cursor: nwse-resize;
}
.react-flow__resize-control.bottom.left,
.react-flow__resize-control.top.right {
  cursor: nesw-resize;
}
.react-flow__resize-control.handle {
  width: 4px;
  height: 4px;
  border: 1px solid #fff;
  border-radius: 1px;
  background-color: #3367d9;
  transform: translate(-50%, -50%);
}
.react-flow__resize-control.handle.left {
  left: 0;
  top: 50%;
}
.react-flow__resize-control.handle.right {
  left: 100%;
  top: 50%;
}
.react-flow__resize-control.handle.top {
  left: 50%;
  top: 0;
}
.react-flow__resize-control.handle.bottom {
  left: 50%;
  top: 100%;
}
.react-flow__resize-control.handle.top.left {
  left: 0;
}
.react-flow__resize-control.handle.bottom.left {
  left: 0;
}
.react-flow__resize-control.handle.top.right {
  left: 100%;
}
.react-flow__resize-control.handle.bottom.right {
  left: 100%;
}
.react-flow__resize-control.line {
  border-color: #3367d9;
  border-width: 0;
  border-style: solid;
}
.react-flow__resize-control.line.left,
.react-flow__resize-control.line.right {
  width: 1px;
  transform: translate(-50%, 0);
  top: 0;
  height: 100%;
}
.react-flow__resize-control.line.left {
  left: 0;
  border-left-width: 1px;
}
.react-flow__resize-control.line.right {
  left: 100%;
  border-right-width: 1px;
}
.react-flow__resize-control.line.top,
.react-flow__resize-control.line.bottom {
  height: 1px;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
}
.react-flow__resize-control.line.top {
  top: 0;
  border-top-width: 1px;
}
.react-flow__resize-control.line.bottom {
  border-bottom-width: 1px;
  top: 100%;
}

/* app/javascript/components/App.css */
.App {
  text-align: center;
  height: 100vh;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.lei-question-option.Mui-focused,
.lei-question-option:hover {
  background-color: #148cd2 !important;
  color: #fff !important;
}
.react-flow__node-default {
  padding: 0px !important;
}
.react-flow__edge-path {
  stroke-width: 1.8;
  fill: none;
  stroke: rgb(0, 168, 89);
}
.react-flow {
  pointer-events: none;
  overflow: hidden !important;
}
::-webkit-scrollbar {
  width: 9px;
  height: 12px;
  border: none;
}
::-webkit-scrollbar {
  cursor: pointer !important;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
  cursor: pointer !important;
}
::-webkit-scrollbar-thumb {
  background: #c9c9c9;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #929292;
}
.react-flow__edge-custom .selected {
  color: orange;
  background: red;
}
g {
  z-index: -1000 !important;
}
.savebtn {
  display: flex;
  cursor: pointer;
  margin: 15px 0px;
  padding: 4px 5px;
  background-color: #ffffff;
  border-radius: 25px;
  color: white;
  width: 100px;
  align-items: center;
  justify-content: center;
}
#head {
  display: flex;
  cursor: pointer;
  margin: 0px;
  padding: 9px 5px;
  background-color: #b3b3b3 !important;
  width: 100vw;
  justify-content: center;
  font-weight: 500 !important;
  text-shadow: 0.5px 0.5px black;
  position: fixed !important;
  height: 8vh;
  border: 2px solid lightgray !important;
  border-radius: 16px !important;
}
#header {
  height: 10vh;
  position: fixed !important;
  width: 100vw;
  z-index: 0;
}
.css-yyypgg-MuiButtonBase-root-MuiPaginationItem-root {
  width: 60px !important;
}
.react-flow__controls-button svg {
  width: 100%;
  max-width: 79px;
  max-height: 67px;
}
.react-flow__controls-button {
  width: 44px;
  height: 48px;
}
.react-flow__node {
  border-radius: 11px !important;
}
.download-btn {
  margin-right: 8px;
  padding: 5px 15px;
  background-color: #21dd21;
  border-radius: 5px;
  color: white;
  border: none;
}
.download-btn:hover {
  box-shadow: 1px 1px 10px 1px green;
}
.react_title {
  width: 8vw;
  height: 92vh;
}
.react_input {
  height: 7vh;
  width: 8vw;
  text-align: start;
  padding: 10px 7px;
  cursor: pointer;
  border-radius: 10px;
  margin: 9px 0.5px;
}
#head {
  text-align: center;
  font-weight: 500 !important;
  height: 8vh;
  width: 39vw;
  background-color: white !important;
  letter-spacing: 0.5px;
  font-size: 20px;
}
#head::-moz-placeholder {
  color: rgb(203, 203, 203);
}
#head::placeholder {
  color: rgb(203, 203, 203);
}
.head {
  text-align: center;
  display: flex;
  cursor: pointer;
  margin: 0px;
  padding: 9px 5px;
  color: red;
  width: 35vw;
  justify-content: center;
  font-weight: 900 !important;
  height: 8vh;
}
.react-flow__panel {
  position: absolute;
  z-index: 5;
  margin: 50px;
  width: auto;
  height: auto;
  margin-bottom: 35px !important;
}
.react-flow__panel.center {
  left: 45%;
}
.nodeClickBtnC {
  background-color: #FF852E !important;
  color: white;
  font-weight: 900 !important;
  padding: 5px 0px;
  text-align: center !important;
  border: none;
  height: 35px;
}
.nodeClickBtnC:hover {
  background-color: white;
  box-shadow: 0px 0px 5px 0px rgb(255, 255, 255);
  text-shadow: 0.5px 0.5px rgb(200, 200, 200);
}
.nodeClickBtnS {
  background-color: #00AD51 !important;
  color: white;
  font-weight: 900 !important;
  padding: 5px 0px;
  text-align: center !important;
  border: none;
  height: 35px;
}
.nodeClickBtnS:hover {
  background-color: white;
  box-shadow: 0px 0px 5px 0px rgb(255, 255, 255);
  text-shadow: 0.5px 0.5px rgb(200, 200, 200);
}
#actionbtncover {
  position: absolute;
  height: 74px;
  bottom: 0px;
}
.satyamm {
  margin-top: -5px !important;
  width: 50vw !important;
}
.App {
  text-align: center !important;
}
:root {
  --dynamic-primary-color: var(--cdp-primary-color, #1e558c);
}
* {
}
.a {
  font-size: 12pt;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.calDate::-webkit-calendar-picker-indicator {
  position: relative;
  top: 18px;
  transform: translateY(-50%);
  background-color: white;
  width: 34px;
  height: 34px;
}
.calDate {
  height: 30px !important;
}
.containe {
  z-index: 19;
  width: 100%;
  height: 100vh;
  color: red;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  left: 0px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.model {
  height: auto;
  width: 655px;
  color: green;
  background-color: rgb(255, 255, 255);
  border-radius: 9px;
}
.head_patch {
  border-radius: 9px;
  padding: 10px 0;
}
h1 {
  display: flex;
  color: white;
  justify-content: center;
  font-size: 25px;
}
.model_p {
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #000000;
  padding: 20px;
  font-size: 17px !important;
  font-family: "Lato", sans-serif !important;
  font-weight: normal !important;
}
.btn_section {
  display: flex;
  justify-content: space-between;
  padding: 10px 25px;
  background: #F0F8FF;
  border-radius: 9px;
}
.btn_section .btn {
  border: none;
  border-radius: 2px;
  font: 15px lato-regular;
  height: 36px;
  width: 72px;
  padding: 0 16px;
  text-transform: capitalize;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  color: white;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn_section .btnn {
  border: none;
  border-radius: 2px;
  font: 15px lato-regular !important;
  height: 36px;
  width: 72px;
  padding: 0 16px;
  text-transform: capitalize;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  color: white;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.formTableGlobal {
  margin: 6px 80px;
  box-shadow: 0px 0px 3.5px 0px black;
  border-radius: 3px;
}
.formHeaderGlobal {
  padding: 4px 5px !important;
  font-size: 15px !important;
  text-align: center !important;
  font-weight: 600 !important;
}
.formRowGlobal {
  padding: 4px 5px !important;
  font-size: 15px !important;
  border: 1px solid #ddd !important;
}
.subCellStyleGloabl {
  font-size: 13px !important;
  color: #333333 !important;
}
.tableIConHeight {
  height: 25px !important;
  cursor: pointer;
}
.globleBoxshoadow {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
}
.globalSecondaryButton {
  max-width: 120px;
  max-height: 36px;
  min-width: 100px;
  min-height: 30px;
  background-color: #969696 !important;
  color: white;
  border-radius: 5px;
  font-size: medium;
  padding: 3px 0px;
  text-align: center;
  border: none;
  cursor: pointer;
}
.globalSecondaryButton:hover {
  background-color: #787878 !important;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
}
.globalSecondaryButtonP {
  max-width: 120px;
  max-height: 36px;
  width: 100px;
  min-height: 30px;
  background-color: #969696;
  color: white;
  border-radius: 5px;
  font-size: medium;
  padding: 3px 0px;
  text-align: center;
  border: none;
  transition: filter 0.3s ease;
  cursor: pointer;
}
.globalSecondaryButtonP:hover {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
  filter: brightness(85%);
}
.gloablDisabledButton {
  background-color: #EEEEEE;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 5px solid transparent;
  border-image-slice: 1;
  position: sticky;
  top: 0px;
  background-color: white;
  z-index: 9 !important;
  height: 10vh;
}
.header-left {
  display: flex;
  align-items: center;
}
.header-logo {
  width: auto;
  height: 50px;
}
.logo img {
  width: 150px;
}
.header-center {
  display: flex;
  align-items: center;
  justify-content: start;
  border-radius: 30px;
  background: #def2ff;
  border: 1px solid rgb(131, 131, 131);
  overflow: hidden;
  width: 376px;
  height: 42px;
}
.user-icon {
  padding-left: 2px;
  position: relative;
  display: inline-block;
  margin-right: 3px;
  width: 40px;
  height: 36px;
  cursor: pointer;
}
.header-search {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-bottom: 2.3px solid #ffffff;
  padding: 5px;
  margin-left: 5px;
  height: 45.91px;
  width: 100%;
  justify-content: space-between;
}
.header-search:hover {
  background-color: white;
  border-bottom: 2px solid rgb(158, 158, 158) !important;
}
#searchBox {
  font: 16px "Lato" !important;
  width: 23vw !important;
}
#searchBoxx {
  font: 17.5px "lao-regular" !important;
}
.header-search-input {
  border: none;
  position: relative;
  outline: none;
  background-color: transparent;
  width: 95%;
}
.header-right {
  display: flex;
  align-items: center;
}
.header-avatar {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.header-avatar-info {
  display: flex;
  flex-direction: column;
}
.header-avatar-name {
  font-size: 15px;
  font-weight: light;
  color: #4b89a8;
}
.header-avatar-role {
  font-size: 12px;
  font-weight: light;
  color: grey !important;
}
.header-avatar-details {
  font-size: 10px;
  font-weight: light;
}
.header-options {
  position: absolute;
  top: 71px;
  right: 8px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2) !important;
  width: 180px;
  height: auto;
}
.header-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  cursor: pointer;
  color: #4b89a8;
  height: 50px;
  font: 17px "lato-regular";
  border-bottom: 0.5px solid #e5e5e5;
}
.header-option:hover {
  background-color: rgba(0, 0, 0, 0.06);
}
.header-option i {
  margin-right: 10px;
}
.loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 4px solid #ffffff;
  border-top-color: #050505;
  border-radius: 50%;
  animation: loader 0.2s ease-in-out infinite;
}
@keyframes loader {
  to {
    transform: rotate(360deg);
  }
}
.floatingbullets {
  display: relative;
  padding-left: 45%;
}
.react_pagination-container {
  color: #333;
  display: flex;
  justify-content: center;
  margin-bottom: 2px;
  margin-top: -25px !important;
  width: 85%;
}
.back {
  color: #3385ff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0px !important;
  width: 38px;
  height: 30px;
  margin-right: 30px !important;
  background-color: transparent;
  cursor: pointer;
  font-weight: 900;
  font-size: larger;
}
.frwd {
  color: #3385ff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0px !important;
  width: 38px;
  height: 30px;
  margin-right: 5px;
  background-color: transparent;
  cursor: pointer;
  font-weight: 900;
  font-size: larger;
}
.pagination-page {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px !important;
  width: 38px;
  height: 30px;
  margin-right: 5px;
  background-color: transparent;
  cursor: pointer;
}
.pagination-page:hover {
  background-color: #f2f2f2;
}
.active {
}
.active:hover {
}
.dashboard-navbar {
  display: flex;
  justify-content: space-evenly;
  height: 38px;
  line-height: 40px;
  width: 100%;
  position: fixed;
  top: 81spx;
  left: 0;
  margin-bottom: 20px;
  background-color: #fff;
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.dashboard-item {
  flex: 33%;
  padding: 9px 10px;
  text-align: center;
  font: 15px lato-semibold;
  color: #4b89a8;
  border-right: 1px solid #2b2828;
}
.dashboard-item:hover {
  background: #c8e5f3;
}
.MuiSelect-nativeInput {
  opacity: 10 !important;
  border: none;
  height: 33px !important;
  background: transparent;
  font-size: 16px;
}
.MuiSelect-select.MuiSelect-select {
  padding-right: 195px !important;
}
.css-q34dxg {
  padding: 6px !important;
}
#uIMG {
  height: 29px;
  width: 30px;
  top: 4px;
  left: 5px;
  background: #43b12a;
  border-radius: 50%;
  padding: 2px;
}
.MuiAutocomplete-hasPopupIcon.css-18nc3u2 .MuiOutlinedInput-root {
  background-color: white !important;
}
.lei-question-option:hover {
  background-color: rgba(142, 142, 142, 0.186) !important;
}

/* app/javascript/components/customNodes.css */
button.react_css {
  outline: none;
  border: none;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  width: 100px;
  border: 1px solid rgb(92, 92, 92);
  border-radius: 3px;
  cursor: pointer;
}
.customN {
  cursor: pointer !important;
}

/* app/javascript/components/POP.css */
.react_container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1009;
}
.mainContainer {
  position: absolute;
  top: -97px;
  left: -100px;
  width: 70vh;
  height: 60vh;
  z-index: 1010;
  background-color: white;
  box-sizing: border-box;
  overflow: scroll;
  background-color: rgb(229, 231, 217);
  padding: 15px;
  box-sizing: border-box;
  box-shadow: 3px 3px 14px 3px gray;
  overscroll-behavior: none !important;
  cursor: default;
}
.closeBtn {
  border: none;
  background-color: red;
  font-weight: bolder;
  color: white;
  width: auto;
  position: relative;
  top: 2px;
  right: 0px !important;
  box-sizing: border-box;
}
.closeBtn:hover {
  color: red;
  background-color: white;
  border: 1px solid red;
}
.react-flow__attribution {
  display: none;
}
.react-flow__resize-control.handle.bottom.right {
  left: 100%;
  z-index: 1;
}

/* app/javascript/components/NodeClickPop.css */
.css-sox5kk-MuiBackdrop-root {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
#labelofnode {
  color: #148cd2 !important;
  font-weight: 700 !important;
  width: 250px;
  background-color: #d7f8fd;
  padding: 5.56px;
  margin-right: 10px;
  padding-left: 19px;
  font-size: 16px;
  border-radius: 5px;
}
#labelofnodeTEST {
  color: #148cd2 !important;
  font-weight: 700 !important;
  background-color: #d7f8fd;
  padding: 5.56px;
  margin-right: 10px;
  padding-left: 19px;
  font-size: 14px;
  border-radius: 5px;
  min-height: 35.1px !important;
  width: 30vw;
  white-space: normal !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
#labelofnodeOfSendinfo {
  color: #148cd2 !important;
  font-weight: 700 !important;
  text-shadow: 0.1px 0.1px black;
  width: 250px;
  background-color: #d7f8fd00;
  padding: 5.56px;
  margin-right: 10px;
  padding-left: 19px;
  font-size: 16px;
  border-radius: 5px;
}
#e {
  color: #148cd2 !important;
  font-weight: 700 !important;
  width: 250px;
  background-color: #d7f8fd;
  font-weight: 1800 !important;
  width: 100%;
  padding: 5px;
  text-align: center;
  font-size: 16px;
  border-radius: 5px;
}
#logicSection {
  height: auto;
  font-size: 13px;
  border-radius: 5px;
  border: 1px solid lightgray;
  padding: 8px;
  margin: 10px !important;
}
#labelofnodeT {
  color: #148cd2 !important;
  font-weight: 800 !important;
  width: 55px;
  background-color: #ddd;
  padding: 5px;
  margin: 0px 46px;
  padding-left: 19px;
  font-size: 13px;
  border-radius: 5px;
}
#labelofnodeOC {
  color: #148cd2 !important;
  font-weight: 700 !important;
  width: 171px;
  background-color: #d7f8fd;
  padding: 5.5px;
  margin: 0px 11px;
  font-size: 16px;
  border-radius: 5px;
}
.nodeClickBtnC {
  font-size: medium;
  background-color: #FF852E !important;
  color: white;
  padding: 5px 0px;
  text-align: center !important;
  border: none;
  border-radius: 5px;
}
.nodeClickBtnC:hover {
  background-color: white;
  text-shadow: 0.5px 0.5px black;
}
.nodeClickBtnS {
  border-radius: 5px;
  font-size: medium;
  background-color: #00AD51 !important;
  color: white;
  padding: 5px 0px;
  text-align: center !important;
  border: none;
}
.nodeClickBtnS:hover {
  background-color: white;
  text-shadow: 0.5px 0.5px black;
}
.popClose {
  color: #FF852E;
  margin-right: 4px;
  cursor: pointer;
  text-shadow: 0.5px 0.5px white;
  background-color: white;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  text-align: center;
  font-size: 15px;
  padding-top: 4px;
  font-weight: 500 !important;
  margin-top: 4px;
}
.popClose:hover {
  color: #FF852E;
}
.MuiBox-root css-4c25v8 {
  overflow: hidden !important;
  border-radius: 15px;
}
#singh {
  max-width: 200px !important;
  color: green !important;
  overflow: hidden !important;
  text-wrap: wrap !important;
}
.multiSelectContainer {
  min-width: 80vh !important;
  max-width: 80vh !important;
  min-height: 30px;
  .multiselect-selected-option {
    color: red;
  }
  .multiselect-checkbox-option {
    z-index: 1 !important;
  }
}
.multiSelectContainer input {
  border: none;
  margin: 0px !important;
  margin-left: 10px !important;
}
.chip {
  padding: 2px 7px;
  background: #148cd2 !important;
  margin-right: 2px !important;
  margin-bottom: 2px !important;
  border-radius: 7px !important;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 19px;
  color: #fff;
}
.searchWrapper {
  border: 1px solid #ccc;
  border-radius: 5px !important;
  padding: 2px !important;
  min-height: 30px !important;
  position: relative;
}
.multiSelectContainer ul {
  display: block;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-height: 263px;
  overflow-y: auto;
}
.displayNone {
}
.optionListContainer {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  z-index: 1000 !important;
}
.multiSelectContainer li {
  padding: 5px 10px !important;
}
#singhh {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: -287px !important;
  left: -640px;
}
.multiSelectContainer.disabled {
  pointer-events: none;
  background-color: #f8f8f8;
  border: 1px solid #dddddd00;
  color: #999;
}
#popupH {
  font-size: 22px !important;
  padding: 3px 0px;
  font-weight: bolder !important;
}
.MuiAutocomplete-hasPopupIcon.css-1h51icj-MuiAutocomplete-root .MuiOutlinedInput-root,
.MuiAutocomplete-hasClearIcon.css-1h51icj-MuiAutocomplete-root .MuiOutlinedInput-root {
  padding: 0px !important;
}
.css-18nc3u2 .MuiOutlinedInput-root .MuiAutocomplete-input {
  padding: 8px 0px 0px 0px !important;
}
.css-1glvl0p-MuiButtonBase-root-MuiIconButton-root-MuiAutocomplete-clearIndicator {
  color: rgba(255, 0, 0, 0.54) !important;
  background: white !important;
}
.css-qzbt6i-MuiButtonBase-root-MuiIconButton-root-MuiAutocomplete-popupIndicator {
  display: none !important;
}
.css-14s5rfu-MuiFormLabel-root-MuiInputLabel-root.Mui-disabled {
  margin-top: -9px !important;
  font-size: 15px !important;
}
.css-14s5rfu-MuiFormLabel-root-MuiInputLabel-root {
  margin-top: -9px !important;
  font-size: 15px !important;
}
.css-wb57ya-MuiFormControl-root-MuiTextField-root {
  background-color: white !important;
}
.MuiAutocomplete-hasPopupIcon.css-1h51icj-MuiAutocomplete-root .MuiOutlinedInput-root {
}
.css-154xyx0-MuiInputBase-root-MuiOutlinedInput-root.Mui-disabled .MuiOutlinedInput-notchedOutline {
  border-color: rgba(0, 0, 0, 0.068) !important;
}
.MuiOutlinedInput-notchedOutline {
  border-color: rgba(0, 0, 0, 0.068) !important;
}
.css-18nc3u2 .MuiOutlinedInput-root {
  padding: 5px 9px !important;
}
select.react_css {
  display: flex;
  height: 31px;
}
input.react_css {
  height: 22px !important;
}
input.react_css[type=radio] {
  transform: scale(1.2);
  accent-color: #007bff;
  opacity: 1 !important;
}
h1.react_css {
  margin: 0px;
}

/* app/javascript/components/LogicQuery.css */
.css-8ewcdo-MuiInputBase-root-MuiOutlinedInput-root {
  padding: 7.5px 14px !important;
}

/* app/javascript/components/Sendinfo.css */
#cntr {
  font-size: 16px;
}
label[data-shrink=false] + .MuiInputBase-formControl .css-1x51dt5-MuiInputBase-input-MuiInput-input {
}
.css-1x51dt5-MuiInputBase-input-MuiInput-input {
  width: 100vh !important;
}

/* node_modules/quill/dist/quill.snow.css */
.ql-container {
  box-sizing: border-box;
  font-family:
    Helvetica,
    Arial,
    sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,
.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
  cursor: pointer;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  -o-tab-size: 4;
     tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
}
@supports (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor table {
  border-collapse: collapse;
}
.ql-editor td {
  border: 1px solid #000;
  padding: 2px 5px;
}
.ql-editor ol {
  padding-left: 1.5em;
}
.ql-editor li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.ql-editor li > .ql-ui:before {
  display: inline-block;
  margin-left: -1.5em;
  margin-right: .3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li[data-list=checked] > .ql-ui,
.ql-editor li[data-list=unchecked] > .ql-ui {
  color: #777;
}
.ql-editor li[data-list=bullet] > .ql-ui:before {
  content: "\2022";
}
.ql-editor li[data-list=checked] > .ql-ui:before {
  content: "\2611";
}
.ql-editor li[data-list=unchecked] > .ql-ui:before {
  content: "\2610";
}
@supports (counter-set:none) {
  .ql-editor li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered] {
  counter-increment: list-0;
}
.ql-editor li[data-list=ordered] > .ql-ui:before {
  content: counter(list-0, decimal) ". ";
}
.ql-editor li[data-list=ordered].ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) ". ";
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor li.ql-direction-rtl > .ql-ui:before {
  margin-left: .3em;
  margin-right: -1.5em;
  text-align: left;
}
.ql-editor table {
  table-layout: fixed;
  width: 100%;
}
.ql-editor table td {
  outline: none;
}
.ql-editor .ql-code-block-container {
  font-family: monospace;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-editor .ql-font-monospace {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-editor .ql-size-small {
  font-size: .75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor .ql-ui {
  position: absolute;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: "";
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer:coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: "";
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: .4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: .83em;
}
.ql-snow .ql-editor h6 {
  font-size: .67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor .ql-code-block-container {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor .ql-code-block-container {
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor .ql-code-block-container {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: "Normal";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: "Heading 1";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: "Heading 2";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: "Heading 3";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: "Heading 4";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: "Heading 5";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: "Heading 6";
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: .83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: .67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: "Sans Serif";
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: "Serif";
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: "Monospace";
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: "Normal";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: "Small";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: "Large";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: "Huge";
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-code-block-container {
  position: relative;
}
.ql-code-block-container .ql-ui {
  right: 5px;
  top: 5px;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family:
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: "Edit";
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: "Remove";
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0;
  content: "Save";
  padding-right: 0;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}

/* app/javascript/components/TemplateEditor.css */
.template-editor {
  width: 100%;
}
.template-editor-options {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.textarea-wrapper {
  position: relative;
  width: 100%;
}
.template-editor-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 200px !important;
  font-size: 14px;
  border: 1px solid #ccc;
  padding: 8px;
  resize: none;
  background: transparent;
  color: black;
  z-index: 2;
  line-height: 1.5;
}
.highlighted-preview {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 14px;
  padding: 8px;
  border: 1px solid #ccc;
  min-height: 200px;
  overflow-y: auto;
  color: transparent;
  z-index: 1;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
}
.highlight {
  background-color: rgba(186, 232, 255, 0.781);
  font-weight: bold;
  border-radius: 2.5px;
  cursor: pointer !important;
}
p.react_css {
  margin-bottom: 0px;
}
.ql-font-lora {
  font-family: "Lora", serif;
}
.ql-font-arial {
  font-family: "Arial", sans-serif;
}
.ql-font-times-new-roman {
  font-family: "Times New Roman", serif;
}
.ql-font-sans-serif {
  font-family: sans-serif;
}
.react_ql-editor {
  min-height: 200px;
  padding: 8px !important;
}
.variable-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  padding: 0px 2px;
  margin: 0 2px;
  font-weight: 500;
  line-height: 1.4;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: default;
  vertical-align: middle;
}
.variable-chip .remove-chip-btn {
  margin-left: 6px;
  margin-right: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  opacity: 0.7;
}
.variable-chip .remove-chip-btn:hover {
  opacity: 1;
}
.ql-snow .ql-tooltip {
  left: auto !important;
}

/* node_modules/quill-table-ui/dist/index.css */
.ql-table-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: #fff;
  border: 2px solid #e9ebf0;
  border-radius: 50%;
  margin: 3px 0 0 -22px;
  width: 18px;
  height: 18px;
  top: 0;
  left: 0;
  cursor: pointer;
  fill: #b9bec7;
}
.ql-table-toggle_hidden {
  display: none;
}
.ql-table-toggle:hover {
  border-color: #b9bec7;
}
.ql-table-menu {
  top: 0;
  left: 0;
  position: absolute;
  background: #fff;
  z-index: 2100;
  box-shadow:
    rgba(15, 15, 15, 0.05) 0 0 0 1px,
    rgba(15, 15, 15, 0.1) 0 3px 6px,
    rgba(15, 15, 15, 0.2) 0 9px 24px;
  border-radius: 4px;
  animation: fadeIn 0.05s ease-in forwards;
}
.ql-table-menu__item {
  display: flex;
  align-items: center;
  cursor: pointer;
  min-height: 32px;
  padding: 5px;
}
.ql-table-menu__item:hover {
  background-color: #fafbfc;
}
.ql-table-menu__item-icon {
  margin-right: 5px;
}
.ql-table-menu__item-text {
  font: 300 12px;
}

/* app/javascript/components/Headercomponent.css */
.global_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0 7px 15px;
  color: #fff;
  overflow: hidden;
}
.global_heading {
  margin: 2px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  flex: 1;
  text-align: center;
  justify-content: center;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.global_add_button {
  height: 25px;
  width: 25px;
  font-size: 25px;
  line-height: 25px;
  background: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 5px;
}
.global_close_button {
  cursor: pointer;
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  transition: background-color 0.2s ease;
  background-color: transparent;
  min-height: 50px;
  margin-top: -10px;
  margin-bottom: -10px;
}
.global_close_button:hover {
  background-color: #d62e2e !important;
}

/* app/javascript/components/Services.css */
.servicesOptions {
  margin: 9px 25px;
  background-color: white;
  cursor: pointer;
  width: 83%;
  border-radius: 9px;
}
.servicesOptionssT {
  margin: 9px 10px;
  background-color: white;
  padding-left: 6px;
  cursor: pointer;
  width: 16vw;
  border-radius: 4px;
  overflow: hidden;
}
#satyam:hover {
  background-color: #def2ff;
  border-radius: 4px;
}
.css-16se5dl-MuiLoadingButton-loadingIndicator {
  margin-right: 10px !important;
}

/* app/javascript/components/TestPoup.css */
.css-1ygcj2i-MuiTableCell-root {
  padding: 13px !important;
}
.react_table-heading {
  padding: 6px;
  font-weight: bolder !important;
}
#abc {
  border-right: 1px solid lightgray;
  padding: 6px 6px;
  line-height: 13px;
}
#cntrnr {
  border: 1px solid lightgray;
  box-sizing: border-box;
  border-radius: 4px !important;
  overflow: hidden;
}

/* app/javascript/FormMaster/FormMaster.css */
.tableContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: absolute;
  width: 100vw;
  background: #00000024;
  z-index: 111111111111111111111111111111111111 !important;
  top: 0;
  left: 0;
  position: fixed;
}
.tableContainer td {
  padding: 0px 9px !important;
  height: 8px !important;
}
#loader-form-master {
  z-index: 111111111111111111111111111111111111 !important;
}

/* app/javascript/FormMaster/FormFilter.css */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 0px 9px 9px 9px;
  border-radius: 3px;
  margin: 0px 80px 5px 80px;
  box-shadow: 0px 0px 3.5px 0px #000000b3;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
}
.filter-input,
.filter-select {
  padding: 8px 12px;
  border: 1px solid #ccc !important;
  border-radius: 6px;
  font-size: 14px;
  min-width: 140px;
  min-height: 38px;
}
.filter-selectt {
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  min-width: 150px;
}
.filter-select:focus {
  border: 1px solid #ccc !important;
}
.nodeClickBtnSS {
  font-size: medium;
  background-color: #00AD51;
  color: white;
  padding: 3px 0px;
  text-align: center;
  border: none;
  border-radius: 5px;
  margin-top: 9px;
}
.nodeClickBtnCC {
  font-size: medium;
  background-color: #FF852E;
  color: white;
  padding: 3px 0px;
  text-align: center;
  border: none;
  border-radius: 5px;
  margin-top: 9px;
}

/* app/javascript/FormMaster/FormComponents/CreateForm.css */
.modal-overlayy {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  top: 0;
  left: 0;
}
.react_modal-content {
  width: 86vw;
  height: 95vh;
  background: white;
  padding: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow-y: auto;
}
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.head_patchT {
  height: 7%;
}
.content-area {
  width: 100%;
  height: calc(95vh - 35px);
  display: flex;
}
.top-form-title {
  text-align: center;
  margin: 2px;
  background: transparent;
  border: none;
  font-size: x-large;
  color: white;
}

/* app/javascript/FormMaster/FormComponents/LeftSection.css */
.left-column {
  box-shadow: 5px 0 17px -5px rgba(0, 0, 0, 0.3);
  height: 100%;
  align-items: center;
  display: flex;
  flex-flow: column;
}
.searchBox {
  display: flex;
  padding: 4px;
  background: white;
  border: 1px solid lightgray;
  border-radius: 28px;
  width: 87%;
  margin: 7px 0px;
}
.searchBox input {
  border: none !important;
  outline: none !important;
  font-size: 13px;
  background: transparent;
  padding-left: 8px;
  width: 80%;
}
.searchBox input::-moz-placeholder {
  color: gray;
}
.searchBox input::placeholder {
  color: gray;
}
.questionTypes {
  width: 100%;
  display: flex;
  flex-flow: column;
  height: 100%;
  overflow-y: auto;
}
.questionTypeHeading {
  font-size: 16px;
  color: rgb(75, 137, 168);
  text-align: center;
}
.questionTypeGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 4px 10px;
  place-items: center;
}
.questionBox {
  height: 75px;
  width: 70px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 7px;
  font-size: 11px;
  border: 1px solid lightgray;
  cursor: pointer;
  word-break: break-word;
}
.noResults {
  color: #999;
  font-size: 14px;
  text-align: center;
  padding: 10px;
}

/* app/javascript/FormMaster/FormComponents/FormDetailModel.css */
.modal-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  top: 0;
  left: 0;
}
.modal-contentD {
  width: 63vw;
  height: 90vh;
  background: white;
  padding: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow-y: auto;
}
.modal-contentD1 {
  width: 70vw;
  height: 90vh;
  background: white;
  padding: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow-y: auto;
}
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.head_patchTD {
  padding: 3px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7vh;
}
.content-areaD {
  max-height: 76vh;
  overflow: auto;
  display: flex;
  flex-flow: column;
}
.content-areaD1 {
  width: 100%;
  height: 76vh;
  overflow: auto;
  display: flex;
  flex-flow: column;
}
.containerD {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  padding: 10px;
  height: -moz-fit-content;
  height: fit-content;
  height: 15%;
}
.header_footer {
  height: 73%;
  border: 1px solid gray;
  margin: 10px;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 40px;
}
.filedWith {
  width: 40%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 2.7px;
  border-bottom: 1px solid gray;
  margin: 0px 37px 10px 7.5px;
}
.bottomBar {
  height: 7vh;
  display: flex;
  justify-content: space-between;
  padding: 0px 15px;
  align-items: center;
}
.save {
}
.reset {
}
.save,
.reset {
  cursor: pointer;
  padding: 2px 9px;
  border-radius: 3px;
  color: white;
}
.sectionD {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sectionD h3 {
  margin: 5px;
  font-size: 12px;
  color: #4B89A8 !important;
}
.radio-group label,
.age-limit-group input {
  margin-right: 10px;
  font-size: 14px;
}
.age-limit-group {
  display: flex;
  align-items: center;
  gap: 5px;
}
.sectionD input[type=number] {
  border: none;
  width: 60px;
  padding: 5px;
  border-bottom: 1px solid #ddd !important;
  outline: none;
  border-radius: 5px;
}
.displaynone {
  display: none;
}

/* app/javascript/FormMaster/FormComponents/AddquestionModel.css */
.selectQ {
  width: 100%;
  border-bottom: 1px solid gray;
  border-radius: 6px;
}
.form-label {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  width: 200px;
}
.form-label span {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.addQuestionSelect {
  border-bottom: 1px solid gray !important;
  outline: none;
  border: none;
  padding: 10px 0px;
  font-size: 13px;
  width: 100%;
  border-radius: 4px;
}

/* app/javascript/PublicStyle/GroupTags.css */
.containeT {
  z-index: 19;
  width: 100%;
  height: 100vh;
  color: red;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  left: 0px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modelT {
  height: auto;
  width: 77%;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-radius: 9px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.head_patchT {
  padding: 3px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
h1 {
  font-size: 25px;
  font-weight: 300;
  text-align: center;
  color: white;
}
.model_p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #000000;
  padding: 20px;
  font-size: 17px !important;
  font-family: "Lato", sans-serif !important;
  font-weight: normal !important;
}
.btn_sectionT {
  display: flex;
  justify-content: space-between;
  padding: 5px 9px;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}
.btn_sectionT .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 6px;
  font: 15px lato-regular;
  height: 32px;
  width: 72px;
  padding: 0 16px;
  text-transform: capitalize;
  -webkit-tap-highlight-color: transparent;
  color: white;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn_sectionT .btnn {
  border: none;
  border-radius: 6px;
  font: 15px lato-regular !important;
  height: 32px;
  width: 72px;
  padding: 0 16px;
  text-transform: capitalize;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  color: white;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.formContanerT {
  max-height: 50vh;
  width: 100% !important;
  overflow-y: auto !important;
  padding: 5px 25px;
  padding-bottom: 100px;
}
.taglabel {
  display: flex;
  padding: 10px 5px;
  color: white;
  border-radius: 5px;
  margin: 8px;
  margin-top: 3px;
}
.righttags {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.popCloseTag {
  color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  height: 25px;
  width: 25px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
}
.css-1rv8zyt-MuiStack-root {
  width: 50vw !important;
}
.notification-box {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e0e0e0;
}
.css-2x8kvt-MuiPickersArrowSwitcher-root-MuiTimeClock-arrowSwitcher {
  right: -175px !important;
}
.css-147rllg {
}
.css-foq3gz,
.css-10dg1z8,
.css-1tzw3s5 {
  width: 100% !important;
}

/* app/javascript/FormMaster/FormComponents/QuestionsComponents/Question.css */
.question-container {
  position: relative;
  border-radius: 9px;
  padding: 10px;
  height: 12%;
  margin: 0px 10px 0px 10px;
  background-color: white;
  min-height: 50px;
}
.dquestion-container2 {
  position: relative;
  border-left: 1px solid lightgray;
  border-radius: 9px;
}
:root {
  --fetchedprimary-color: rgb(255, 0, 0);
}
.onHoverborder {
  border: 2px solid var(--fetchedprimary-color) !important;
  border-radius: 9px;
}
.focus-animate {
  animation: newQuestionHighlight 5s ease-out forwards;
}
@keyframes newQuestionHighlight {
  0% {
    border-color: var(--fetchedprimary-color);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--fetchedprimary-color) 70%, transparent);
  }
  40% {
    border-color: var(--fetchedprimary-color);
    box-shadow: 0 0 10px 5px color-mix(in srgb, var(--fetchedprimary-color) 40%, transparent);
  }
  100% {
    border-color: transparent;
    box-shadow: 0 0 0 0 transparent;
  }
}
.question-type {
  position: absolute;
  left: 8px;
  top: -2px;
  transform: translateY(-50%);
  background-color: white;
  border-radius: 3px;
  padding: 0 4px;
  color: #373737;
}
.question-containerr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 3px;
}
#zindex-label2 {
  z-index: 1000;
}
#bfocuss:focus {
  background-color: rgb(200, 232, 243);
  outline: none;
  color: black !important;
}
#bfocuss:hover {
  cursor: text;
}
#bfocus:focus {
  background-color: rgb(200, 232, 243);
  outline: none;
}
#bfocus1:focus {
  background-color: #4c64aa !important;
  outline: none;
}
#bfocus:hover {
  cursor: text;
}
.question-left {
  display: flex;
  gap: 15px;
}
#questionInput {
  padding: 8px;
  border: none;
  outline: none;
  border-bottom: 1px solid gray !important;
  border-radius: 4px;
  width: 200px;
}
.question-right {
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: end;
}
.question-right h4 {
  margin-bottom: 10px;
}
.checkbox-group {
  display: flex;
  gap: 8px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-flow: column-reverse;
}
.three-dots {
  height: 18px;
  cursor: pointer;
  margin-bottom: 4px;
}
#inputfield-number {
  padding: 8px;
  border: none;
  outline: none;
  border-bottom: 1px solid gray !important;
  border-radius: 4px;
  width: 200px;
}
#inputfield-number2 {
  padding: 8px;
  border: none;
  outline: none;
  border-bottom: 1px solid gray !important;
  border-radius: 4px;
  width: 200px;
}
.radio-group select {
  width: "200px";
  border-bottom: 1px solid gray !important;
  outline: "none";
  border: "none";
  padding: "5px";
  font-size: "14px";
  border-radius: "4px" !important;
}
.question-name-input:focus {
  background-color: #e6f3ff !important;
  outline: none;
}
.question-name-input {
  font-size: 14px;
}
.bulletPointClass {
  min-height: 50px;
  min-width: 30%;
  font-size: 13px;
  max-height: 60px;
  overflow-y: auto;
  margin-top: 2px;
}
.bulletPointClass::before {
  font-size: 18px;
  margin-right: 10px;
}
.jodit-toolbar-button__button {
  width: 100% !important;
}
.jodit-toolbar-button__text:not(:empty) {
  justify-content: center !important;
}
.jodit-wysiwyg ul:not(.browser-default) > li {
  list-style-type: circle !important;
  margin-left: 20px;
}
.textarea-react-css {
  border: none !important;
}

/* app/javascript/FormMaster/FormComponents/QuesValidationDetailModal.css */
.que-modal-prop {
  height: auto;
  padding-bottom: 5px;
  width: auto;
}
.que-modal-section {
  display: flow;
  align-items: center;
  gap: 10px;
}
.input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.radio-group label {
  margin-right: 10px;
  font-size: 12px;
}
.sectionD h3 {
  font-size: 12px;
}
.que-modal-contentD {
  width: 60vw;
  background: white;
  padding-bottom: 0px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
.que-containerD {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px;
  height: -moz-fit-content;
  height: fit-content;
  height: 15%;
}
.react_input-box {
  padding: 8px;
  border: none;
  outline: none;
}
.que-checkbox-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.que-filedWith {
  width: 27%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 2.7px;
  border-bottom: 1px solid gray;
  margin: 0px 10px 10px 7.5px;
}
.que-header_footer {
  justify-content: space-between;
  height: 73%;
  border: 1px solid gray;
  margin: 0px 10px 10px 10px;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px;
}
.que-checkbox-item input[type=checkbox] {
  cursor: pointer;
}
.que-textarea {
  position: relative;
  display: flex;
  width: 30%;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  padding: 5px;
  height: -moz-fit-content;
  height: fit-content;
  height: 15%;
}
.que-textarea-full {
  position: relative;
  display: flex;
  width: 100%;
  flex-basis: 100%;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding: 5px;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 5px;
}
.react_input-box::-moz-placeholder {
  font-size: 11px;
}
.react_input-box::placeholder {
  font-size: 11px;
}
.que-tab-bar {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
  margin: 0;
  padding: 0 10px;
  background: #f9f9f9;
}
.que-tab-item {
  padding: 8px 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  border: none;
  background: transparent;
  color: #555;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: background-color 0.2s, color 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.que-tab-item.active {
  color: white !important;
}

/* app/javascript/FormMaster/FormComponents/MultiSelect.css */
.res_role {
  color: white;
  font-size: 14px;
}

/* app/javascript/FormMaster/FormComponents/QuestionsComponents/ConfirmFormCloseModal.css */
.inputBorder {
}
.focus:focus {
  background-color: #e0f7fa !important;
  outline: none;
}
.placeholder-red::-moz-placeholder {
}
.placeholder-red::placeholder {
}
.contentviewC {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background: #00000080;
}
.contentviewM {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  background: white;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
  overflow-wrap: break-word;
  height: auto;
  font-size: 12px;
  overflow: hidden;
  border-radius: 33px;
  max-height: 95vh;
  min-height: 95vh;
  max-width: 84vw;
  min-width: 84vw;
}
#hiddenO {
  overflow: hidden !important;
}
#rightHeading {
  font-weight: 600 !important;
  font-size: 13px !important;
}
.rightContentPart {
  border: 0px solid rgba(50, 65, 10, 0.98);
  box-shadow: -1px -1px 4px black;
  border-radius: 7px !important;
  overflow: hidden;
}
.jodit-toolbar-button__button {
  width: 40px;
}
a.jodit-status-bar-link {
  display: none !important;
}
.jodit-ui-spacer {
  display: block !important;
}
.jodit-popup__content {
  min-width: 200px !important;
  max-width: 300px !important;
  padding: 3px !important;
  border-radius: 3px !important;
}
.jodit-ui-group__center {
  text-align: start !important;
}

/* app/javascript/FormMaster/FormComponents/FieldHelperText.css */
.field-helper-text {
  margin-top: 4px;
  padding: 6px 8px;
  background-color: #f8f9fa;
  border-left: 3px solid #6c757d;
  border-radius: 0 4px 4px 0;
  font-size: 11px;
  line-height: 1.4;
}
.field-helper-text--compact {
  padding: 4px 8px;
  background-color: transparent;
  border-left: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.field-helper-text__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.field-helper-text__title {
  font-weight: 600;
  color: #495057;
  font-size: 11px;
}
.field-helper-text__toggle {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  transition: background-color 0.2s ease;
}
.field-helper-text__toggle:hover {
  background-color: #e7f1ff;
}
.field-helper-text__description {
  color: #6c757d;
  margin: 0;
  font-size: 11px;
}
.field-helper-text--compact .field-helper-text__description {
  flex: 1;
  min-width: 200px;
}
.field-helper-text__example-toggle {
  color: #007bff;
  cursor: pointer;
  font-size: 10px;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.field-helper-text__example-toggle:hover {
  color: #0056b3;
}
.field-helper-text__details {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed #dee2e6;
}
.field-helper-text__example {
  background-color: #e9ecef;
  padding: 4px 8px;
  border-radius: 3px;
  margin-bottom: 4px;
  font-size: 10px;
  width: 100%;
}
.field-helper-text__example code {
  font-family:
    "Consolas",
    "Monaco",
    monospace;
  font-size: 10px;
  color: #495057;
}
.field-helper-text--compact .field-helper-text__example {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  margin-top: 4px;
}
.field-helper-text__tip {
  color: #28a745;
  margin: 4px 0 0 0;
  font-size: 10px;
}
.field-helper-text__tip strong {
  color: #1e7e34;
}
.simple-helper-text {
  display: block;
  color: #6c757d;
  font-size: 11px;
  margin-top: 2px;
  font-style: italic;
}
.field-helper-text--source {
  border-left-color: #ffc107;
  background-color: #fffbf0;
}
.field-helper-text--target {
  border-left-color: #28a745;
  background-color: #f0fff4;
}
.field-helper-text--result {
  border-left-color: #17a2b8;
  background-color: #f0f9ff;
}
.field-helper-text--custom {
  border-left-color: #dc3545;
  background-color: #fff5f5;
}

/* app/javascript/FormMaster/FormComponents/QuestionsComponents/QuestionLable1.css */
.section_header {
  padding: 5px 5px 5px 15px;
  color: white;
  line-height: 20px;
  height: 30px;
  background-color: blue;
  color: white;
}
.section_body {
  margin-bottom: 15px;
  padding: 0px 15px;
}
.rounded-bottom {
  border-radius: 6px !important;
  height: 50px;
  width: 100%;
}
.rounded-top {
  border-top-left-radius: 7px !important;
  border-top-right-radius: 7px !important;
}
.three-dots-label1 {
  height: 21px;
  cursor: pointer;
  margin-bottom: 6px;
  margin-right: 10px;
  margin-top: -5px;
}
.question-row-lable1 {
  display: flex;
  flex-direction: column;
  border: 1px solid #fdfcfc;
  border-radius: 10px;
  overflow: hidden;
}
.dquestion-row-lable1 {
  display: flex;
  flex-direction: column;
  border: 0px solid #fdfcfc;
  border-radius: 10px;
  overflow: hidden;
}
.question-label {
  background-color: #41558E;
  color: white !important;
  padding: 5px !important;
  font-size: 14px !important;
  font-weight: bold !important;
  margin-bottom: 1px;
}
.question-name {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
}
.question-name::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.question-name::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.question-select {
  padding: 6px;
  background: #fcfcfa;
  border-bottom: 2px solid #cfcaca;
  border-radius: 0 0 9px;
}
.dquestion-select {
  padding: 6px;
  background: #fcfcfa;
  border-bottom: 0px solid #cfcaca;
  border-radius: 0 0 9px;
}
#inputfield-string-1 {
  border-bottom: "1px solid gray" !important;
  outline: "none" !important;
  border: "none" !important;
  padding: "8px" !important;
  width: "100%" !important;
}
.select-field {
  border-bottom: "1px solid gray" !important;
  outline: "none" !important;
  border: "none" !important;
  padding: "8px" !important;
  width: "100%" !important;
}

/* app/javascript/FormMaster/FormComponents/QuestionsComponents/DeleteConfirmationModal.css */
.dlt-modal-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  top: 0;
  left: 0;
}
.dlt-modal-contentD {
  width: 47vw;
  height: 65vh;
  background: white;
  padding: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow-y: auto;
  text-align: center;
}
.dlt-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.dlt-head_patchTD {
  padding: 3px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  background:
    linear-gradient(
      to left,
      #148dcc 0%,
      #00ad51 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10%;
}
.dlt-content-areaD {
  width: 100%;
  height: 90%;
  display: flex;
  flex-flow: column;
}
.dlt-head_patch {
  padding: 5px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10%;
}
.dlt-containerD {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  padding: 10px;
  height: -moz-fit-content;
  height: fit-content;
  height: 15%;
}
.header_footer {
  height: 73%;
  border: 1px solid gray;
  margin: 10px;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 40px;
}
.filedWith {
  width: 40%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 2.7px;
  border-bottom: 1px solid gray;
  margin: 0px 37px 10px 7.5px;
}
.filedWithCourse {
  width: 25%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 2.7px;
  border-bottom: 1px solid gray;
  margin: 0px 37px 10px 7.5px;
}
.dlt-bottomBar {
  height: 12%;
  display: flex;
  justify-content: space-between;
  padding: 0px 15px;
  align-items: center;
}
.save {
}
.reset {
}
.save,
.reset {
  cursor: pointer;
  padding: 2px 9px;
  border-radius: 3px;
  color: white;
}

/* app/javascript/FormMaster/FormComponents/QuestionsComponents/QuestionLable0.css */
.row {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.question-container-lable0 {
  position: relative;
  padding: 1px;
  margin: 0px 10px 0px 10px;
  background-color: white;
  border-radius: 8px;
}
.square-box1None {
  border: none !important;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 100% !important;
  padding: 0px !important;
  border-radius: 9px !important;
  margin-top: 0px !important;
  box-sizing: border-box;
  padding: 2px 2px 10px 2px;
}
.square-box1None:hover {
  border: 2px solid red !important;
}
.square-box1 {
  display: flex;
  margin-right: auto;
  width: 100% !important;
  padding: 0px !important;
  border-radius: 9px !important;
  margin-left: 1px;
  margin-top: 0px !important;
  box-sizing: border-box;
  padding: 2px 2px 10px 2px;
  border: 1px solid rgb(207, 207, 207);
}
.label-box1 {
  position: relative;
  height: auto;
  background-color: #edf0f1ee;
  text-align: left;
  width: 33%;
  box-sizing: border-box;
  padding: 2px 0 0px 3px;
  border-radius: 8px 0px 0px 8px;
}
.no_radius {
  position: relative;
  height: auto;
  background-color: #edf0f1ee;
  text-align: left;
  width: 33%;
  box-sizing: border-box;
  padding: 2px 0 0px 3px;
  border-radius: none;
}
.que-input-area {
  width: 68%;
  height: auto;
  box-sizing: border-box;
  padding: 5px 0 5px 10px;
  text-transform: capitalize;
}
.question-name {
  width: 100%;
  border: none;
  outline: none;
  padding: 0px 10px;
  box-sizing: border-box;
  color: black;
  font-size: 15px;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.question-name0 {
  width: 100%;
  border: none;
  outline: none;
  padding: 0px 10px;
  box-sizing: border-box;
  color: black;
  font-size: 16px;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* app/javascript/FormMaster/FormComponents/RightSection.css */
.right-column {
  flex: 1;
  background-color: #ffffff00;
  padding: 10px;
  padding-bottom: 0px;
  height: 93%;
  word-break: break-all;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.header-section {
  max-height: 67px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 5px;
}
.left-inputs {
  display: inline-flex;
  align-items: flex-start;
}
.left-inputs > div {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin: 5px;
}
.react_options {
  padding: 5px;
}
.left-inputs input,
.left-inputs select {
  padding: 5px;
  padding-right: 0px;
  font-size: 14px !important;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  border-bottom: 1px solid white;
  width: 90%;
}
label.react_css {
  color: #4b89a8;
  font-size: 12px;
}
.react_options {
  color: black;
}
.form-top-bar {
  color: white;
  font-size: 12px !important;
  padding: 0 8px;
}
.is-active-container {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  margin-right: 10px;
}
.is-active-container label {
  color: white !important;
  font-size: 12px;
}
.is-active-container input[type=checkbox] {
  margin: 0;
  cursor: pointer;
}
.right-icon {
  display: flex;
  justify-content: space-between;
}
.right-icon img {
  height: 20px;
  cursor: pointer;
}
.content-section {
  height: calc(100% - 60px);
  overflow-y: auto;
  overflow-x: hidden;
}
.form-group-section {
  padding-top: 0px !important;
  padding: 15px;
  margin-bottom: 20px;
}
.group-name-input {
  display: none;
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
  font-size: 16px;
}
.resp-role-posi {
  width: 35%;
  position: relative;
  top: -27px;
}
.questions-container {
  padding: 10px;
}
.question-block {
}
.group_questnrs {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 6px;
}
.derived {
  border: 3px solid purple;
  background-color: white;
  margin-bottom: 10px;
}
.derivedContainer {
  background-color: #64ffad8f;
  padding: 15px;
}
.question-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.question-input {
  width: 100%;
  padding: 5px;
  margin: 5px 0;
}
.derived-questions {
  border: 1px solid green;
  border-radius: 6px;
  padding: 10px;
  margin-top: 10px;
}
.derived-input {
  width: 100%;
  padding: 5px;
  margin: 5px 0;
}
.form-footer {
  height: 7%;
  display: flex;
  justify-content: space-between;
  padding: 0px 15px;
  align-items: center;
  background-color: #EAEAEA;
}
.top5 {
  position: relative;
  top: 5px;
}
#draggablelistzindex div div {
  z-index: 0 !important;
  margin-right: 0px;
  margin-left: 0px;
}
#draggablelistzindex {
  padding-top: 0px;
  padding-bottom: 0px;
  padding: 0px 5px 5px 5px;
}
.disabledclass {
  background-color: gray !important;
  cursor: not-allowed;
  opacity: 0.6;
}

/* app/javascript/FormMaster/FormComponents/DynamicParameterForm.css */
.parameter-container {
  padding: 5px 20px;
  max-width: inherit;
  position: relative;
}
.parameter-row {
  display: flex;
  align-items: center;
  padding: 7px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.parameter-select {
  outline: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
  font-size: 14px;
  margin-right: 10px;
  min-width: 180px;
}
.parameter-input {
  width: 95%;
  padding: 6px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.parameter-input-margin {
  margin-left: 8px;
}
.parameter-input-wrapper {
  flex-grow: 1;
  display: flex;
}
.parameter-field-group {
  display: flex;
  gap: 40px;
}
.parameter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
}
.parameter-textarea {
  width: 80%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  margin-right: 10px;
}
.parameter-add-button {
  padding: 5px 10px;
  margin-bottom: 20px;
  font-size: 14px;
  background-color: #00AD51;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.parameter-delete-button {
  margin-left: 10px;
  padding: 6px 10px;
  font-size: 12px;
  background-color: #f44336;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.parameter-save-button {
  margin-left: 10px;
  padding: 6px 10px;
  font-size: 12px;
  background-color: #00AD51;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: auto;
}
.parameter-edit-button {
  margin-left: 10px;
  padding: 6px 10px;
  font-size: 12px;
  background-color: #ff9800;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.parameter-header {
  display: flex;
  color: white;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 14px;
}
.parameter-select-label {
  flex: 1;
  color: inherit;
  padding-right: 10px;
}
.parameter-input-wrapper-label {
  flex: 2;
  color: inherit;
}
.parameter-icon-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 6px;
  width: auto;
}
.parameter-icon {
  width: 30px;
  height: 30px;
}
.parameter-field-wrapper {
  width: 100%;
}
.parameter-label {
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 4px;
  display: block;
}

/* app/javascript/PatientJourney/PatientJourney.css */
#ifoucs:focus {
  background-color: rgba(173, 216, 230, 0.374);
  border-radius: 3px;
}
#table_header {
  background-color: rgb(75, 137, 168);
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 30px;
  padding: 8px;
  font-weight: 600 !important;
  margin-bottom: 0px;
}
.closeButtonN {
  color: red;
  background: white;
  padding-bottom: 3px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.towTableBttomRadius {
  display: flex;
  border-bottom-left-radius: 16px !important;
  overflow: hidden;
  border: 1px solid #676767;
  border-bottom-right-radius: 16px;
}
th {
  font-weight: normal !important;
}
.templatestatusdropdwon {
  background: transparent;
  outline: none;
  font-size: 16px;
  padding: 4px 2px;
  color: white;
  border-radius: 4px;
}
.templatestatusdropdwon option {
  background: white;
  color: rgb(70, 70, 70);
}
.templatestatusdropdwon option:hover {
  background: rgb(0, 75, 113);
  color: white;
}
.template-list {
  display: flex;
}
.template-item {
  padding: 12px;
  width: 180px;
  border-radius: 8px;
  background-color: #fff;
}
.template-item-tdStatus {
  padding: 8px 9px !important;
  border-radius: 5px;
  border: 1px solid lightgray !important;
  background-color: #ffffff;
  color: rgb(0, 75, 113);
  cursor: pointer;
  transition: all 0.3s ease;
}
.template-item-tdStatus:hover {
  color: #fff !important;
}
.template-item-td {
  padding: 5px 9px !important;
  border-radius: 5px;
  border: 1px solid lightgray !important;
  background-color: #ffffff;
  color: gray !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.template-item-tdF {
  padding: 5px 9px !important;
  border-radius: 5px;
  border: 1px solid lightgray !important;
  background-color: #ffffff;
  color: gray;
  cursor: pointer;
  transition: all 0.3s ease;
}
.template-item-tdSchedule {
  padding: 5px 9px !important;
  border-radius: 5px;
  border: 1px solid lightgray !important;
  background-color: #ffffff;
  color: #004b71 !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.template-item-tdAdd {
  padding: 6.4px 9px !important;
  border-radius: 5px;
  border: 1px solid lightgray !important;
  background-color: #ffffff;
  color: gray !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.template-item-th {
  border-radius: 5px;
  border: none !important;
}
.css-1fdsijx-ValueContainer {
  padding: 0px 0px 0px 2px !important;
}
.css-p4kzcr-Input,
.css-1yt0726,
.css-hlgwow {
  margin: 0px !important;
  padding: 1px !important;
}
@keyframes vibrateGlow {
  0% {
    transform: translateX(0);
    box-shadow: 0 0 0px rgba(0, 123, 255, 0.5);
    height: 32px;
  }
  25% {
    transform: translateX(-1px);
    height: 33px;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.6);
  }
  50% {
    transform: translateX(1px);
    height: 35px;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.7);
  }
  75% {
    transform: translateX(-1px);
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.6);
    height: 33px;
  }
  100% {
    transform: translateX(0);
    box-shadow: 0 0 0px rgba(0, 123, 255, 0.5);
    height: 30px;
  }
}
.vibrateIcon {
  animation: vibrateGlow 5s ease-in-out infinite;
  border-radius: 50%;
  transition: box-shadow 0.3s ease-in-out;
}
.css-1550uzu-placeholder,
.css-upnz6e-placeholder {
}
.my-select__placeholder {
  color: lightgray !important;
}

/* app/javascript/PatientJourney/JourneyComponents/TemplateEditor.css */
.template-editor {
  width: 100%;
}
.template-editor-options {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.textarea-wrapper {
  position: relative;
  width: 100%;
}
.template-editor-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 200px !important;
  font-size: 14px;
  border: 1px solid #ccc;
  padding: 8px;
  resize: none;
  background: transparent;
  color: black;
  z-index: 2;
  line-height: 1.5;
}
.highlighted-preview {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 14px;
  padding: 8px;
  border: 1px solid #ccc;
  min-height: 200px;
  overflow-y: auto;
  color: transparent;
  z-index: 1;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
}
.highlight {
  background-color: rgba(186, 232, 255, 0.781);
  font-weight: bold;
  border-radius: 2.5px;
  cursor: pointer !important;
}
p.react_css {
  margin-bottom: 0px;
}
.ql-font-lora {
  font-family: "Lora", serif;
}
.ql-font-arial {
  font-family: "Arial", sans-serif;
}
.ql-font-times-new-roman {
  font-family: "Times New Roman", serif;
}
.ql-font-sans-serif {
  font-family: sans-serif;
}
.react_ql-editor {
  min-height: 200px;
  padding: 8px !important;
}
.variable-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  padding: 0px 2px;
  margin: 0 2px;
  font-weight: 500;
  line-height: 1.4;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: default;
  vertical-align: middle;
}
.variable-chip .remove-chip-btn {
  margin-left: 6px;
  margin-right: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  opacity: 0.7;
}
.variable-chip .remove-chip-btn:hover {
  opacity: 1;
}

/* app/javascript/PatientJourney/JourneyComponents/SubjectInput.css */
.template-editorC {
  width: 100%;
}
.template-editor-optionsC {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.textarea-wrapperC {
  position: relative;
  width: 100%;
}
.template-editor-inputC {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 14px;
  border: none !important;
  padding: 8px;
  resize: none;
  background: transparent;
  color: black;
  z-index: 2;
  line-height: 1.5;
}
.highlighted-previewC {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 14px;
  padding: 8px;
  border: none !important;
  overflow-y: auto;
  color: transparent;
  z-index: 1;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
}
.subject-input-wrapper {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0px 2px;
  cursor: text;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.4;
}
.subject-input-editor {
  outline: none;
}
.subject-input-editor:empty::before {
  content: attr(data-placeholder);
  color: #999;
  pointer-events: none;
  cursor: text;
}
.subject-input-editor[contenteditable=false] {
  background-color: #f0f0f0;
  cursor: not-allowed;
  color: #777;
}
.subject-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 8px !important;
  padding: 0px 2px !important;
  margin: 0 2px !important;
  font-size: 0.8rem;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
}
.subject-chip .remove-chip-btn {
  margin-left: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.subject-chip .remove-chip-btn:hover {
  opacity: 1;
}
.ql-container.ql-snow {
  border: 0px solid #ccc !important;
}

/* app/javascript/PatientJourney/JourneyComponents/MetaTemplateCreation.css */
.containerMeta {
}
#ifoucsMeta:focus {
  background-color: rgba(173, 216, 230, 0.174);
}
.headerMeta {
  text-align: center;
  margin-bottom: 24px;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 600;
}
.fieldMeta {
  margin-bottom: 20px;
  position: relative;
}
.labelMeta {
  position: absolute;
  left: 8px;
  top: -2px;
  transform: translateY(-50%);
  background-color: white;
  border-radius: 3px;
  padding: 0 4px;
  font-size: 15px !important;
  color: rgb(49, 49, 49) !important;
}
.labelMetaCheckBox {
  border-radius: 3px;
  padding: 0 4px;
  font-size: 15px !important;
  color: rgb(49, 49, 49) !important;
}
.inputMeta {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgb(49, 49, 49) !important;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  box-sizing: border-box;
}
.textareaMeta {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgb(49, 49, 49);
  font-size: 14px;
  outline: none;
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  box-sizing: border-box;
}
.selectMeta {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgb(49, 49, 49);
  font-size: 14px;
  outline: none;
  background-color: white;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}
.primaryBtnMeta {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  background-color: #3b82f6;
  color: #ffffff;
  transition: background-color 0.2s;
}
.primaryBtnMeta.loadingMeta {
  cursor: not-allowed;
  background-color: #9ca3af;
  opacity: 0.7;
}
.secondaryBtnMeta {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  margin-top: 8px;
  margin-right: 8px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  background-color: #10b981;
  color: #ffffff;
  transition: background-color 0.2s;
}
.dangerBtnMeta {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  margin-top: 8px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  background-color: #ef4444;
  color: #ffffff;
}
.buttonContainerMeta {
  border: 2px solid #f3f4f6;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  background-color: #f9fafb;
}
.checkboxContainerMeta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkboxMeta {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* app/javascript/FormMaster/FormComponents/GroupBand.css */
.group-band {
  display: flex;
  align-items: center;
  box-shadow:
    0 2px 1px -1px rgba(0, 0, 0, .2),
    0 1px 1px 0 rgba(0, 0, 0, .14),
    0 1px 3px 0 rgba(0, 0, 0, .12);
  padding: 6px 10px;
  width: 100%;
}
.group-number {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
  margin-right: 6px;
}
.group-item {
  display: flex;
  align-items: center;
}
.group-edit-input {
  padding: 2px 4px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 120px;
}
.group-name {
  font-weight: 500;
  color: #333;
}
.group-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
}
.group-icon-box:hover {
  background: #dce6f2;
}
.group-line {
  height: 1px;
  width: 40px;
  background: #ccc;
  margin: 0 8px;
}
.group-add {
  margin-left: auto;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* app/javascript/FormMaster/FormComponents/FormTable.css */
.formTable {
  margin: 6px 80px;
  box-shadow: 0px 0px 3.5px 0px black;
  border-radius: 3px;
}
.css-3hjrbn-MuiTableCell-root,
.css-1s40the-MuiTableCell-root,
.css-rqzd96 {
  padding: 4px 5px !important;
  font-size: 15px !important;
  text-align: center !important;
  font-weight: 600 !important;
}
.css-1jwo265-MuiTableCell-root,
.css-bpthae-MuiTableCell-root,
.css-8qmse1 {
  padding: 4px 5px !important;
  font-size: 15px !important;
  border: 1px solid #ddd !important;
}
#disabledRow {
  background-color: lightgray;
}
.subCellStyle {
  font-size: 13px !important;
  color: #333333 !important;
}
.table_header_react {
  padding: 9px !important;
}
.table_cell_react {
  padding: 0px 9px !important;
}

/* app/javascript/FormMaster/CreateFormPreModal.css */
.selectQ {
  width: 100%;
  border-bottom: 1px solid gray;
  border-radius: 6px;
}
.form-label {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  width: 200px;
}
.form-label span {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
}
.addQuestionSelect {
  border-bottom: 1px solid gray !important;
  outline: none;
  border: none;
  padding: 10px 0px;
  font-size: 14px;
  width: 100%;
  border-radius: 4px;
}

/* app/javascript/components/FDTNavSidebar.scss */
.sidebar-collapsed {
  width: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-right: none !important;
  opacity: 0;
}
.sidebar-toggle-btn {
  transition: left 0.3s ease, background-color 0.2s ease;
}
.sidebar-toggle-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}
.sidebar-toggle-btn:active {
  transform: scale(0.95);
}
.fdt-nav-content-wrapper {
  margin-left: 0;
  transition: margin-left 0.3s ease;
  flex: 1;
  width: 100%;
}
.fdt-nav-content-wrapper.sidebar-collapsed {
  margin-left: 0;
}
#bold {
  font-weight: bolder !important;
}
#bolddfd {
  font-weight: bolder !important;
}

/* app/javascript/components/IntegrationManager.scss */
.api-page {
  min-height: 100vh;
  background: #f4f6f9;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  margin: 0;
}
.api-page .api-card {
  width: 100%;
  background: #ffffff;
  border: none;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.api-page .api-card .api-header {
  background-color: #0d47a1;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.35rem;
  font-weight: 600;
}
.api-page .api-card {
}
.api-page .api-card .form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1.2rem 2rem;
  background: #f9fafc;
  border-bottom: 1px solid #e3e7ee;
}
.api-page .api-card .form-row.single {
  grid-template-columns: 1fr;
}
.api-page .api-card .form-row .form-group {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
.api-page .api-card .form-row .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
}
.api-page .api-card .form-row .form-group select,
.api-page .api-card .form-row .form-group input,
.api-page .api-card .form-row .form-group textarea {
  display: block;
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  font-size: 0.9rem;
  background: #fff;
  color: #000;
  outline: none;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  position: relative;
  z-index: 99;
  pointer-events: auto;
}
.api-page .api-card .form-row .form-group select:hover,
.api-page .api-card .form-row .form-group input:hover,
.api-page .api-card .form-row .form-group textarea:hover {
  border-color: #1976d2;
}
.api-page .api-card .form-row .form-group select:focus,
.api-page .api-card .form-row .form-group input:focus,
.api-page .api-card .form-row .form-group textarea:focus {
  border-color: #1976d2;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.15);
}
.api-page .api-card .form-row .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.api-page .api-card {
}
.api-page .api-card .tabs {
  display: flex;
  justify-content: flex-start;
  background: #f2f5f9;
  border-bottom: 2px solid #e0e6ed;
  padding: 0 2rem;
}
.api-page .api-card .tabs .tab {
  min-width: 180px;
  text-align: center;
  margin-right: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  background: #ccc;
  border: 1px solid #d9e1eb;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.api-page .api-card .tabs .tab:hover {
  color: #0d47a1;
  background-color: #e8f0fe;
}
.api-page .api-card .tabs .tab.active {
  color: #fff;
  background-color: #0d47a1;
  border-bottom: 2px solid #ffffff;
  z-index: 2;
}
.api-page .api-card {
}
.api-page .api-card .upload-section {
  padding: 1rem 2rem;
  border-top: 1px solid #e3e7ee;
}
.api-page .api-card .upload-section label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 1rem;
}
.api-page .api-card .upload-section input[type=file] {
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  padding: 0.4rem;
  background: #fff;
  cursor: pointer;
}
.api-page .api-card {
}
.api-page .api-card .mapping-table {
  padding: 1.5rem 2rem;
  overflow: visible;
  position: relative;
  z-index: 100;
}
.api-page .api-card .mapping-table .table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.api-page .api-card .mapping-table .table-header h3 {
  font-size: 1.1rem;
  color: #0d47a1;
  margin: 0;
}
.api-page .api-card .mapping-table .table-header .add-btn {
  background-color: #43a047;
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.25s ease-in-out;
}
.api-page .api-card .mapping-table .table-header .add-btn:hover {
  background-color: #2e7d32;
}
.api-page .api-card .mapping-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  position: relative;
  z-index: 10;
}
.api-page .api-card .mapping-table table th {
  background: #0d47a1;
  color: #fff;
  padding: 0.6rem;
  text-align: left;
  font-size: 0.9rem;
}
.api-page .api-card .mapping-table table td {
  border: 1px solid #ddd;
  padding: 0.5rem;
  vertical-align: middle;
  overflow: visible;
}
.api-page .api-card .mapping-table table td select,
.api-page .api-card .mapping-table table td input {
  width: 100%;
  border: 1px solid #cfd8dc;
  border-radius: 4px;
  padding: 0rem;
  font-size: 0.9rem;
  background: #fff;
  color: #000;
  position: relative;
  z-index: 999;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  pointer-events: auto;
}
.api-page .api-card .mapping-table table td select:focus,
.api-page .api-card .mapping-table table td input:focus {
  border-color: #1976d2;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.15);
}
.api-page .api-card .mapping-table table td.action-cell {
  text-align: center;
  vertical-align: middle;
}
.api-page .api-card .mapping-table table .logic-input {
  min-width: 300px !important;
  width: 100% !important;
}
.api-page .api-card .mapping-table table .insurer-input {
  min-width: 300px !important;
  width: 100% !important;
}
.api-page .api-card .mapping-table .remove-btn {
  background: #ef5350;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease-in-out;
}
.api-page .api-card .mapping-table .remove-btn:hover {
  background: #c62828;
}
.api-page .api-card .mapping-table .button-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.api-page .api-card .mapping-table .button-row .save-btn {
  background-color: #0d47a1;
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}
.api-page .api-card .mapping-table .button-row .save-btn:hover {
  background-color: #1565c0;
}
.api-page {
}
.api-page .mapping-table,
.api-page .api-card {
  overflow: visible !important;
  position: static !important;
  transform: none !important;
  z-index: auto !important;
}
.api-page select {
  position: relative !important;
  z-index: 999999 !important;
  background-color: #fff !important;
  -webkit-appearance: menulist !important;
     -moz-appearance: menulist !important;
          appearance: menulist !important;
  pointer-events: auto !important;
  display: inline-block !important;
}
.api-page .clear-btn {
  background-color: #ef5350;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  margin-left: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.api-page .clear-btn:hover {
  background-color: #d32f2f;
}
.api-page .clear-btn:active {
  transform: scale(0.98);
}
.api-page {
}
@keyframes highlightFade {
  0% {
    background-color: #d4edda;
  }
  100% {
    background-color: white;
  }
}
.api-page .auto-filled {
  animation: highlightFade 2.5s ease-out;
  border: 1px solid #81c784;
}
.api-page {
}
.api-page .toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4B89A8;
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  animation: fadeInOut 5s ease-in-out forwards;
  opacity: 0;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}
.api-page .toast.error {
  background-color: #ef5350 !important;
}
.api-page .toast.success {
  background-color: #4B89A8 !important;
}
.api-page {
}
.api-page .error-border {
  border: 2px solid #ef5350 !important;
  box-shadow: 0 0 5px rgba(239, 83, 80, 0.6);
  transition: all 0.5s ease;
}
.api-page {
}
.api-page .toast.sticky {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #ef5350 !important;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  z-index: 9999;
  max-width: 450px;
  min-width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fadeIn 0.5s ease-in-out;
  pointer-events: none;
}
.api-page .toast * {
  pointer-events: auto;
}
.api-page {
}
.api-page .toast.sticky * {
  pointer-events: auto;
}
.api-page {
}
.api-page .toast.sticky button.close-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  margin-left: 10px;
  cursor: pointer;
  line-height: 1;
}
.api-page {
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.api-page {
}
.api-page .toast.success {
  background-color: #4B89A8 !important;
}
.api-page .toast.error {
  background-color: #ef5350 !important;
}
.api-page {
}
.api-page .error-border {
  border: 2px solid #ef5350 !important;
  box-shadow: 0 0 5px rgba(239, 83, 80, 0.6);
  transition: all 0.3s ease;
}
.api-page .save-btn:disabled {
  background-color: #bdbdbd !important;
  cursor: not-allowed !important;
  opacity: 0.6;
  box-shadow: none;
}
.api-page .valid-status {
  color: #4693b9;
  font-weight: 600;
  margin-left: 12px;
}
.api-page select option:disabled {
  color: #999;
  background-color: #f5f5f5;
  cursor: not-allowed;
}

/* app/javascript/DragNdrop/styles.css */
.react-flow__edge-path {
  stroke-width: 1.7;
  fill: none;
  stroke: rgba(20, 140, 210, 0.514);
}
#bold {
  font-weight: bolder !important;
}
.dropdownSO {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.dropdownSO:hover {
  background-color: #e0f0ff;
}
.dropdownSOD {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.dropdownSOD:hover {
  background-color: #e0f0ff;
}
.serviceICon {
  height: 27px;
  width: 27px;
  margin-right: 8px;
  border-radius: 3px;
  overflow: hidden;
  padding: 2px;
}
.spinner {
  border: 3px solid white;
  border-top: 4px solid black;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* app/javascript/DragNdrop/DNDNodeClickPop.css */
#fixed_footer {
  position: fixed;
  top: 77.5vh;
  width: 100%;
}
#HospitalLabel {
  display: flex;
  justify-content: start;
  width: 80%;
}
#hospitalPBtn {
  color: white;
  text-align: center !important;
  border: none;
  border-radius: 5px;
  height: 30px;
  margin-top: 23px !important;
  font-weight: 400 !important;
}
#hospitalPBtn:hover {
}
#rightCornerPA {
  position: absolute;
  display: flex;
  right: 18px;
  top: 47px;
  height: 50px;
  width: auto;
  z-index: 10000 !important;
}
.addphone {
  margin-right: 4px;
  border-radius: 3px;
  cursor: pointer;
  height: 45px;
}
.pac-container {
  z-index: 9999999 !important;
  position: absolute !important;
}
.pac-container.pac-logo.hdpi {
  background-color: #fff;
  position: absolute !important;
  z-index: 1000000 !important;
  border-radius: 2px;
  border-top: 1px solid #d9d9d9;
  font-family: Arial, sans-serif;
  box-shadow: none !important;
  box-sizing: border-box;
  overflow: hidden;
}
.pac-logo.hdpi::after {
  z-index: 0 !important;
  display: none !important;
}
.title {
}
.custom-map-control-button {
  background: rgba(20, 140, 210, 1) !important;
  position: absolute !important;
  top: 0px !important;
  left: initial !important;
  right: 8% !important;
  width: auto !important;
  padding-right: 4px !important;
  padding-left: 4px !important;
}
.currentNoneStyle {
  display: none !important;
}
.imgPreview {
  position: relative;
  width: 98%;
  z-index: 10000;
  background: white;
  top: 40%;
  height: 20%;
}
.invoicecdpflag {
  font-size: 9px;
  margin-left: 1px;
}
#HospitalLabel span {
  display: flex;
  flex-flow: column;
}

/* app/javascript/DragNdrop/PDF_configuration.css */
.label-heading {
  width: 100%;
  padding: 5px 2px;
  color: white;
  font-size: 15px;
  border-radius: 3px;
  margin-bottom: 5px;
}
#hospitalPBtnPDF {
  text-align: center !important;
  border: none;
  border-radius: 5px;
  height: 35px;
}
.imgPreviewClose {
  position: absolute;
  right: 13px;
  top: 13px;
  background: white;
  border-radius: 50%;
}

/* app/javascript/DragNdrop/SubComponents/PhoneCom.css */
.inputStyle {
  padding: 8px;
  margin-bottom: 5px;
  border: none;
  border-radius: 2.7px;
  width: 75%;
  border-bottom: 1px solid gray !important;
  font-size: 16px !important;
}

/* app/javascript/DragNdrop/index.css */
.dndflow {
  flex-direction: column;
  display: flex;
  flex-grow: 1;
  height: calc(100vh - 110px);
}
.dndflow aside {
  border-right: 1px solid #eee;
  font-size: 12px;
  width: 15.6% !important;
}
.dndflow aside .description {
  margin-bottom: 10px;
}
.dndflow .dndnode {
  height: 20px;
  padding: 28px;
  border: 1px solid #1a192b;
  border-radius: 6px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
  background-color: white;
}
.dndflow .dndnode.input {
  border-color: #0041d0;
  width: auto !important;
}
.dndflow .dndnode.output {
  border-color: #ff0072;
}
.dndflow .reactflow-wrapper {
  flex-grow: 1;
  height: 100%;
}
.dndflow .selectall {
  margin-top: 10px;
}
.react-flow__node {
  border-radius: 7px !important;
}
.react-flow__node-default {
  padding: 10px !important;
}
.react-flow__node-default.selectable.selected,
.react-flow__node-default.selectable:focus,
.react-flow__node-default.selectable:focus-visible,
.react-flow__node-input.selectable.selected,
.react-flow__node-input.selectable:focus,
.react-flow__node-input.selectable:focus-visible,
.react-flow__node-output.selectable.selected,
.react-flow__node-output.selectable:focus,
.react-flow__node-output.selectable:focus-visible,
.react-flow__node-group.selectable.selected,
.react-flow__node-group.selectable:focus,
.react-flow__node-group.selectable:focus-visible {
  box-shadow: none;
}
.react-flow {
  pointer-events: auto;
  overflow: hidden !important;
}
#mapstyle {
  margin-bottom: -15px !important;
}
@media screen and (min-width: 768px) {
  .dndflow {
    flex-direction: row;
  }
  .dndflow aside {
    width: 20%;
  }
  #leftone {
    max-width: 200px;
    width: 15%;
  }
}
.react-flow__controls-button {
  width: 13px;
  height: 10px;
}
.react-flow__controls {
  pointer-events: all;
  display: flex;
  flex-direction: row-reverse;
  width: 160px !important;
  justify-content: space-around;
}
.react-flow__panel {
  position: absolute;
  z-index: 5;
  width: auto;
  height: auto;
  margin-bottom: 19px !important;
}
.arrow {
  width: 0;
  height: 0;
  margin-left: 10px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid black;
  transition: transform 0.3s ease;
}
.arrow.up {
  transform: rotate(180deg);
}
.arrow.down {
  transform: rotate(0deg);
}
.plusminus {
  cursor: pointer;
  height: 28px;
}
.otherWithOverflow {
  max-height: 46vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.dndflow aside {
  transition:
    width 0.3s ease,
    min-width 0.3s ease,
    opacity 0.3s ease;
}
.dndflow aside.sidebar-collapsed {
  width: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-right: none !important;
  opacity: 0;
}
.sidebar-toggle-btn {
  transition: left 0.3s ease, background-color 0.2s ease;
}
.sidebar-toggle-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}
.sidebar-toggle-btn:active {
  transform: scale(0.95);
}

/* app/javascript/DragNdrop/IntegrationModel.css */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-box11111 {
  background: white;
  width: 60vw;
  max-height: 80vh;
  border-radius: 6px;
  overflow: hidden;
}
.form-group1111 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
}
.form-field1111 {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}
.form-field1111 label {
  flex-basis: 30%;
  padding: 8px 10px;
  background-color: #edf0f1ee;
  font-size: 1rem;
  color: gray;
}
.required {
  color: red;
  margin-left: 4px;
}
.form-field1111 input {
  padding-left: 10px;
  width: 100%;
  padding: 8px 10px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* app/javascript/DragNdrop/IntegrationPage.css */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  justify-items: start;
  align-items: start;
  height: 100%;
}
.integration-card {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 170px;
  width: 100%;
  background-color: #fff;
  max-width: 350px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.integration-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.integration-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.integration-icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.integration-desc {
  font-size: 0.9rem;
  color: #555;
  margin-top: 12px;
}
.integration_guide {
  font-size: 17px;
  width: -moz-max-content;
  width: max-content;
  background: #b3afaf;
  padding: 6px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  border-radius: 3px;
  color: white !important;
  font-weight: 100;
}
.tag {
  display: inline-block;
  font-size: 0.8rem;
  background: #0078d7;
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  margin-top: 3px;
  width: -moz-max-content;
  width: max-content;
  &.func-tag {
    background: #1ba94c;
  }
}
@media (max-width: 900px) {
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .integration-grid {
    grid-template-columns: 1fr;
  }
}

/* app/javascript/components/IntegrationCard.scss */
.integration-page {
  min-height: 100vh;
  padding: 30px;
  font-family:
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
}
.integration-page h2 {
  text-align: center;
  color: #2b5b73;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
}
.integration-page {
}
.integration-page .integration-container {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start;
  gap: 25px;
}
.integration-page {
}
.integration-page .integration-card {
  background: #fff !important;
  border-radius: 15px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  width: 340px !important;
  padding: 20px !important;
  position: relative !important;
  overflow: visible !important;
  display: block !important;
  height: auto !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  cursor: pointer !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.integration-page .integration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.integration-page .integration-card {
}
.integration-page .integration-card .integration-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.integration-page .integration-card .integration-header .integration-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: #f0f6ff;
  padding: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
.integration-page .integration-card .integration-header .service-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0078d7;
}
.integration-page .integration-card .integration-header .tag {
  display: inline-block;
  font-size: 0.8rem;
  background: #0078d7;
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  margin-top: 3px;
}
.integration-page .integration-card .integration-header .tag.func-tag {
  background: #1ba94c;
}
.integration-page .integration-card {
}
.integration-page .integration-card p {
  margin: 5px 0;
  color: #444;
  font-size: 0.95rem;
}
.integration-page .integration-card p b {
  color: #222;
}
.integration-page .integration-card {
}
.integration-page .integration-card .api-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  border-top: 1px solid #eee;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: scaleY(0.9);
  transform-origin: top;
  transition: all 0.4s ease;
}
.integration-page .integration-card .api-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  color: #333;
  background: #fff;
  transition: background 0.2s ease;
}
.integration-page .integration-card .api-list li:hover {
  background: #f9fbff;
}
.integration-page .integration-card .api-list.show {
  height: auto;
  opacity: 1;
  transform: scaleY(1);
  animation: fadeSlideIn 0.4s ease forwards;
}
.integration-page .integration-card {
}
.integration-page .integration-card .read-more {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  background: #0078d7;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer !important;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.integration-page .integration-card .read-more:hover {
  background: #005bb5;
  transform: scale(1.03);
}
.integration-page .integration-card .read-more.less {
  background: #ff6b00;
}
.integration-page .integration-card .read-more.less:hover {
  background: #d85b00;
}
.integration-page .integration-card .read-more::after {
  content: "\bb";
  margin-left: 6px;
  transition: transform 0.3s ease;
  display: inline-block;
}
.integration-page .integration-card .read-more.less::after {
  transform: rotate(-90deg);
}
.integration-page {
}
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .integration-page .integration-container {
    flex-direction: column !important;
    align-items: center;
  }
  .integration-page .integration-card {
    width: 90% !important;
  }
}

/* app/javascript/DragNdrop/buttonEdge.css */
.HOVER:hover {
  box-shadow: 0.5px 0.5px 10px rgba(199, 199, 199, 0.591);
}

/* app/javascript/ChatBot/ChatComponent.css */
.chat-container {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  overflow-y: hidden;
  background-color: #f9f9f9;
  width: 40vw;
  height: 83vh;
}
#chatModalPopap {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 999 !important;
  background-color: rgb(255, 255, 255);
  max-height: 92vh;
  max-width: 50vw;
  min-height: 90vh;
}
.chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: calc(76vh - 30px);
  background-color: #f5f5f5a1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.chat-message {
  max-width: 70%;
  padding: 8px 12px;
  border-radius: 20px;
  word-wrap: break-word;
}
.chat-message > p:first-of-type {
  margin: 0px;
}
.user-message {
  align-self: flex-end;
  background-color: #dcf8c6;
  text-align: left;
}
.bot-message {
  align-self: flex-start;
  background-color: #ffffff;
  border: 1px solid #ddd;
}
.chat-input-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  border-radius: 30px;
  padding: 4px;
  width: 100%;
  box-shadow: 0 2px 5px 6px rgba(0, 0, 0, 0.17);
  overflow-x: hidden;
}
.chat-icon {
  width: 35px;
  height: 35px;
  background-color: #e0e0e0;
  border-radius: 50%;
  color: #555;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sign_save_btn_react {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
#chat-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px !important;
  color: #2a3239;
  background: transparent;
  min-height: 34px !important;
  padding: 0px 4px !important;
  margin-left: 5px !important;
}
.chat-input::-moz-placeholder {
  color: #aaa;
}
.chat-input::placeholder {
  color: #aaa;
}
@media (max-width: 800px) {
  .chat-container {
    width: 90%;
  }
}
.message-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.message-row.bot {
  justify-content: flex-start;
  align-items: start;
}
.message-row.user {
  justify-content: flex-end;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: fill;
     object-fit: fill;
  padding: 1px;
  background: white;
  border: 2px solid lightgray;
}
.chat-message {
  position: relative;
  min-width: 20%;
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 14px;
  padding-bottom: 15px;
}
.typing {
  display: flex;
  gap: 4px;
  align-items: center;
}
.typing span {
  width: 6px;
  height: 6px;
  background: #999;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}
.typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typing {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.timestamp-react {
  font-size: 10px;
  color: #888;
  position: absolute;
  bottom: 0px;
  right: 11px;
}
.date-separator {
  text-align: center;
  font-size: 14px;
  color: #444;
  font-weight: bold;
  border-radius: 20px;
  display: inline-block;
  border-bottom: 1px solid lightgray;
  height: 0px;
  position: relative;
  margin-bottom: 7px;
  margin-top: 3px;
}
.changed_date-react {
  position: absolute;
  top: -10px;
  left: 42%;
  background: white;
  border-radius: 3px;
  padding: 2px;
  font-size: 13px;
  font-weight: 100;
  color: gray;
  border: 1px solid lightgray;
}
.chat-icon.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.chat-layout {
  display: flex;
  flex-direction: row;
  height: 83vh;
  width: 50vw;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  overflow: hidden;
}
.chat-layout .chat-container {
  flex: 1;
  width: auto;
  height: 100%;
  border: none;
}
.channel-sidebar {
  width: 170px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  background-color: #1e2a38;
  color: #c8d3de;
  overflow: hidden;
  border-right: 1px solid #2e3d50;
}
.channel-sidebar-header {
  padding: 14px 12px 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #8899aa;
  border-bottom: 1px solid #2e3d50;
  flex-shrink: 0;
}
.channel-list {
  flex: 1;
  overflow-y: auto;
  padding: 6px 0;
}
.channel-list::-webkit-scrollbar {
  width: 4px;
}
.channel-list::-webkit-scrollbar-thumb {
  background: #3a4f63;
  border-radius: 2px;
}
.channel-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 2px;
  cursor: pointer;
  border-radius: 4px;
  margin: 1px 6px;
  font-size: 13px;
  transition: background 0.15s;
  white-space: nowrap;
  overflow: hidden;
}
.channel-icon {
  font-size: 14px;
  flex-shrink: 0;
}
.channel-name {
  overflow: hidden;
  text-overflow: ellipsis;
}
.channel-empty {
  padding: 12px;
  font-size: 12px;
  color: #6a7f90;
  text-align: center;
}
.doctor-only-chat .user-message {
  background-color: #e8e8e8;
}
.doctor-only-chat .bot-message {
  background-color: transparent;
  border: none;
}
.doctor-only-chat .timestamp-react {
  display: none;
}
.doctor-only-chat .chat-message {
  padding-bottom: 8px;
}

/* app/javascript/Website/Website_page.css */
::-webkit-scrollbar {
  width: 5px;
  height: 6px !important;
  border: none;
}
::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 41px;
  cursor: pointer !important;
}
#sectionName {
  font-size: 10px;
  margin: 0px 0px 0px 12px;
  font-weight: 500 !important;
  color: #025d93;
}
.onSelectAnyForm {
  border: 2.7px solid var(--dynamic-primary-color) !important;
  box-shadow: rgba(0, 0, 0, 0.25) 0.1px 0.9px 5px;
  cursor: pointer;
}
#onHoverHeightLight:hover {
  border: 2.7px solid var(--dynamic-primary-color) !important;
  box-shadow: rgba(0, 0, 0, 0.25) 0.1px 0.9px 5px;
  cursor: pointer;
}
.blackBorderOfsection {
  box-shadow: rgba(0, 0, 0, 0.25) 0.1px 0.9px 5px;
}
.hoveredcard {
  border: 1.4px solid var(--dynamic-primary-color) !important;
}
#onHoverHeighLight:hover {
  border: 1.4px solid var(--dynamic-primary-color) !important;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 1.25) 3.1px 1.9px 5px;
  cursor: pointer;
}
#onHoverHeightLightS:hover {
  border: 1.8px solid var(--dynamic-primary-color) !important;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 1.25) 3.1px 1.9px 5px;
  cursor: pointer;
}
.redBorderOfsection {
  border: 1.4px solid var(--dynamic-primary-color) !important;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 1.25) 3.1px 1.9px 5px;
}
.caroussel {
  height: 100%;
}
.caroussel-content {
  height: 100%;
}
.caroussel-content .row {
  padding: 0px 4px !important;
}
.row {
  flex-wrap: nowrap !important;
  --bs-gutter-x: none !important;
}
.btn-prev {
  left: -10px !important;
  width: 40px !important;
}
.btn-next {
  right: -10px !important;
  width: 40px !important;
}
.caroussel > button {
  color: rgb(0, 0, 0) !important;
  text-shadow: 1px 1px 2px black;
}
.caroussel-dots {
  bottom: 7px !important;
  display: none !important;
}
.caroussel-dots > * {
  height: 5px !important;
  width: 5px !important;
  border-radius: 50%;
}
.col-2 {
  width: auto !important;
  width: 48% !important;
  margin: 0px 5.5px 0px 0px;
}
.col-1 {
  width: 98% !important;
  margin-right: 7px;
}
#hoverUnderline {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px !important;
}
#hoverUnderline:hover {
}
input {
  font-size: small;
}
.bolderr {
  font-weight: bolder !important;
  font-size: 15px;
}
.img_hover:hover {
  box-shadow: 1px 1px 8px 5px #3493c659;
}
.tox-statusbar__branding {
  margin-left: 2ch;
  display: none !important;
}
.recommendation-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 10px;
}
.recommendation-item {
  padding: 2px;
  display: flex;
  align-items: start;
  flex-flow: column;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#rH1 {
  font-size: 0.7em !important;
  margin-bottom: 10px;
  font-weight: bolder !important;
  line-break: auto;
  color: black;
}
#rP {
  font-size: 0.6em;
  line-break: auto;
  color: #333;
}
@media (max-width: 768px) {
  .recommendation-container {
    grid-template-columns: 1fr;
  }
}
.slider-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.image-container {
  overflow: hidden;
  width: 100%;
  height: 250px;
  margin: 10px 0;
  position: relative;
}
.slider {
  display: flex;
  flex-direction: row;
  transition: transform 0.5s ease-in-out;
}
.slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  height: auto;
}
.alt-text {
  margin-top: 10px;
  color: #333;
  flex: 20%;
  overflow-y: scroll;
  height: 250px;
  overflow-x: hidden;
}
.button_Cntr {
  display: flex !important;
  position: absolute;
  width: 100%;
  bottom: 0%;
  justify-content: center;
  transform: translateY(-50%);
}
.alt-text {
  margin-top: 10px;
  color: #333;
  flex: 20%;
  overflow: hidden;
}
.alt-text p span {
  font-size: 7.5px !important;
  margin-bottom: 0px !important;
  line-height: 11px !important;
}
h2 strong span {
  font-size: 4px !important;
}
.alt-text p {
  font-size: 7.5px !important;
  margin-bottom: 0px !important;
}
.alt-text h2 strong span {
  font-size: 9px !important;
  height: 22px;
  margin-bottom: 10px;
}
.alt-text p strong span {
  font-size: 9px !important;
  height: 22px;
  margin-bottom: 10px;
}
.button_Cntr img {
  height: 35px;
  margin: 0px !important;
  cursor: pointer;
}
.nav-btn {
  width: auto;
  height: auto;
  background-color: #33333300;
  color: rgb(0, 0, 0);
  border: none;
  cursor: pointer;
  font-size: 50px;
  margin-bottom: -34px;
}
.nav-btn:hover {
  background-color: #5555554d;
  border-radius: 50%;
}
.NavigationSelect {
  outline: none;
  background-color: white;
  font-size: 13px;
  color: #595959;
  width: 112px;
}
.NavigationOption {
  border: none !important;
  border-bottom: 2px solid #595959 !important;
}
.sliding-text {
  display: flex;
  padding-left: 100%;
  animation: slide 20s linear infinite;
}
@keyframes slide {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
.sc-44 {
  border: 1px solid gray;
  padding: 1px 6px;
  margin: 0px 5px;
  border-radius: 3px;
}
.dummytext {
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: x-large;
}
.contactusinput {
  padding: 8px 8px 8px 0px;
  margin-bottom: 5px;
  outline: none;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid gray;
  border-left: none;
  -o-border-image: initial;
     border-image: initial;
  border-radius: 2.7px;
  width: 51%;
}
.viewmoreM {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: end;
  height: 100%;
  width: 100%;
  background: #0000001f;
  z-index: 1000000000 !important;
}
.viewmoreContainer {
  height: 85%;
  width: 55%;
  background: white;
  border-radius: 10px;
  position: relative;
  display: flex;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px 10px;
  flex-flow: column;
  align-items: center;
}
.textviewmore {
  font-size: 10px;
  overflow: auto;
  width: 100%;
  padding: 0px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.viewmoreM img {
  height: 30%;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
}
.viewmoreBTN {
  background: #ff0000;
  border: none;
  color: white;
  position: absolute;
  right: 3px;
  top: 3px;
  border-radius: 14px;
  height: 17px;
  width: 17px;
  font-size: 9px;
  z-index: 10;
  cursor: pointer;
}
.viewMoreSectionTitle {
  font-size: 18px !important;
  padding: 3px 0px;
  overflow: hidden;
  white-space: nowrap;
}
h1,
h2,
h3,
h4,
h5,
.your-class {
  color: black;
}
.close_buttonFrom_ui {
  background: #ff0000;
  border: none;
  color: white;
  position: absolute;
  right: -1px;
  top: -1px;
  border-radius: 14px;
  height: 17px;
  width: 17px;
  font-size: 9px;
  z-index: 10;
}
.grabb:hover {
  cursor: grab;
}
.grabb:active {
  cursor: grabbing;
}
.listname {
  padding: 2px;
  cursor: pointer;
  background: white;
  color: black;
  font-size: 13px;
}
.listname:hover {
  padding: 2px;
  cursor: pointer;
  background: rgb(32, 172, 228);
  color: white;
}
input:focus {
  outline: none;
}
.displayflexaligncenter {
  display: flex;
  align-items: center;
}

/* app/javascript/Website/Website_page1.css */
.loadewebsite {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 10000;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
  text-align: center;
  color: white;
  padding: 4px;
}
.mobileC {
  border: 0.5px solid gray;
  border-radius: 19px;
  height: auto;
  width: 35.666vh;
  margin-top: 0vh;
  display: flex;
  max-width: 41vh;
  flex-direction: column;
  justify-content: space-around;
  flex-wrap: wrap;
  overflow: hidden;
  cursor: pointer;
}
.floatingContainer {
  position: absolute;
  bottom: 18vh;
  margin-left: 1.2%;
  height: auto;
  width: 30vh;
  border: 1px solid black;
  border-radius: 7px;
  background: white;
  overflow: hidden;
  box-shadow: gray 3px 1px 20px 15px;
  min-height: 90px;
}
.abcd {
  height: 40px;
  width: 30px;
  border-radius: 6px;
  display: flex;
  flex-basis: 18%;
  box-shadow: rgba(0, 0, 0, 0.0005) 0.1px 0.9px 5px;
  align-items: center;
  justify-content: center;
  margin: 4px;
  overflow: hidden;
  flex-flow: column;
  cursor: pointer;
}
.floatingBTN {
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
  width: 30px;
  cursor: pointer;
  z-index: 10;
  top: -15px;
  border-radius: 50%;
}
.bottomButtons {
  position: relative;
  width: 100%;
  border-top: 2px solid #8080804a;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 6px 0;
}
.img_hover {
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
  width: 25px;
  cursor: pointer;
  z-index: 10;
  margin-bottom: 5px;
  border-radius: 50%;
}
.mobilelogoC {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  color: white;
  padding: 2px 8px;
  border-bottom: 1px solid rgb(14, 111, 162);
}
.s20 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  color: black;
  padding: 0;
  margin: 0px 1px;
  height: 55px;
  width: 99%;
  cursor: pointer;
  background-color: white;
  position: relative;
}
.alt-text h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1 !important;
  margin-bottom: 0px;
}
.alt-texts h1 span {
  font-size: 16pt !important;
}
.alt-texts h2 span {
  font-size: 14pt !important;
}
.alt-texts h3 strong span {
  font-size: 12pt !important;
}
.alt-texts h4 span {
  font-size: 9pt !important;
}
.alt-textv h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1 !important;
  margin-bottom: 0px;
}
.alt-textv h1 span {
  font-size: 20pt !important;
}
.alt-textv h2 span {
  font-size: 18pt !important;
}
.alt-textv h3 strong span {
  font-size: 16pt !important;
}
.alt-textv h4 span {
  font-size: 13pt !important;
}
.video_Call {
  width: 100%;
  margin: 3px;
  box-shadow: 0px 0px 1px 1px #00000078;
}
.TabContainer {
  display: flex;
  justify-content: space-evenly;
  padding: 4px;
  width: 100%;
  position: relative;
  background-color: white;
  border-bottom: 1px solid lightgray;
}
.Tabs {
  background: white;
  color: rgb(75, 137, 168);
  font-size: 14px !important;
  border-radius: 3px;
  padding: 9px 43px;
  font-weight: bolder !important;
  cursor: pointer;
  width: 25%;
  text-align: center;
  border: 1.5px solid rgb(75, 137, 168);
}
.Tabs:hover {
  background: rgb(75, 137, 168);
  color: white;
  border: 1.5px solid rgb(75, 137, 168);
}
.SelectedTab {
  background: rgb(75, 137, 168);
  color: white;
  border: 1.5px solid rgb(75, 137, 168);
  font-size: 14px !important;
  border-radius: 3px;
  padding: 9px 43px;
  font-weight: bolder !important;
  cursor: pointer;
  width: 25%;
  text-align: center;
}
.dynamci_fixed {
  width: 100%;
  position: relative;
  height: 53%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: white;
  background: rgb(255, 255, 255);
  border-radius: 2px;
  border-bottom: 1px solid gray;
}
.displaynone {
  display: none !important;
}
.newSection {
  display: none !important;
}
.pageNameInput {
  outline: none;
  border: none;
  padding: 5px;
  border-radius: 3px;
}
.pageNameEditSaveButton {
  height: 28px;
  cursor: pointer;
  margin-left: 5px;
  background: #ffffff;
  width: 28px;
  border-radius: 50%;
}
#mobileResolution {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #333;
  font-size: 16px;
  width: 100%;
  max-width: 300px;
  transition: all 0.3s ease;
}
#mobileResolutionEdit {
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #333;
  font-size: 12.5px;
  width: 100%;
  max-width: 212px;
  margin: 0px 0px;
  transition: all 0.3s ease;
}
#mobileResolutionEdit:focus {
  outline: none;
}
#mobileResolution:focus {
  outline: none;
}
#mobileResolution option {
  background-color: #fff;
  color: #333;
  padding: 10px;
}
.updateOnViewInput {
  border: none !important;
  outline: none !important;
  background-color: transparent;
  font-size: inherit;
  color: inherit;
}
.updateOnViewInput:focus {
  background-color: #ADD8E6;
}
.updateOnViewImg {
  height: 20px;
  right: 0px;
  top: -2px;
  position: absolute;
  cursor: pointer;
}
.rotate {
  animation: rotate 0.6s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
textarea {
  overflow: hidden;
}
.li-card {
  width: inherit;
  position: absolute;
  bottom: 01px;
  text-align: left;
  background: #00000070;
  color: white;
  padding-left: 10px !important;
}
.resizeIcon {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 10px;
  background-color: rgb(26, 102, 255);
  border-radius: 5px;
  padding: 10px 7px;
  cursor: ns-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000000000000;
}
@media (min-width: 335px) and (max-width: 967.98px) {
  .previewFloat {
    margin-left: 5% !important;
    width: 27vh !important;
    min-height: 160px !important;
  }
  .sectiontwentyone {
    height: 11vh !important;
    width: 30% !important;
  }
  #mobileWithonPreview {
    width: 33.66vh !important;
  }
  .video_Call {
    margin: 9px !important;
  }
}
.style55 {
  background-size: contain !important;
  height: 180px !important;
  width: 180px !important;
  background-position: center !important;
  border-radius: 8% !important;
  background-repeat: no-repeat !important;
  position: relative !important;
  cursor: pointer !important;
  box-shadow: none !important;
}
.dynamicSearch {
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  box-shadow: 0px 0px 3.5px 0px #000000b3;
  margin: 1.5px;
  margin-bottom: 5px;
  margin-left: 30px;
  margin-right: 30px;
}
.dynamicSearch2 {
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  box-shadow: 0px 0px 3.5px 0px #000000b3;
  margin: 1.5px;
  margin-bottom: 5px;
}
.filedWithSch {
  width: 18%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 2.7px;
  margin: 0px 7.5px 0px 7.5px;
}
#textCardSpan p {
  margin-bottom: 0 !important;
}
.carousel-root {
  height: 100%;
  width: 100%;
}
.carousel-slider {
  height: 100%;
}
.carousel .slider {
  height: 100%;
}
.slider-wrapper {
  height: 100%;
}
.carousel .control-arrow {
  width: auto !important;
}
.carousel .control-dots {
  bottom: 0;
  margin: 0px !important;
}

/* app/javascript/Website/stylettf.css */
@font-face {
  font-family: "mobileHeading";
}
.mobileSectionHeading {
  font-family: "mobileHeading" !important;
  display: flex;
  align-items: center;
}
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 0px 9px 9px 9px;
  border-radius: 3px;
  margin: 0px 80px 5px 80px;
  box-shadow: 0px 0px 3.5px 0px #000000b3;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
}
.filter-input,
.filter-select {
  padding: 8px 12px;
  border: 1px solid #ccc !important;
  border-radius: 6px;
  font-size: 14px;
  min-width: 140px;
}
.filter-selectt {
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  min-width: 150px;
}
.filter-select:focus {
  border: 1px solid #ccc !important;
}
.nodeClickBtnSS {
  font-size: medium;
  background-color: #00AD51;
  color: white;
  padding: 3px 0px;
  text-align: center;
  border: none;
  border-radius: 5px;
  margin-top: 9px;
}
.nodeClickBtnCC {
  font-size: medium;
  background-color: #FF852E;
  color: white;
  padding: 3px 0px;
  text-align: center;
  border: none;
  border-radius: 5px;
  margin-top: 9px;
}

/* node_modules/react-responsive-carousel/lib/styles/carousel.min.css */
.carousel .control-arrow,
.carousel.carousel-slider .control-arrow {
  transition: all .25s ease-in;
  opacity: .4;
  filter: alpha(opacity=40);
  position: absolute;
  z-index: 2;
  top: 20px;
  background: none;
  border: 0;
  font-size: 32px;
  cursor: pointer;
}
.carousel .control-arrow:focus,
.carousel .control-arrow:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.carousel .control-arrow:before,
.carousel.carousel-slider .control-arrow:before {
  margin: 0 5px;
  display: inline-block;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  content: "";
}
.carousel .control-disabled.control-arrow {
  opacity: 0;
  filter: alpha(opacity=0);
  cursor: inherit;
  display: none;
}
.carousel .control-prev.control-arrow {
  left: 0;
}
.carousel .control-prev.control-arrow:before {
  border-right: 8px solid #fff;
}
.carousel .control-next.control-arrow {
  right: 0;
}
.carousel .control-next.control-arrow:before {
  border-left: 8px solid #fff;
}
.carousel-root {
  outline: none;
}
.carousel {
  position: relative;
  width: 100%;
}
.carousel * {
  box-sizing: border-box;
}
.carousel img {
  width: 100%;
  display: inline-block;
  pointer-events: none;
}
.carousel .carousel {
  position: relative;
}
.carousel .control-arrow {
  outline: 0;
  border: 0;
  background: none;
  top: 50%;
  margin-top: -13px;
  font-size: 18px;
}
.carousel .thumbs-wrapper {
  margin: 20px;
  overflow: hidden;
}
.carousel .thumbs {
  transition: all .15s ease-in;
  transform: translate3d(0, 0, 0);
  position: relative;
  list-style: none;
  white-space: nowrap;
}
.carousel .thumb {
  transition: border .15s ease-in;
  display: inline-block;
  margin-right: 6px;
  white-space: nowrap;
  overflow: hidden;
  border: 3px solid #fff;
  padding: 2px;
}
.carousel .thumb:focus {
  border: 3px solid #ccc;
  outline: none;
}
.carousel .thumb.selected,
.carousel .thumb:hover {
  border: 3px solid #333;
}
.carousel .thumb img {
  vertical-align: top;
}
.carousel.carousel-slider {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.carousel.carousel-slider .control-arrow {
  top: 0;
  color: #fff;
  font-size: 26px;
  bottom: 0;
  margin-top: 0;
  padding: 5px;
}
.carousel.carousel-slider .control-arrow:hover {
  background: rgba(0, 0, 0, 0.2);
}
.carousel .slider-wrapper {
  overflow: hidden;
  margin: auto;
  width: 100%;
  transition: height .15s ease-in;
}
.carousel .slider-wrapper.axis-horizontal .slider {
  -ms-box-orient: horizontal;
  display: -moz-flex;
  display: flex;
}
.carousel .slider-wrapper.axis-horizontal .slider .slide {
  flex-direction: column;
  flex-flow: column;
}
.carousel .slider-wrapper.axis-vertical {
  -ms-box-orient: horizontal;
  display: -moz-flex;
  display: flex;
}
.carousel .slider-wrapper.axis-vertical .slider {
  flex-direction: column;
}
.carousel .slider {
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  width: 100%;
}
.carousel .slider.animated {
  transition: all .35s ease-in-out;
}
.carousel .slide {
  min-width: 100%;
  margin: 0;
  position: relative;
  text-align: center;
}
.carousel .slide img {
  width: 100%;
  vertical-align: top;
  border: 0;
}
.carousel .slide iframe {
  display: inline-block;
  width: calc(100% - 80px);
  margin: 0 40px 40px;
  border: 0;
}
.carousel .slide .legend {
  transition: all .5s ease-in-out;
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -45%;
  width: 90%;
  border-radius: 10px;
  background: #000;
  color: #fff;
  padding: 10px;
  font-size: 12px;
  text-align: center;
  opacity: 0.25;
  transition: opacity .35s ease-in-out;
}
.carousel .control-dots {
  position: absolute;
  bottom: 0;
  margin: 10px 0;
  padding: 0;
  text-align: center;
  width: 100%;
  z-index: 1;
}
@media (min-width: 960px) {
  .carousel .control-dots {
    bottom: 0;
  }
}
.carousel .control-dots .dot {
  transition: opacity .25s ease-in;
  opacity: .3;
  filter: alpha(opacity=30);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
  background: #fff;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  cursor: pointer;
  display: inline-block;
  margin: 0 8px;
}
.carousel .control-dots .dot.selected,
.carousel .control-dots .dot:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.carousel .carousel-status {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
  font-size: 10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
  color: #fff;
}
.carousel:hover .slide .legend {
  opacity: 1;
}

/* app/javascript/Website/GroupTags.css */
.containeT {
  z-index: 19;
  width: 100%;
  height: 100vh;
  color: red;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  left: 0px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modelT {
  height: auto;
  width: 77%;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-radius: 9px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.head_patchT {
  padding: 3px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
h1 {
  font-size: 25px;
  font-weight: 300;
  text-align: center;
  color: white;
}
.model_p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #000000;
  padding: 20px;
  font-size: 17px !important;
  font-family: "Lato", sans-serif !important;
  font-weight: normal !important;
}
.btn_sectionT {
  display: flex;
  justify-content: space-between;
  padding: 5px 9px;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}
.btn_sectionT .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 6px;
  font: 15px lato-regular;
  height: 32px;
  width: 72px;
  padding: 0 16px;
  text-transform: capitalize;
  -webkit-tap-highlight-color: transparent;
  color: white;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn_sectionT .btnn {
  border: none;
  border-radius: 6px;
  font: 15px lato-regular !important;
  height: 32px;
  width: 72px;
  padding: 0 16px;
  text-transform: capitalize;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  color: white;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.formContanerT {
  max-height: 50vh;
  width: 100% !important;
  overflow-y: auto !important;
  padding: 5px 25px;
  padding-bottom: 100px;
}
.taglabel {
  display: flex;
  padding: 10px 5px;
  color: white;
  border-radius: 5px;
  margin: 8px;
  margin-top: 3px;
}
.righttags {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.popCloseTag {
  color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  height: 25px;
  width: 25px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
}
.css-1rv8zyt-MuiStack-root {
  width: 50vw !important;
}
.notification-box {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e0e0e0;
}
.css-2x8kvt-MuiPickersArrowSwitcher-root-MuiTimeClock-arrowSwitcher {
  right: -175px !important;
}
.css-147rllg {
}
.css-foq3gz,
.css-10dg1z8,
.css-1tzw3s5 {
  width: 100% !important;
}

/* app/javascript/Website/ContentViewNew.css */
.inputBorder {
}
.focus:focus {
  background-color: #e0f7fa !important;
  outline: none;
}
.placeholder-red::-moz-placeholder {
  text-align: center !important;
}
.placeholder-red::placeholder {
  text-align: center !important;
}
.contentviewC {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background: #00000080;
}
.contentviewM {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  background: white;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
  overflow-wrap: break-word;
  height: auto;
  font-size: 12px;
  overflow: hidden;
  border-radius: 33px;
  max-height: 95vh;
  min-height: 95vh;
  max-width: 84vw;
  min-width: 84vw;
}
#hiddenO {
  overflow: hidden !important;
}
#rightHeading {
  font-weight: 600 !important;
  font-size: 13px !important;
}
.rightContentPart {
  border: 0px solid rgba(50, 65, 10, 0.98);
  box-shadow: -1px -1px 4px black;
  border-radius: 7px !important;
  overflow: hidden;
}
.jodit-toolbar-button__button {
  width: 100% !important;
}
a.jodit-status-bar-link {
  display: none !important;
}
.jodit-ui-spacer {
  display: block !important;
}
.jodit-popup__content {
  min-width: 200px !important;
  max-width: 300px !important;
  padding: 3px !important;
  border-radius: 3px !important;
}
.jodit-ui-group__center {
  text-align: start !important;
}
#marginBottom4 {
  margin-bottom: 4px !important;
}

/* app/javascript/Website/TimePicker.css */
.css-1w26pe4-MuiPickersToolbar-root-MuiTimePickerToolbar-root {
  margin-right: 100px;
}
.css-1c6ie6w {
  width: 700px !important;
}

/* app/javascript/Website/DateMultiSelect.css */
.css-1hb7zxy-IndicatorsContainer,
.css-1wy0on6,
.css-1xc3v61-indicatorContainer,
.css-1xc3v61-indicatorContainer {
}

/* app/javascript/Website/HoverCard.css */
.hoverCard {
  position: absolute;
  width: auto;
  height: auto;
  background-color: #e6e6e6;
  border: .51px solid var(--dynamic-primary-color) !important;
  border-radius: 6px;
  text-align: center;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px;
  z-index: 10000000000 !important;
  gap: 7px;
}
.hoverCard img {
  cursor: pointer;
  height: 25px;
  width: 25px;
}

/* app/javascript/Website/Courses/Courses.css */
.courseName {
  cursor: pointer;
  color: #2482d3;
}
.courseName:hover {
  border-bottom: 1px solid #2482d3;
}
#courseHover:hover {
  border: 1px solid gray;
  border-radius: 7px;
  overflow: hidden;
  transform: translateY(-2px);
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.15);
}
#courseHover:active {
  cursor: grabbing;
}
#courseHover {
  border: 1px solid gray;
  border-radius: 7px;
  overflow: hidden;
  cursor: grab;
}
#courseBold {
  font-weight: bolder !important;
}
.courseDlt {
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px;
  color: white;
  height: 30px;
  width: 30px;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.buttonADD {
  display: block;
  margin: 8px;
  padding: 3px;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.buttonADD:hover {
  transform: scale(1.05);
}

/* app/javascript/Website/Courses/CourseTags.css */
.containeT {
  z-index: 19;
  width: 100%;
  height: 100vh;
  color: red;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  left: 0px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modelT {
  height: auto;
  width: 77%;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-radius: 9px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.head_patchT {
  padding: 7px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
h1 {
  font-size: 25px;
  font-weight: 300;
  text-align: center;
  color: white;
}
.model_p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #000000;
  padding: 20px;
  font-size: 17px !important;
  font-family: "Lato", sans-serif !important;
  font-weight: normal !important;
}
.btn_sectionT {
  display: flex;
  justify-content: space-between;
  padding: 5px 9px;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}
.btn_sectionT .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 6px;
  font: 15px lato-regular;
  height: 32px;
  width: 72px;
  padding: 0 16px;
  text-transform: capitalize;
  -webkit-tap-highlight-color: transparent;
  color: white;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn_sectionT .btnn {
  border: none;
  border-radius: 6px;
  font: 15px lato-regular !important;
  height: 32px;
  width: 72px;
  padding: 0 16px;
  text-transform: capitalize;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  color: white;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.formContanerT {
  max-height: 50vh;
  width: 100% !important;
  overflow-y: auto !important;
  padding: 5px 25px;
  padding-bottom: 100px;
}
.taglabel {
  display: flex;
  padding: 10px 5px;
  color: white;
  border-radius: 5px;
  margin: 8px;
  margin-top: 3px;
}
.righttags {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.popCloseTag {
  color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  height: 25px;
  width: 25px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
}
.css-1rv8zyt-MuiStack-root {
  width: 50vw !important;
}
.notification-box {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e0e0e0;
}
.css-2x8kvt-MuiPickersArrowSwitcher-root-MuiTimeClock-arrowSwitcher {
  right: -175px !important;
}
.css-147rllg {
  width: 56vw !important;
}
.css-foq3gz,
.css-10dg1z8,
.css-1tzw3s5 {
  width: 100% !important;
}

/* app/javascript/components/IntegrationCardDetails.scss */
.card-details-page {
  padding: 30px;
  background: #f5f7fa;
  min-height: 100vh;
}
.card-details-page h2 {
  text-align: center;
  color: #1d3557;
  font-size: 1.8rem;
  margin-bottom: 25px;
}
.card-details-page .details-table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.card-details-page .details-table th,
.card-details-page .details-table td {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  text-align: left;
}
.card-details-page .details-table th {
  background: #0078d7;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}
.card-details-page .details-table tr:nth-child(even) {
  background: #f9fbff;
}
.card-details-page .details-table tr:hover {
  background: #e8f3ff;
  transition: 0.2s ease;
}
.card-details-page .redirect-btn {
  background-color: #0078d7;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.card-details-page .redirect-btn:hover {
  background-color: #005bb5;
  transform: scale(1.05);
}
.card-details-page .header-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.card-details-page .add-new-btn {
  background-color: #0078d7;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.card-details-page .add-new-btn:hover {
  background-color: #005bb5;
  transform: scale(1.05);
}
.card-details-page .redirect-btn {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.card-details-page .redirect-btn:hover {
  background-color: #e55b00;
  transform: scale(1.05);
}
body.inside-iframe header,
body.inside-iframe .main-header,
body.inside-iframe .navbar,
body.inside-iframe #header {
  display: none !important;
}

/* app/javascript/components/IntegrationStageStatusMapping.scss */
.ism-page {
  min-height: 100vh;
  padding: 24px;
  background: #eef1f7;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  position: relative;
  z-index: 1;
}
.ism-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.ism-header-title {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 600;
  color: var(--cdp-primary-color, #1e558c);
}
.ism-header-subtitle {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}
.ism-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ism-view-toggle {
  display: flex;
  gap: 4px;
  background: #e5e7eb;
  padding: 4px;
  border-radius: 8px;
}
.ism-toggle-btn {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  color: #6b7280;
  transition: all 0.2s ease;
}
.ism-toggle-btn:hover {
  color: var(--cdp-primary-color, #1e558c);
}
.ism-toggle-active {
  background: #ffffff;
  color: var(--cdp-primary-color, #1e558c);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ism-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.ism-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 18px 18px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.4);
  overflow: visible;
}
.ism-card-header {
  margin-bottom: 8px;
}
.ism-card-title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
}
.ism-card-subtitle {
  font-size: 11px;
  color: #6b7280;
}
.ism-field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 10px;
  overflow: visible;
}
.ism-field-row-with-btn {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.ism-field-btn {
  padding-bottom: 2px;
}
.ism-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}
.ism-input,
.ism-select {
  width: 100%;
  padding: 8px 9px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  outline: none;
}
.ism-input:focus,
.ism-select:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 1px #e0e7ff;
  background: #ffffff;
}
.ism-select {
  position: relative;
  z-index: 10000;
  background-color: #ffffff;
}
.ism-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: none;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.ism-btn-primary {
  background: var(--cdp-primary-color, #1e558c);
  color: #ffffff;
}
.ism-btn-primary:hover {
  background: #4338ca;
}
.ism-btn-danger-text {
  background: transparent;
  color: #ef4444;
  font-size: 11px;
  padding: 4px 10px;
}
.ism-btn-danger-text:hover {
  background: rgba(239, 68, 68, 0.08);
}
.ism-btn-secondary {
  background: #ffffff;
  color: var(--cdp-primary-color, #1e558c);
  border: 1px solid var(--cdp-primary-color, #1e558c);
}
.ism-btn-secondary:hover {
  background: #f0f4f8;
}
.ism-table-wrapper {
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  margin-top: 10px;
}
.ism-grid .ism-table-wrapper {
  max-height: 180px;
}
.ism-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.ism-th,
.ism-td {
  border: 1px solid #e5e7eb;
  padding: 6px 8px;
  text-align: left;
  white-space: nowrap;
}
.ism-th {
  background: #f3f4ff;
  font-weight: 600;
  font-size: 11px;
  color: #111827;
}
.ism-table tr:nth-child(odd) .ism-td {
  background: #f9fafb;
}
.ism-muted {
  color: #6b7280;
  font-size: 11px;
  text-align: center;
}
.ism-loading {
  text-align: center;
  margin-top: 80px;
  font-size: 14px;
  color: #4b5563;
}
.ism-mapping-card {
  margin-top: 0;
}
.ism-mapping-card .ism-field-row {
  margin-bottom: 8px;
}
.ism-mapping-card .ism-label {
  font-size: 11px;
  margin-bottom: 2px;
}
.ism-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}
.ism-modal {
  background: #ffffff;
  border-radius: 12px;
  width: 95%;
  max-width: 1200px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.ism-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
}
.ism-modal-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--cdp-primary-color, #1e558c);
}
.ism-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  line-height: 1;
  padding: 0;
}
.ism-modal-close:hover {
  color: var(--cdp-primary-color, #1e558c);
}
.ism-modal-body {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(80vh - 60px);
}
.ism-masters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ism-master-section h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}
.ism-master-section .ism-table-wrapper {
  max-height: 200px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .ism-page {
    padding: 16px;
  }
  .ism-card {
    padding: 14px 14px 16px;
  }
}

/* app/javascript/components/CRMPhaseStageWorkflowBuilder.scss */
.crm-workflow-builder {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 180px);
  min-height: 500px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.4);
  overflow: hidden;
}
.crm-workflow-toolbar {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 16px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.crm-toolbar-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
}
.crm-toolbar-item label {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}
.crm-select {
  min-width: 200px;
}
.crm-toolbar-hint {
  margin-left: auto;
  font-size: 13px;
  color: #64748b;
  padding: 8px 12px;
  background: #e0e7ff;
  border-radius: 6px;
}
.crm-add-stage-wrapper {
  position: relative;
}
.crm-btn-add {
  background: var(--cdp-primary-color, #1e558c);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.crm-btn-add:hover {
  background: #164569;
}
.crm-btn-save {
  background: #e2e8f0;
  color: #64748b;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: default;
  transition: all 0.2s ease;
}
.crm-btn-save.dirty {
  background: #fef3c7;
  color: #92400e;
  cursor: pointer;
}
.crm-btn-save.dirty:hover {
  background: #fde68a;
}
.crm-add-stage-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
}
.crm-dropdown-item {
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.crm-dropdown-item:hover {
  background: #f1f5f9;
}
.crm-dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}
.crm-dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}
.crm-dropdown-empty {
  padding: 12px 16px;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}
.crm-workflow-canvas {
  flex: 1;
  position: relative;
}
.crm-workflow-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 16px;
  color: #94a3b8;
}
.crm-empty-state {
  text-align: center;
}
.crm-empty-state p {
  margin: 12px 0 0;
  font-size: 14px;
  color: #64748b;
}
.crm-empty-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: #e0e7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--cdp-primary-color, #1e558c);
}
.crm-stage-node {
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 160px;
  max-width: 220px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  position: relative;
}
.crm-stage-node:hover {
  border-color: var(--cdp-primary-color, #1e558c);
  box-shadow: 0 4px 12px rgba(30, 85, 140, 0.15);
}
.crm-stage-node.selected {
  border-color: var(--cdp-primary-color, #1e558c);
  box-shadow: 0 0 0 3px rgba(30, 85, 140, 0.2);
}
.crm-stage-node.starting {
  border-color: #10b981;
  border-width: 2px;
}
.crm-stage-node.orphan {
  border-color: #f59e0b;
  border-style: dashed;
}
.crm-stage-start-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.crm-stage-orphan-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f59e0b;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.crm-stage-remove-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ef4444;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.crm-stage-remove-btn:hover {
  background: #dc2626;
}
.crm-stage-node:hover .crm-stage-remove-btn {
  opacity: 1;
}
.crm-stage-node-header {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  text-align: center;
}
.crm-stage-node-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.crm-status-chip {
  font-size: 10px;
  padding: 2px 8px;
  background: #e0e7ff;
  color: #3730a3;
  border-radius: 12px;
}
.crm-transition-edge {
  stroke: var(--cdp-primary-color, #1e558c);
  stroke-width: 2;
  cursor: pointer;
}
.crm-transition-edge:hover {
  stroke: #ef4444;
  stroke-width: 3;
}
.crm-edge-label {
  background: var(--cdp-primary-color, #1e558c);
  color: #ffffff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  text-align: center;
  white-space: nowrap;
}
.crm-edge-tooltip {
  background: #1e293b;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  min-width: 180px;
}
.crm-edge-tooltip-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.crm-edge-tooltip-row:last-of-type {
  margin-bottom: 0;
}
.crm-tooltip-label {
  color: #94a3b8;
  font-weight: 500;
  white-space: nowrap;
}
.crm-edge-tooltip-divider {
  text-align: center;
  font-size: 16px;
  color: #10b981;
  margin: 8px 0;
  font-weight: 600;
}
.crm-edge-tooltip-lock {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #475569;
  color: #fbbf24;
  font-weight: 600;
  text-align: center;
}
.crm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.crm-modal {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  min-width: 400px;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.crm-modal h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}
.crm-modal-subtitle {
  margin: 0 0 20px;
  font-size: 14px;
  color: #64748b;
}
.crm-modal-field {
  margin-bottom: 16px;
}
.crm-modal-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  margin-bottom: 6px;
}
.crm-checkbox-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.crm-checkbox-field label input[type=checkbox] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.crm-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}
.crm-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.crm-btn-primary {
  background: var(--cdp-primary-color, #1e558c);
  color: #ffffff;
}
.crm-btn-primary:hover {
  background: #164569;
}
.crm-btn-secondary {
  background: #e2e8f0;
  color: #475569;
}
.crm-btn-secondary:hover {
  background: #cbd5e1;
}
.react-flow__handle {
  width: 10px;
  height: 10px;
  background: #94a3b8;
  border: 2px solid #ffffff;
}
.react-flow__handle:hover {
  background: var(--cdp-primary-color, #1e558c);
}
.react-flow__edge {
  cursor: pointer;
}
.react-flow__controls {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.react-flow__minimap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.crm-multi-phase {
  background: #f1f5f9;
}
.react-flow__node-phaseNode {
}
.react-flow__node-phaseNode > div {
  width: 100%;
  height: 100%;
}
.react-flow__node-phaseNode {
}
.react-flow__node-phaseNode:has(.dropdown-open) {
  z-index: 9999 !important;
}
.react-flow__node-stageNode {
  z-index: 1 !important;
}
.crm-phase-container {
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.crm-phase-header {
  background:
    linear-gradient(
      135deg,
      var(--cdp-primary-color, #1e558c) 0%,
      #2d6da3 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 10000;
}
.crm-phase-header > span {
  flex: 1;
  text-align: center;
}
.crm-phase-add-stage-wrapper {
  position: relative;
  z-index: 10001;
}
.crm-phase-add-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.crm-phase-add-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}
.crm-phase-add-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  min-width: 180px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 10000;
}
.crm-phase-add-dropdown .crm-dropdown-item {
  padding: 8px 14px;
  font-size: 13px;
  color: #1e293b;
  cursor: pointer;
  transition: background 0.15s ease;
}
.crm-phase-add-dropdown .crm-dropdown-item:hover {
  background: #f1f5f9;
}
.crm-phase-add-dropdown .crm-dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}
.crm-phase-add-dropdown .crm-dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}
.crm-phase-add-dropdown .crm-dropdown-empty {
  padding: 12px 14px;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}
.crm-phase-body {
  flex: 1;
  padding: 16px;
  background: #f8fafc;
  position: relative;
  min-height: 200px;
}
.crm-phase-resize-line {
  border-color: var(--cdp-primary-color, #1e558c) !important;
  border-width: 2px !important;
}
.crm-phase-resize-handle {
  width: 10px !important;
  height: 10px !important;
  background: var(--cdp-primary-color, #1e558c) !important;
  border: 2px solid #ffffff !important;
  border-radius: 3px !important;
}
.react-flow__node-phaseNode.selected .crm-phase-container {
  border-color: var(--cdp-primary-color, #1e558c);
  box-shadow: 0 0 0 2px rgba(30, 85, 140, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
}
.crm-dropdown-header {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cdp-primary-color, #1e558c);
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.crm-dropdown-back {
  background: none;
  border: none;
  padding: 4px 8px;
  font-size: 13px;
  color: #64748b;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.crm-dropdown-back:hover {
  background: #e2e8f0;
  color: var(--cdp-primary-color, #1e558c);
}
.crm-dropdown-phase {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cdp-primary-color, #1e558c);
  background: #f8fafc;
  cursor: pointer;
  transition: background 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.crm-dropdown-phase:hover {
  background: #e0e7ff;
}
.crm-dropdown-phase::after {
  content: "\2192";
  font-size: 12px;
  color: #94a3b8;
}
.crm-stage-node-in-phase {
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 140px;
  max-width: 180px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  position: relative;
}
.crm-stage-node-in-phase:hover {
  border-color: var(--cdp-primary-color, #1e558c);
  box-shadow: 0 4px 10px rgba(30, 85, 140, 0.15);
}
.crm-stage-node-in-phase.starting {
  border-color: #10b981;
  border-width: 2px;
}
.crm-stage-node-in-phase.orphan {
  border-color: #f59e0b;
  border-style: dashed;
}
.crm-btn-add-phase {
  background: #10b981;
}
.crm-btn-add-phase:hover {
  background: #059669;
}
.crm-no-phases {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #94a3b8;
  font-size: 16px;
  gap: 12px;
}
.crm-no-phases .crm-no-phases-icon {
  width: 60px;
  height: 60px;
  background: #e0e7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--cdp-primary-color, #1e558c);
}

/* app/javascript/DragNdrop/InsurerCommissionDashboard.css */
.cm-root * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.cm-root {
  font-family:
    "Segoe UI",
    system-ui,
    sans-serif;
  background: #F1F5F9;
  color: #111827;
  font-size: 14px;
  display: flex;
  height: 100%;
}
.cm-sidebar {
  width: 220px;
  background: #0F172A;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.cm-sb-brand {
  padding: 18px 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.cm-sb-title {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .8px;
}
.cm-sb-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
  margin-top: 3px;
}
.cm-sb-nav {
  padding: 10px 8px;
  flex: 1;
}
.cm-sb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  font-weight: 400;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: all .15s;
}
.cm-sb-item:hover {
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .8);
}
.cm-sb-item.active {
  background: rgba(255, 255, 255, .13);
  color: #fff;
  font-weight: 600;
}
.cm-sb-badge {
  margin-left: auto;
  font-size: 10px;
  background: rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: 1px 8px;
  color: rgba(255, 255, 255, .7);
}
.cm-sb-footer {
  padding: 10px 16px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
}
.cm-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cm-topbar {
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cm-tb-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}
.cm-tb-sub {
  font-size: 11px;
  color: #6B7280;
  margin-top: 2px;
}
.cm-content {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
}
.cm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  background: #2563EB;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.cm-btn-primary:hover {
  background: #1D4ED8;
}
.cm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.cm-btn-secondary:hover {
  background: #F8FAFC;
}
.cm-btn-danger {
  padding: 6px 12px;
  border-radius: 7px;
  border: 1px solid #FECACA;
  background: #FEF2F2;
  color: #DC2626;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.cm-btn-edit {
  padding: 6px 12px;
  border-radius: 7px;
  border: 1px solid #E2E8F0;
  background: #fff;
  color: #1E558C;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.cm-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px;
}
.cm-filter-bar {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cm-filter-bar input,
.cm-filter-bar select {
  font-size: 13px;
  padding: 7px 10px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  background: #FAFAFA;
  color: #111827;
  outline: none;
  font-family: inherit;
}
.cm-filter-bar input {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}
.cm-filter-bar select {
  min-width: 140px;
}
.cm-tbl-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}
.cm-tbl-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  background: #fff;
}
.cm-tbl-wrap thead tr {
  background: #F8FAFC;
}
.cm-tbl-wrap th {
  padding: 9px 10px;
  text-align: left;
  font-weight: 700;
  color: #6B7280;
  font-size: 11px;
  letter-spacing: .3px;
  border-bottom: 1px solid #E2E8F0;
  white-space: nowrap;
}
.cm-tbl-wrap td {
  padding: 9px 10px;
  border-bottom: 1px solid #F1F5F9;
  vertical-align: middle;
  white-space: nowrap;
}
.cm-tbl-wrap tr:last-child td {
  border-bottom: none;
}
.cm-tbl-wrap tr:hover td {
  background: #FAFBFF;
}
.cm-tbl-wrap tr.inactive td {
  opacity: .6;
  background: #FAFAFA;
}
.cm-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cm-field label {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}
.cm-field .cm-hint {
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 2px;
}
.cm-field .cm-err {
  font-size: 11px;
  color: #DC2626;
  margin-top: 2px;
}
.cm-input {
  width: 100%;
  padding: 8px 10px;
  font-size: 13px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  background: #FAFAFA;
  color: #111827;
  outline: none;
  font-family: inherit;
}
.cm-input:focus {
  border-color: #1E558C;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .08);
}
.cm-input.err {
  border-color: #DC2626;
}
select.cm-input {
  display: block !important;
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
}
.cm-filter-bar select.cm-input {
  display: block !important;
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  width: auto;
  flex: 0 0 auto;
  min-width: 130px;
  max-width: 200px;
}
.cm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.cm-chip {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 20px;
  cursor: pointer;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  color: #6B7280;
}
.cm-chip:hover {
  border-color: #1E558C;
  color: #1E558C;
  background: #EFF6FF;
}
.cm-chip.sel {
  border-color: #1E558C;
  background: #EFF6FF;
  color: #1E558C;
  font-weight: 700;
}
.cm-chip.amber {
  border-color: #FDE68A;
  background: #FFFBEB;
  color: #92400E;
}
.cm-chip.red {
  border-color: #FECACA;
  background: #FEF2F2;
  color: #DC2626;
}
.cm-steps {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
  align-items: center;
}
.cm-step {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cm-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #E2E8F0;
  color: #9CA3AF;
  flex-shrink: 0;
}
.cm-step.done .cm-step-num {
  background: #1E558C;
  border-color: #1E558C;
  color: #fff;
}
.cm-step.current .cm-step-num {
  background: #fff;
  border-color: #1E558C;
  color: #1E558C;
}
.cm-step-label {
  font-size: 12px;
  font-weight: 600;
  color: #9CA3AF;
}
.cm-step.done .cm-step-label,
.cm-step.current .cm-step-label {
  color: #111827;
}
.cm-step-line {
  flex: 1;
  height: 1px;
  background: #E2E8F0;
  margin: 0 8px;
}
.cm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cm-modal {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  width: 440px;
  max-width: 95vw;
}

/* app/javascript/DashboardBuilder/DashboardBuilder.css */
.db-root {
  font-family: Arial, sans-serif;
  border: 1px solid #ccc;
  background: #fff;
}
.modal-box111112 {
  background: white;
  width: 90vw;
  max-height: 95vh;
  border-radius: 6px;
  overflow: hidden;
}
.db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #ccc;
}
.db-header-title {
  font-size: 18px;
  font-weight: 600;
}
.db-body {
  display: flex;
  min-height: 350px;
}
.db-sidebar {
  width: 200px;
  padding: 12px 0px;
  padding-top: 0px;
}
.db-sidebar-title {
  font-size: 14px;
  font-weight: 600;
}
.db-page-list {
  position: relative;
  padding-bottom: 10px;
  max-height: 58vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.db-page-item {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.db-page-item:hover {
  background-color: var(--active-bg) !important;
  font-weight: 600;
  color: white !important;
}
.hoverListItem {
  padding: 6px 8px;
  border: 1px solid var(--active-bg) !important;
  margin: 2px;
  border-radius: 3px !important;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.hoverListItem:hover {
  background-color: var(--active-bg);
  color: white !important;
}
.db-page-active {
  background: #f0f0f0;
  font-weight: 600;
}
.db-content {
  flex: 1;
  padding: 10px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  align-items: start;
}
.db-content-title {
  font-size: 15px;
  font-weight: 600;
}
.db-dashboard-grid {
  display: flex;
  gap: 16px;
  margin: 12px 0;
}
.db-dashboard-card {
  width: 180px;
  border: 1px solid #aaa;
  padding: 12px;
  background: #fafafa;
}
.db-report-card {
  min-height: 140px;
  position: relative;
  border-radius: 9px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  word-wrap: break-word;
}
.db-card-title {
  font-size: 14px;
  font-weight: 600;
}
.db-card-subtitle {
  font-size: 12px;
  color: #666;
}
.db-dashboard-actions {
  margin: 8px 0 16px 0;
}
.db-action {
  margin-right: 12px;
  cursor: pointer;
  font-size: 13px;
  color: #007bff;
}
.db-action-delete {
  color: #d9534f;
}
.db-btn {
  font-size: 13px;
  cursor: pointer;
  padding: 6px 12px;
}
.db-btn-primary {
  background: #007bff;
  color: #fff;
  border: none;
}
.db-btn-secondary {
  background: #f8f9fa;
  border: 1px solid #ccc;
}
.db-btn-link {
  background: none;
  border: none;
  color: #007bff;
  padding: 0;
}
.font_weight_300 {
  font-weight: 300 !important;
}
.center::-moz-placeholder {
  text-align: center !important;
}
.center::placeholder {
  text-align: center !important;
}
.center {
  font-weight: 600 !important;
}
.cardbutton {
  border-radius: 50%;
}
.db-report-card {
  background-color: #deeef7;
  box-shadow:
    0 2px 2px rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px rgba(0, 0, 0, 0.2);
}
.db-derived-row {
  min-height: 50px;
}
.report-drag-handle:hover {
  opacity: 0.8;
}
.report-drag-handle:active {
  cursor: grabbing;
}
.drag-overlay-card {
  pointer-events: none;
  z-index: 100;
}
.modal-box111112 .form-field1111 label {
  flex-basis: 120px;
  flex-shrink: 0;
  flex-grow: 0;
  font-size: 0.85rem;
}
.modal-box111112 .form-field1111 {
  align-items: flex-start;
}
.modal-box111112 .form-group1111 {
  gap: 12px;
}
.db-sidebar-resizable {
  position: relative;
  min-width: 180px;
  max-width: 400px;
  transition: none;
}
.db-sidebar-resize-handle {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  cursor: ew-resize;
  background: transparent;
  z-index: 10;
  transition: background-color 0.2s ease;
}
.db-sidebar-resize-handle:hover,
.db-sidebar-resize-handle.dragging {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(0, 0, 0, 0.1),
      transparent);
}
.db-sidebar-resize-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 30px;
  background: #ccc;
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.db-sidebar-resize-handle:hover::after,
.db-sidebar-resize-handle.dragging::after {
  opacity: 1;
}
.db-report-tooltip {
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 12px;
  min-width: 200px;
  max-width: 300px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.db-report-tooltip::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent #333 transparent transparent;
}
.db-page-item:hover .db-report-tooltip {
  opacity: 1;
  visibility: visible;
}
.db-report-tooltip-title {
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
  word-break: break-word;
}
.db-report-tooltip-desc {
  color: #ccc;
  font-size: 11px;
  line-height: 1.4;
  word-break: break-word;
}
.db-report-tooltip-no-desc {
  color: #999;
  font-style: italic;
  font-size: 11px;
}
.db-page-item-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* app/javascript/DashboardBuilder/ReportConfigForm.css */
#rc-modal-overlay {
  z-index: 10000;
}
#rc-modal-box {
  background: #fff;
  width: 65vw;
  max-width: 850px;
  max-height: 85vh;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
#rc-modal-body {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 20px;
}
.rc-field-row {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  gap: 0;
}
.rc-field-label {
  flex-basis: 30%;
  min-width: 30%;
  padding: 10px 12px;
  background-color: #edf0f1ee;
  font-size: 0.95rem;
  color: gray;
  display: flex;
  align-items: center;
}
.rc-field-value {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0px 10px;
  min-width: 0;
}
.rc-field-value input[type=text],
.rc-field-value input[type=number] {
  flex: 1;
  width: auto;
  min-width: 0;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.95rem;
  background: #fff;
  outline: none;
}
.rc-field-value input[type=text]:focus,
.rc-field-value input[type=number]:focus {
  border-color: #999;
}
.rc-color-swatch {
  width: 34px;
  min-width: 34px;
  height: 34px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  padding: 2px;
}
.rc-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rc-upload-img {
  width: 36px;
  min-width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s;
  display: block;
}
.rc-upload-img:active {
  opacity: 0.6;
}
.rc-icon-delete {
  position: absolute;
  top: 0px;
  right: -10px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #e53935;
  color: #fff;
  border: none;
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 1;
}
.rc-icon-delete:hover {
  background: #b71c1c;
}
#rc-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}

/* app/javascript/DashboardBuilder/VisualFilterBuilder.css */
.vfb-container {
  width: 85vw;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.vfb-mode-toggle {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  background: #f8f9fa;
}
.vfb-mode-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #6c757d;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.vfb-mode-btn:hover {
  background: #e9ecef;
}
.vfb-mode-btn.active {
  color: #1976d2;
  background: #fff;
  border-bottom-color: #1976d2;
}
.vfb-visual-mode {
  padding: 16px;
}
.vfb-fields-row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.vfb-field-col {
  flex: 1;
  min-width: 0;
}
.vfb-field-col-wide {
  flex: 2;
}
.vfb-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vfb-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 13px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  height: 38px;
}
.vfb-input:focus {
  outline: none;
  border-color: #1976d2;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}
.vfb-input:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}
.vfb-selected-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  margin-top: 12px;
}
.vfb-selected-label {
  font-size: 11px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  align-self: center;
}
.vfb-selected-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.vfb-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid;
  background: #fff;
}
.vfb-filter-member {
  font-weight: 500;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vfb-filter-operator {
  font-size: 10px;
  padding: 1px 6px;
  background: #e3f2fd;
  color: #1976d2;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
}
.vfb-filter-options {
  font-size: 11px;
  color: #666;
  background: #f5f5f5;
  padding: 2px 6px;
  border-radius: 4px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.vfb-filter-options:hover {
  background: #e0e0e0;
}
.vfb-add-options-btn {
  font-size: 10px;
  padding: 2px 6px;
  background: transparent;
  border: 1px dashed #999;
  color: #666;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
}
.vfb-add-options-btn:hover {
  background: #f0f0f0;
  border-style: solid;
}
.vfb-tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}
.vfb-tag-remove:hover {
  opacity: 1;
}
.vfb-edit-options {
  margin-top: 12px;
  padding: 12px;
  background: #fff3cd;
  border-radius: 6px;
  border: 1px solid #ffc107;
}
.vfb-edit-options-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.vfb-edit-options-row .vfb-input {
  flex: 1;
}
.vfb-save-btn {
  padding: 8px 16px;
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}
.vfb-save-btn:hover {
  background: #218838;
}
.vfb-cancel-btn {
  padding: 8px 16px;
  background: #6c757d;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}
.vfb-cancel-btn:hover {
  background: #5a6268;
}
.vfb-value-type-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vfb-value-type-toggle {
  display: inline-flex;
  border: 1px solid #ced4da;
  border-radius: 4px;
  overflow: hidden;
  align-self: flex-start;
}
.vfb-value-type-btn {
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  border: none;
  background: #f8f9fa;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.vfb-value-type-btn:not(:last-child) {
  border-right: 1px solid #ced4da;
}
.vfb-value-type-btn:hover {
  background: #e9ecef;
}
.vfb-value-type-btn.active {
  background: #1976d2;
  color: #fff;
}
.vfb-value-type-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.vfb-sysvar-badge {
  font-size: 9px;
  padding: 1px 5px;
  background: #7c3aed;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vfb-reorder-arrows {
  display: inline-flex;
  gap: 1px;
  margin-right: 2px;
}
.vfb-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 1px solid #d1d5db;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: 3px;
  cursor: pointer;
  font-size: 10px;
  line-height: 1;
  transition: all 0.15s;
}
.vfb-arrow-btn:hover:not(:disabled) {
  background: #e5e7eb;
  color: #374151;
  border-color: #9ca3af;
}
.vfb-arrow-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.vfb-empty {
  padding: 24px;
  text-align: center;
  color: #6c757d;
  font-size: 14px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px dashed #ced4da;
}
.vfb-loading {
  padding: 12px;
  text-align: center;
  color: #6c757d;
  font-style: italic;
}
.vfb-warning {
  padding: 10px 12px;
  background: #fff3cd;
  color: #856404;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 13px;
}
.vfb-error {
  padding: 10px 12px;
  background: #f8d7da;
  color: #721c24;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 13px;
}
.vfb-json-mode {
}
@media (max-width: 1200px) {
  .vfb-fields-row {
    flex-wrap: wrap;
  }
  .vfb-field-col {
    flex: 1 1 calc(50% - 8px);
    min-width: 200px;
  }
  .vfb-field-col-wide {
    flex: 1 1 calc(50% - 8px);
  }
}
@media (max-width: 768px) {
  .vfb-container {
    width: 100%;
  }
  .vfb-field-col {
    flex: 1 1 100%;
  }
  .vfb-field-col-wide {
    flex: 1 1 100%;
  }
  .vfb-filter-member {
    max-width: 120px;
  }
}

/* app/javascript/DashboardBuilder/VisualQueryBuilder.css */
.vqb-container {
  width: 85vw;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.vqb-mode-toggle {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  background: #f8f9fa;
}
.vqb-mode-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #6c757d;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.vqb-mode-btn:hover {
  background: #e9ecef;
}
.vqb-mode-btn.active {
  color: #1976d2;
  background: #fff;
  border-bottom-color: #1976d2;
}
.vqb-visual-mode {
  padding: 16px;
}
.vqb-fields-row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.vqb-field-col {
  flex: 1;
  min-width: 0;
}
.vqb-field-group {
  margin-bottom: 16px;
}
.vqb-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vqb-loading {
  padding: 12px;
  text-align: center;
  color: #6c757d;
  font-style: italic;
}
.vqb-warning {
  padding: 10px 12px;
  background: #fff3cd;
  color: #856404;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 13px;
}
.vqb-error {
  padding: 10px 12px;
  background: #f8d7da;
  color: #721c24;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 13px;
}
.vqb-selected-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  margin-bottom: 12px;
}
.vqb-selected-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.vqb-selected-label {
  font-size: 11px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
}
.vqb-selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.vqb-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-size: 11px;
  border-radius: 12px;
  border: 1px solid;
  background: transparent;
}
.vqb-tag.measure-tag {
  border-color: #10b981;
  color: #10b981;
}
.vqb-tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}
.vqb-tag-remove:hover {
  opacity: 1;
}
.vqb-tag.measure-tag .vqb-tag-remove {
  color: #10b981;
}
.vqb-json-mode {
}
.vqb-collapsed-view {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  background: #f8f9fa;
  border-radius: 6px;
}
.vqb-collapsed-view .vqb-selected-summary {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
}
.vqb-edit-btn {
  flex-shrink: 0;
}
.vqb-edit-btn:hover {
  opacity: 0.9;
}
@media (max-width: 1200px) {
  .vqb-fields-row {
    flex-wrap: wrap;
  }
  .vqb-field-col {
    flex: 1 1 calc(50% - 8px);
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .vqb-field-col {
    flex: 1 1 100%;
  }
}

/* app/javascript/DashboardBuilder/VisualTimeDimensionBuilder.css */
.vtdb-container {
  width: 85vw;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.vtdb-mode-toggle {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  background: #f8f9fa;
}
.vtdb-mode-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #6c757d;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.vtdb-mode-btn:hover {
  background: #e9ecef;
}
.vtdb-mode-btn.active {
  color: #0891b2;
  background: #fff;
  border-bottom-color: #0891b2;
}
.vtdb-visual-mode {
  padding: 16px;
}
.vtdb-fields-row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.vtdb-field-col {
  flex: 1;
  min-width: 0;
}
.vtdb-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vtdb-collapsed-view {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.vtdb-selected-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 12px;
  background: #f0fdfa;
  border-radius: 6px;
  margin-top: 12px;
}
.vtdb-selected-label {
  font-size: 11px;
  font-weight: 600;
  color: #0891b2;
  text-transform: uppercase;
  align-self: center;
}
.vtdb-selected-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.vtdb-td-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid;
  background: #fff;
}
.vtdb-td-dimension {
  font-weight: 500;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vtdb-td-badge {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
}
.vtdb-granularity {
  background: #ecfeff;
  color: #0891b2;
}
.vtdb-daterange {
  background: #fef3c7;
  color: #92400e;
}
.vtdb-td-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.vtdb-td-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid;
}
.vtdb-td-row .vtdb-td-dimension {
  flex: 1;
  min-width: 0;
}
.vtdb-td-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vtdb-tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  padding: 0;
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}
.vtdb-tag-remove:hover {
  opacity: 1;
}
.vtdb-empty {
  padding: 24px;
  text-align: center;
  color: #6c757d;
  font-size: 14px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px dashed #ced4da;
}
.vtdb-loading {
  padding: 12px;
  text-align: center;
  color: #6c757d;
  font-style: italic;
}
.vtdb-warning {
  padding: 10px 12px;
  background: #fff3cd;
  color: #856404;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 13px;
}
.vtdb-error {
  padding: 10px 12px;
  background: #f8d7da;
  color: #721c24;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 13px;
}
.vtdb-json-mode {
}
@media (max-width: 1200px) {
  .vtdb-fields-row {
    flex-wrap: wrap;
  }
  .vtdb-field-col {
    flex: 1 1 calc(50% - 8px);
    min-width: 150px;
  }
}
@media (max-width: 768px) {
  .vtdb-container {
    width: 100%;
  }
  .vtdb-field-col {
    flex: 1 1 100%;
  }
  .vtdb-td-dimension {
    max-width: 120px;
  }
  .vtdb-td-row {
    flex-wrap: wrap;
  }
  .vtdb-td-controls {
    flex-wrap: wrap;
    width: 100%;
  }
}

/* node_modules/react-datepicker/dist/react-datepicker.css */
.react-datepicker__navigation-icon::before,
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  border-color: #ccc;
  border-style: solid;
  border-width: 3px 3px 0 0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 6px;
  width: 9px;
}
.react-datepicker__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.react-datepicker-wrapper {
  display: inline-block;
  padding: 0;
  border: 0;
}
.react-datepicker {
  font-family:
    "Helvetica Neue",
    helvetica,
    arial,
    sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
  line-height: initial;
}
.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}
.react-datepicker--time-only .react-datepicker__time,
.react-datepicker--time-only .react-datepicker__time-box {
  border-bottom-left-radius: 0.375em;
  border-bottom-right-radius: 0.375em;
}
.react-datepicker-popper {
  z-index: 1;
  line-height: 0;
}
.react-datepicker-popper .react-datepicker__triangle {
  stroke: #aeaeae;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  fill: #f0f0f0;
  color: #f0f0f0;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
  fill: #fff;
  color: #fff;
}
.react-datepicker-popper--header-middle[data-placement^=bottom] .react-datepicker__triangle,
.react-datepicker-popper--header-bottom[data-placement^=bottom] .react-datepicker__triangle {
  fill: #fff;
  color: #fff;
}
.react-datepicker-popper--header-bottom[data-placement^=top] .react-datepicker__triangle {
  fill: #f0f0f0;
  color: #f0f0f0;
}
.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  padding: 8px 0;
  position: relative;
}
.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}
.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
  border-top-left-radius: 0;
}
.react-datepicker__header:not(.react-datepicker__header--has-time-select, .react-datepicker__header--middle, .react-datepicker__header--bottom) {
  border-top-right-radius: 0.3rem;
}
.react-datepicker__header--middle {
  border-top: 1px solid #aeaeae;
  border-radius: 0;
  margin-top: 4px;
}
.react-datepicker__header--bottom {
  border-bottom: none;
  border-top: 1px solid #aeaeae;
  border-radius: 0 0 0.3rem 0.3rem;
}
.react-datepicker__header-wrapper {
  position: relative;
}
.react-datepicker__header-wrapper .react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 2px;
}
.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 15px;
}
.react-datepicker__month-select,
.react-datepicker__year-select,
.react-datepicker__month-year-select {
  background-color: transparent;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  margin-top: 5px;
  padding: 2px 5px;
}
.react-datepicker__month-select:focus-visible,
.react-datepicker__year-select:focus-visible,
.react-datepicker__month-year-select:focus-visible {
  outline: auto 1px;
}
.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem;
}
h2.react-datepicker__current-month {
  padding: 0;
  margin: 0;
}
.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.react-datepicker__navigation {
  align-items: center;
  background: none;
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 2px;
  padding: 0;
  border: none;
  z-index: 1;
  height: 32px;
  width: 32px;
  text-indent: -999em;
  overflow: hidden;
}
.react-datepicker__navigation--previous {
  left: 2px;
}
.react-datepicker__navigation--next {
  right: 2px;
}
.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 85px;
}
.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__navigation--years-previous {
  top: 4px;
}
.react-datepicker__navigation--years-upcoming {
  top: -4px;
}
.react-datepicker__navigation:hover *::before {
  border-color: rgb(165.75, 165.75, 165.75);
}
.react-datepicker__navigation-icon {
  position: relative;
  top: -1px;
  font-size: 20px;
  width: 0;
}
.react-datepicker__navigation-icon--next {
  left: -2px;
}
.react-datepicker__navigation-icon--next::before {
  transform: rotate(45deg);
  left: -7px;
}
.react-datepicker__navigation-icon--previous {
  right: -2px;
}
.react-datepicker__navigation-icon--previous::before {
  transform: rotate(225deg);
  right: -7px;
}
.react-datepicker__month-container {
  float: left;
}
.react-datepicker__year {
  margin: 0.5em;
  text-align: center;
}
.react-datepicker__year-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 180px;
}
.react-datepicker__year .react-datepicker__year-text {
  display: inline-block;
  width: 5em;
  margin: 2px;
}
.react-datepicker__month {
  margin: 0.5em;
  text-align: center;
}
.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  width: 5em;
  margin: 2px;
}
.react-datepicker__input-time-container {
  clear: both;
  width: 100%;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
}
.react-datepicker__input-time-container .react-datepicker-time__caption {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
  width: auto;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
  -moz-appearance: textfield;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
  margin-left: 5px;
  display: inline-block;
}
.react-datepicker__time-container {
  float: right;
  border-left: 1px solid #aeaeae;
  width: 85px;
}
.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.375em;
  position: absolute;
  right: -87px;
  top: 0;
}
.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
  border-bottom-right-radius: 0.375em;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 85px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
  border-bottom-right-radius: 0.375em;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + 2.125em / 2);
  overflow-y: scroll;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  box-sizing: content-box;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: white;
  font-weight: bold;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}
.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 2.125em;
  line-height: 2.125em;
  text-align: center;
  margin: 0.208em;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected):hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__week-number--selected {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__week-number--selected:hover {
  background-color: rgb(28.75, 93.2196969697, 143.75);
}
.react-datepicker__day-names {
  text-align: center;
  white-space: nowrap;
  margin-bottom: -8px;
}
.react-datepicker__week {
  white-space: nowrap;
}
.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  width: 2.125em;
  line-height: 2.125em;
  text-align: center;
  margin: 0.208em;
}
.react-datepicker__day-name--disabled,
.react-datepicker__day--disabled,
.react-datepicker__time-name--disabled {
  cursor: default;
  color: #ccc;
}
.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text {
  cursor: pointer;
}
.react-datepicker__day:not([aria-disabled=true]):hover,
.react-datepicker__month-text:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text:not([aria-disabled=true]):hover,
.react-datepicker__year-text:not([aria-disabled=true]):hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today,
.react-datepicker__year-text--today {
  font-weight: bold;
}
.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted,
.react-datepicker__year-text--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff;
}
.react-datepicker__day--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__month-text--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__year-text--highlighted:not([aria-disabled=true]):hover {
  background-color: rgb(49.8551020408, 189.6448979592, 62.5632653061);
}
.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1,
.react-datepicker__year-text--highlighted-custom-1 {
  color: magenta;
}
.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2,
.react-datepicker__year-text--highlighted-custom-2 {
  color: green;
}
.react-datepicker__day--holidays,
.react-datepicker__month-text--holidays,
.react-datepicker__quarter-text--holidays,
.react-datepicker__year-text--holidays {
  position: relative;
  border-radius: 0.3rem;
  background-color: #ff6803;
  color: #fff;
}
.react-datepicker__day--holidays .overlay,
.react-datepicker__month-text--holidays .overlay,
.react-datepicker__quarter-text--holidays .overlay,
.react-datepicker__year-text--holidays .overlay {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}
.react-datepicker__day--holidays:not([aria-disabled=true]):hover,
.react-datepicker__month-text--holidays:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--holidays:not([aria-disabled=true]):hover,
.react-datepicker__year-text--holidays:not([aria-disabled=true]):hover {
  background-color: rgb(207, 82.9642857143, 0);
}
.react-datepicker__day--holidays:hover .overlay,
.react-datepicker__month-text--holidays:hover .overlay,
.react-datepicker__quarter-text--holidays:hover .overlay,
.react-datepicker__year-text--holidays:hover .overlay {
  visibility: visible;
  opacity: 1;
}
.react-datepicker__day--selected,
.react-datepicker__day--in-selecting-range,
.react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--selected,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__day--selected:not([aria-disabled=true]):hover,
.react-datepicker__day--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__day--in-range:not([aria-disabled=true]):hover,
.react-datepicker__month-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__month-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__month-text--in-range:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--in-range:not([aria-disabled=true]):hover,
.react-datepicker__year-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__year-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__year-text--in-range:not([aria-disabled=true]):hover {
  background-color: rgb(28.75, 93.2196969697, 143.75);
}
.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
  border-radius: 0.3rem;
  background-color: rgb(186.25, 217.0833333333, 241.25);
  color: rgb(0, 0, 0);
}
.react-datepicker__day--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__month-text--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__year-text--keyboard-selected:not([aria-disabled=true]):hover {
  background-color: rgb(28.75, 93.2196969697, 143.75);
  color: #fff;
}
.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range, .react-datepicker__month-text--in-range, .react-datepicker__quarter-text--in-range, .react-datepicker__year-text--in-range),
.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range, .react-datepicker__month-text--in-range, .react-datepicker__quarter-text--in-range, .react-datepicker__year-text--in-range),
.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range, .react-datepicker__month-text--in-range, .react-datepicker__quarter-text--in-range, .react-datepicker__year-text--in-range),
.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range, .react-datepicker__month-text--in-range, .react-datepicker__quarter-text--in-range, .react-datepicker__year-text--in-range) {
  background-color: rgba(33, 107, 165, 0.5);
}
.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range) {
  background-color: #f0f0f0;
  color: #000;
}
.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
  cursor: default;
  color: #ccc;
}
.react-datepicker__day--disabled .overlay,
.react-datepicker__month-text--disabled .overlay,
.react-datepicker__quarter-text--disabled .overlay,
.react-datepicker__year-text--disabled .overlay {
  position: absolute;
  bottom: 70%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}
.react-datepicker__input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.react-datepicker__input-container .react-datepicker__calendar-icon {
  position: absolute;
  padding: 0.625em;
  box-sizing: content-box;
}
.react-datepicker__view-calendar-icon input {
  padding: 6px 10px 5px 25px;
}
.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
  position: relative;
}
.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}
.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: rgb(178.5, 178.5, 178.5);
}
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  transform: rotate(135deg);
  right: -16px;
  top: 0;
}
.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}
.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}
.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}
.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: #ccc;
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: rgb(178.5, 178.5, 178.5);
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: rgb(178.5, 178.5, 178.5);
}
.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}
.react-datepicker__close-icon {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 6px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.react-datepicker__close-icon::after {
  cursor: pointer;
  background-color: #216ba5;
  color: #fff;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  content: "\d7";
}
.react-datepicker__close-icon--disabled {
  cursor: default;
}
.react-datepicker__close-icon--disabled::after {
  cursor: default;
  background-color: #ccc;
}
.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}
.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}
.react-datepicker__children-container {
  width: 17.25em;
  margin: 0.5em;
  padding-right: 0.25em;
  padding-left: 0.25em;
  height: auto;
}
.react-datepicker__aria-live {
  position: absolute;
  clip-path: circle(0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
  white-space: nowrap;
}
.react-datepicker__calendar-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}
.react-datepicker-popper-offset {
  margin-top: -0.7em;
}

/* app/javascript/Carer/PatientDetails.css */
.patient-details-container-react {
  padding: 0 1rem;
  background-color: #f9f9f9;
  color: #333;
  margin: auto;
  overflow-y: auto;
  max-height: calc(100vh - 99px);
}
.pd-header-react {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  background-color: #354476;
  position: sticky;
  top: 0;
}
.pd-back-button-react {
  font-size: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 1rem;
  color: white;
  font-size: 30px;
  padding: 0px;
  margin: 0px;
}
.pd-header-react h1 {
  margin: 0;
  padding-left: 0%;
  color: #fcfbfa;
}
.img-class-react {
  width: 60%;
  height: 100%;
}
@media (max-width: 768px) {
  .img-class-react {
    width: 80%;
    height: 100%;
  }
}
.pd-profile-section-react {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
.pd-profile-picture-react {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.pd-profile-info-react {
  flex: 1;
  margin: 0 1rem;
}
.pd-medical-condition-react span {
  font-weight: bold;
}
.pd-actions-react {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pd-action-btn-react {
  font-size: 1.5rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.pd-contact-section-react,
.pd-booking-section-react,
.tasks-section-react {
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
.pd-contact-details-react {
  justify-content: space-between;
  align-items: center;
}
.pd-contact-details-react p {
  margin: 0.5rem 0;
}
.map-btn-react {
  font-size: 1.5rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.pd-status-react {
  float: right;
  font-weight: bold;
}
.pd-confirmed-react {
  color: green;
}
.pd-tasks-table-react {
  width: 100%;
  border-collapse: collapse;
}
.pd-tasks-table-react th,
.pd-tasks-table-react td {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.pd-tasks-table-react th {
  background-color: #f2f2f2;
}
.pd-footer-react {
  display: flex;
  justify-content: center;
}
.pd-timeout-btn-react {
  padding: 8px 30px;
  font-size: 1rem;
  border: 1px solid gray;
  border-radius: 8px;
  background: #e0e0e0;
  cursor: pointer;
  width: auto;
  transition: background-color 0.3s, transform 0.2s;
}
.pd-timeout-btn-react:active {
  background-color: #d0d0d0;
  transform: scale(0.95);
}
.img-age-react {
  display: flex;
  gap: 10px;
  margin: 0 2rem;
}
.pd-contact-sec-react {
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
.img-age-react div {
  width: 60%;
}
.cont-fam-react {
  width: 60%;
}
.med-cond-react {
  background-color: beige;
  margin-top: 41px;
  padding: 10px;
  width: 100% !important;
  border-radius: 10px;
}
.status-icons-react {
  display: flex;
  gap: 10px;
  align-items: center;
}
.status-icon-react {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.status-icon-react:hover {
  transform: scale(1.1);
}
.status-icon-react.check {
  background-color: #e0e0e0;
}
.status-icon-react.check.selected {
  background-color: #4CAF50;
}
.status-icon-react.cross {
  background-color: #e0e0e0;
}
.status-icon-react.cross.selected {
  background-color: #f44336;
}

/* app/javascript/Carer/FamilyContactModal.css */
.fc-modal-content-react {
  width: 50vw;
  height: 65vh;
  background: white;
  padding: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow-y: auto;
}
.fc-modal-overlay-react {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  top: 0;
  left: 0;
}
.fc-head_patch-react {
  padding: 3px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  background:
    linear-gradient(
      to left,
      #148dcc 0%,
      #00ad51 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10%;
}
.fc-popCloseTag-react {
  color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  height: 25px;
  width: 25px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
}
.fc-content-area-react {
  width: 100%;
  height: 90%;
  display: flex;
  flex-flow: column;
}
.fc-bottomBar-react {
  height: 12%;
  display: flex;
  justify-content: space-between;
  padding: 0px 15px;
  align-items: center;
}
.fc-tasks-section-react {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .fc-modal-content-react {
    height: auto;
    padding-bottom: 6px;
    position: absolute;
    top: 40% !important;
    width: 90%;
  }
}

/* app/javascript/Carer/ContactModal.css */
@media (max-width: 768px) {
  .fc-modal-content-react {
    height: auto;
    padding-bottom: 6px;
    position: absolute;
    top: 40% !important;
    width: 90%;
  }
}

/* app/javascript/Carer/StatusIcons.css */
.status-icons-react {
  display: flex;
  gap: 10px;
  align-items: center;
}
.status-icon-react {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.status-icon-react:hover {
  transform: scale(1.1);
}
.status-icon-react.check {
  background-color: #167919;
  border: 1px solid #6c757d;
}
.status-icon-react.check.selected {
  background-color: #167919;
}
.status-icon-react.cross {
  background-color: #ad1207;
  border: 1px solid #6c757d;
}
.status-icon-react.cross.selected {
  background-color: #ad1207;
}

/* app/javascript/Carer/InOutConfirmationModal.css */
.dlt-modal-overlay-react {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  top: 0;
  left: 0;
}
.dlt-modal-contentD-react {
  width: 35vw;
  height: 65vh;
  background: white;
  padding: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow-y: auto;
  text-align: center;
}
.bg_red {
  background-color: red !important;
}
@media (max-width: 768px) {
  .dlt-modal-contentD-react {
    width: 85vw;
  }
}
.dlt-close-button-react {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.dlt-head_patchTD-react {
  padding: 3px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10%;
}
.dlt-content-areaD-react {
  width: 100%;
  height: 90%;
  display: flex;
  flex-flow: column;
}
.dlt-head_patch-react {
  padding: 5px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10%;
}
.dlt-containerD-react {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  padding: 10px;
  height: -moz-fit-content;
  height: fit-content;
  height: 15%;
}
.header_footer-react {
  height: 50%;
  border: 1px solid gray;
  margin: 5px 20px;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 40px;
}
.filedWith-react {
  width: 40%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 2.7px;
  border-bottom: 1px solid gray;
  margin: 0px 37px 10px 7.5px;
}
.dlt-bottomBar-react {
  height: 12%;
  display: flex;
  justify-content: space-between;
  padding: 0px 15px;
  align-items: center;
}

/* app/javascript/Carer/LocationErrorModal.css */
.modal-overlay-react {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.loc-error-modal-content-react {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}
.loc-error-modal-content-react button {
  margin-top: 15px;
  padding: 8px 20px;
  background-color: #5bc35b;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .fc-modal-content-react {
    height: auto;
    padding-bottom: 6px;
    position: absolute;
    top: 40% !important;
    width: 90%;
  }
}
.fc-bottomBar-error-react {
  height: 12%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fc-head_patch-error-react {
  padding: 3px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  background:
    linear-gradient(
      to left,
      #148dcc 0%,
      #00ad51 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6%;
}

/* app/javascript/Carer/LocationMapModal.css */
.locmap-modal-content-react {
  width: 64vw;
  height: 95vh;
  background: white;
  padding: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
  outline: 0;
}
.modal-area1-react {
  height: 50vh;
  z-index: 100000;
}
.modal-area2-react {
  position: absolute;
  width: 95% !important;
  height: 91% !important;
}
.close-btn-react {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #333;
}
.close-btn-react:hover {
  color: red;
}
.fc-head_patch-react {
  padding: 3px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  background:
    linear-gradient(
      to left,
      #148dcc 0%,
      #00ad51 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6%;
}
.fc-popCloseTag-react {
  color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  height: 25px;
  width: 25px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 768px) {
  .locmap-modal-content-react {
    background-color: #fff;
    width: 97%;
    max-width: 800px;
    border-radius: 8px;
    padding: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1001;
    height: 65%;
  }
}
.dir-modal-content-react button {
  margin-top: 15px;
  padding: 2px 8px;
  background-color: #5077a2;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.map-controls-react {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.direction-btn-react,
.start-nav-btn-react {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.direction-btn-react {
  background-color: #5bc35b;
  color: white;
}
.start-nav-btn-react {
  background-color: #007bff;
  color: white;
}
.start-nav-btn-react:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

/* app/javascript/Carer/Carer.css */
@media (min-width: 768px) and (max-width: 1024px) {
  .form-buttons2-react {
    margin-top: 2px !important;
  }
}
.date-picker-react {
  display: none;
  opacity: 0;
  position: relative;
  top: -26px;
  height: 30px !important;
  right: 10px;
}
@media (max-width: 768px) {
  .form-buttons2-react {
    margin-bottom: 8px !important;
    display: flex;
    justify-content: end;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .date-range-react {
    display: flex !important;
    gap: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .date-range-react {
    display: flex !important;
    gap: 10px;
  }
}
.calendar-icon-react {
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin-left: 85%;
  margin-top: -33%;
}
.form-group2-react {
  height: 70px;
}
#height27 {
  height: 30px !important;
  background: #f3f3f3 !important;
}
.apnmt-div-react {
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  min-height: auto;
}
.month-header2-react {
  position: sticky;
  top: -1px;
  z-index: 10;
  font-size: 22px;
  color: #2c2323;
  background-color: #eae3e3;
  padding: 7px 15px;
  text-align: left;
  border-radius: 5px;
  margin-bottom: 5px;
}
.calendar-row2-react {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid #f0eded;
}
.date-column2 {
  text-align: center;
  width: 70px;
}
.date2-react {
  font-size: 25px;
  font-weight: bold !important;
}
.name-link-react:hover {
  border-radius: 4px;
  transition: all 0.2s ease;
}
.link-view-react {
  width: 50%;
  cursor: pointer;
  color: rgb(42, 50, 57);
  display: inline-block;
  font-size: medium;
}
.day2-react {
  font-size: 16px;
  color: gray;
}
.grid-span-react {
  display: grid;
}
.appointments-column2-react {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.appointment2-react {
  background-color: #90ee90;
  border-radius: 4px;
  padding: 5px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .month-header2-react {
    position: sticky;
    top: -1px;
    z-index: 0;
    font-size: 22px;
    color: #2c2323;
    background-color: #eae3e3;
    padding: 7px 15px;
    text-align: left;
    border-radius: 5px;
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  .schedule-container2-react {
    padding: 10px;
    max-width: 100%;
    margin-top: 4vh;
  }
  .search-container2-react {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .schedule-container2-react {
    padding: 15px;
    max-width: 90%;
    margin-top: 4vh;
  }
  .search-container2-react {
    width: 70%;
    gap: 15px;
  }
}
@media (min-width: 1024px) {
  .schedule-container2-react {
    padding: 20px;
    max-width: 1200px;
  }
  .search-container2-react {
    width: 50%;
    gap: 20px;
  }
}

/* node_modules/rc-slider/assets/index.css */
.rc-slider {
  position: relative;
  width: 100%;
  height: 14px;
  padding: 5px 0;
  border-radius: 6px;
  touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-rail {
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #e9e9e9;
  border-radius: 6px;
}
.rc-slider-track,
.rc-slider-tracks {
  position: absolute;
  height: 4px;
  background-color: #abe2fb;
  border-radius: 6px;
}
.rc-slider-track-draggable {
  z-index: 1;
  box-sizing: content-box;
  background-clip: content-box;
  border-top: 5px solid rgba(0, 0, 0, 0);
  border-bottom: 5px solid rgba(0, 0, 0, 0);
  transform: translateY(-5px);
}
.rc-slider-handle {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin-top: -5px;
  background-color: #fff;
  border: solid 2px #96dbfa;
  border-radius: 50%;
  cursor: pointer;
  cursor: grab;
  opacity: 0.8;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  touch-action: pan-x;
}
.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
  border-color: #57c5f7;
  box-shadow: 0 0 0 5px #96dbfa;
}
.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging-delete {
  opacity: 0;
}
.rc-slider-handle:focus {
  outline: none;
  box-shadow: none;
}
.rc-slider-handle:focus-visible {
  border-color: #2db7f5;
  box-shadow: 0 0 0 3px #96dbfa;
}
.rc-slider-handle-click-focused:focus {
  border-color: #96dbfa;
  box-shadow: unset;
}
.rc-slider-handle:hover {
  border-color: #57c5f7;
}
.rc-slider-handle:active {
  border-color: #57c5f7;
  box-shadow: 0 0 5px #57c5f7;
  cursor: grabbing;
}
.rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px;
}
.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  color: #999;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}
.rc-slider-mark-text-active {
  color: #666;
}
.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}
.rc-slider-dot {
  position: absolute;
  bottom: -2px;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  background-color: #fff;
  border: 2px solid #e9e9e9;
  border-radius: 50%;
  cursor: pointer;
}
.rc-slider-dot-active {
  border-color: #96dbfa;
}
.rc-slider-dot-reverse {
  margin-right: -4px;
}
.rc-slider-disabled {
  background-color: #e9e9e9;
}
.rc-slider-disabled .rc-slider-track {
  background-color: #ccc;
}
.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
  background-color: #fff;
  border-color: #ccc;
  box-shadow: none;
  cursor: not-allowed;
}
.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}
.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px;
}
.rc-slider-vertical .rc-slider-rail {
  width: 4px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-track {
  bottom: 0;
  left: 5px;
  width: 4px;
}
.rc-slider-vertical .rc-slider-track-draggable {
  border-top: 0;
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-bottom: 0;
  border-left: 5px solid rgba(0, 0, 0, 0);
  transform: translateX(-5px);
}
.rc-slider-vertical .rc-slider-handle {
  position: absolute;
  z-index: 1;
  margin-top: 0;
  margin-left: -5px;
  touch-action: pan-y;
}
.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-step {
  width: 4px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-dot {
  margin-left: -2px;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  display: block !important;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-leave {
  display: block !important;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  animation-name: rcSliderTooltipZoomDownIn;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  animation-name: rcSliderTooltipZoomDownOut;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  transform: scale(0, 0);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.rc-slider-tooltip-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes rcSliderTooltipZoomDownIn {
  0% {
    transform: scale(0, 0);
    transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 50% 100%;
  }
}
@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform: scale(1, 1);
    transform-origin: 50% 100%;
  }
  100% {
    transform: scale(0, 0);
    transform-origin: 50% 100%;
    opacity: 0;
  }
}
.rc-slider-tooltip {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip-hidden {
  display: none;
}
.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px 0;
}
.rc-slider-tooltip-inner {
  min-width: 24px;
  height: 24px;
  padding: 6px 2px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9;
}
.rc-slider-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c;
}

/* app/javascript/risk/RangeConfiguration.css */
.labelRange {
  font-size: 17px !important;
  color: #3f3f3f;
}

/* app/javascript/components/SubscriptionPlans.css */
.sp-wrapper {
  padding: 16px 0 0;
}
.sp-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sp-step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.sp-step-circle.done {
  background: #4CAF50;
}
.sp-step-circle.active {
  background: #1A73E8;
}
.sp-step-circle.inactive {
  background: #e0e0e0;
  color: #aaa;
}
.sp-step-label {
  font-size: 11px;
  color: #888;
}
.sp-step-label.active {
  font-weight: 700;
  color: #1A73E8;
}
.sp-step-line {
  height: 2px;
  width: 60px;
  background: #e0e0e0;
  margin: 0 8px 16px;
}
.sp-step-line.done {
  background: #4CAF50;
}
.sp-plan-step {
  padding: 0 16px 16px;
}
.sp-subtitle {
  text-align: center;
  color: #888;
  font-size: 13px;
  margin-bottom: 24px;
  margin-top: 0;
}
.sp-cards-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}
.sp-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  flex: 0 0 210px;
  max-width: 230px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sp-card:hover {
  transform: translateY(-3px);
}
.sp-card-top {
  padding: 20px 20px 16px;
  text-align: center;
}
.sp-card-icon {
  display: inline-flex;
  margin-bottom: 10px;
}
.sp-card-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}
.sp-card-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
}
.sp-card-currency {
  font-size: 14px;
  font-weight: 700;
  margin-top: 5px;
  margin-right: 1px;
}
.sp-card-amount {
  font-size: 38px;
  font-weight: 900;
}
.sp-card-duration {
  font-size: 12px;
  margin-top: 5px;
  opacity: 0.75;
}
.sp-card-body {
  padding: 14px 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.sp-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.sp-feature-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
  font-weight: 500;
}
.sp-check-icon {
  margin-right: 7px;
  flex-shrink: 0;
}
.sp-get-started-btn {
  margin-top: 16px;
  width: 100%;
  padding: 10px 0;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}
.sp-get-started-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.sp-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: sp-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}
@keyframes sp-spin {
  to {
    transform: rotate(360deg);
  }
}
.sp-btn-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sp-empty {
  text-align: center;
  padding: 52px 0;
  color: #aaa;
  font-size: 14px;
}
.sp-payment-step {
  padding: 0 20px 20px;
}
.sp-plan-summary {
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sp-plan-summary-label {
  font-size: 12px;
  color: #777;
  margin-bottom: 2px;
}
.sp-plan-summary-name {
  font-size: 15px;
  font-weight: 700;
}
.sp-plan-summary-duration {
  font-size: 12px;
  color: #888;
}
.sp-plan-summary-price {
  font-size: 26px;
  font-weight: 900;
}
.sp-payment-form {
  background: #f0f8f5;
  border-radius: 12px;
  padding: 18px;
}
.sp-form-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 6px;
}
.sp-form-label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  min-width: 130px;
  padding-top: 4px;
  flex-shrink: 0;
}
.sp-form-label .required {
  color: red;
}
.sp-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex: 1;
}
.sp-radio-label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.sp-radio-label input[type=radio] {
  cursor: pointer;
}
.sp-txn-section {
  margin-top: 4px;
}
.sp-txn-section .sp-form-row {
  margin-bottom: 10px;
}
.sp-input {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  background: #fff;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.sp-input:focus {
  border-color: #1A73E8;
}
.sp-input-inline {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 13px;
  background: #fff;
  outline: none;
  width: 160px;
  transition: border-color 0.15s;
}
.sp-input-inline:focus {
  border-color: #1A73E8;
}
.sp-current-payment-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  flex: 1;
}
.sp-amount-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.sp-amount-display {
  font-size: 13px;
  color: #555;
  font-weight: 600;
  min-width: 40px;
}
.sp-sendlink-fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
}
.sp-sendlink-fields .sp-input {
  width: auto;
  flex: 1;
  min-width: 120px;
}
.sp-send-btn {
  padding: 8px 16px;
  background: #1A73E8;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  align-self: center;
  transition: opacity 0.15s;
}
.sp-send-btn:hover {
  opacity: 0.88;
}
.sp-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.sp-back-btn {
  background: none;
  border: none;
  color: #888;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  padding: 0;
}
.sp-back-btn:hover {
  color: #555;
}
.sp-submit-btn {
  padding: 10px 32px;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.15s;
  background: #2d6e6e;
}
.sp-submit-btn:disabled {
  background: #aaa;
  cursor: not-allowed;
}
.sp-submit-btn:not(:disabled):hover {
  opacity: 0.88;
}
.sp-result {
  text-align: center;
  padding: 40px 24px;
}
.sp-result-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.sp-result-msg {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}
.sp-result-msg.success {
  color: #2E7D32;
}
.sp-result-msg.error {
  color: #c62828;
}
.sp-retry-btn {
  padding: 9px 24px;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
}

/* app/javascript/components/SubscriptionHistory.css */
.sh-wrapper {
  padding: 0 0 8px;
}
.sh-hero {
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.sh-hero-inactive {
  background: #f8f8f8 !important;
  border: 1px solid #e8e8e8;
}
.sh-hero-left {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1;
}
.sh-hero-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-hero-icon-grey {
  background: #ebebeb;
}
.sh-hero-icon {
  font-size: 24px;
  color: #fff;
}
.sh-hero-icon-grey .sh-hero-icon {
  color: #bbb;
}
.sh-hero-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.sh-hero-renewal {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}
.sh-hero-pulse {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.sh-pulse-dot {
  position: absolute;
  inset: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}
.sh-pulse-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: sh-pulse 1.6s ease-out infinite;
}
@keyframes sh-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.sh-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sh-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ececec;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 14px 16px 14px 0;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.15s;
}
.sh-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.sh-card-cancelled {
  opacity: 0.72;
}
.sh-card-strip {
  width: 4px;
  align-self: stretch;
  border-radius: 4px 0 0 4px;
  flex-shrink: 0;
}
.sh-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-card-icon .material-icons {
  font-size: 22px;
}
.sh-card-body {
  flex: 1;
  min-width: 0;
}
.sh-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.sh-card-plan {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2a2a2a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sh-card-duration {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}
.sh-card-amount {
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}
.sh-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.sh-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  color: #888;
}
.sh-meta-icon {
  font-size: 13px !important;
  color: #bbb;
}
.sh-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
}
.sh-badge-active {
  background: #E8F5E9;
  color: #2E7D32;
}
.sh-badge-cancelled {
  background: #F5F5F5;
  color: #9E9E9E;
}
.sh-cancel-btn {
  padding: 7px 14px;
  background: #fff;
  border: 1.5px solid #E53935;
  border-radius: 8px;
  color: #E53935;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 4px;
}
.sh-cancel-btn:hover {
  background: #E53935;
  color: #fff;
}
.sh-cancel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.sh-empty {
  text-align: center;
  padding: 48px 0;
  color: #aaa;
}
.sh-empty .material-icons {
  font-size: 52px;
  display: block;
  margin-bottom: 10px;
  color: #ddd;
}
.sh-empty p {
  font-size: 14px;
  margin: 0;
  color: #bbb;
}
.sh-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.sh-confirm-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 24px;
  max-width: 340px;
  width: 90%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.sh-confirm-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFF3E0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.sh-confirm-icon .material-icons {
  font-size: 28px;
  color: #F57C00;
}
.sh-confirm-box h6 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #222;
}
.sh-confirm-box p {
  font-size: 13px;
  color: #666;
  margin: 0 0 22px;
  line-height: 1.5;
}
.sh-confirm-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.sh-confirm-no {
  flex: 1;
  padding: 10px 0;
  background: #f5f5f5;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #555;
  transition: background 0.15s;
}
.sh-confirm-no:hover {
  background: #e8e8e8;
}
.sh-confirm-yes {
  flex: 1;
  padding: 10px 0;
  background: #E53935;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: opacity 0.15s;
}
.sh-confirm-yes:hover {
  opacity: 0.88;
}
.sh-confirm-yes:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.sh-spinner {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: sh-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 5px;
  flex-shrink: 0;
}
.sh-spinner.dark {
  border-color: rgba(229, 57, 53, 0.3);
  border-top-color: #E53935;
}
@keyframes sh-spin {
  to {
    transform: rotate(360deg);
  }
}
.sh-btn-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sh-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  z-index: 10000;
  animation: sh-fadein 0.22s ease;
  white-space: nowrap;
}
.sh-toast-success {
  background: #2E7D32;
}
.sh-toast-error {
  background: #C62828;
}
.sh-toast-icon {
  font-size: 17px !important;
}
@keyframes sh-fadein {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* app/javascript/DashboardViewer/DashboardViewer.css */
.dv-container {
  padding: 16px;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.dv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dv-header h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.dv-header p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #666;
}
.dv-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 16px;
}
.dv-filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dv-filter-group label {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
}
.dv-filter-group select,
.dv-filter-group input[type=date] {
  height: 36px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  background: #fff;
  min-width: 160px;
}
.dv-filter-multi {
  min-width: 200px;
}
.dv-filter-multi .dv-react-select__control {
  min-height: 36px;
  border-color: #ddd;
  border-radius: 4px;
}
.dv-filter-multi .dv-react-select__control--is-focused {
  border-color: var(--dv-primary, #1976d2);
  box-shadow: 0 0 0 1px var(--dv-primary, #1976d2);
}
.dv-filter-actions {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.dv-btn {
  height: 36px;
  padding: 0 20px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dv-btn-primary {
  background: var(--dv-primary, #1976d2);
  color: #fff;
}
.dv-btn-secondary {
  background: #e0e0e0;
  color: #424242;
}
.dv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.dv-report-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 16px;
  padding-bottom: 8px;
  position: relative;
  min-height: 200px;
  overflow: hidden;
}
.dv-report-item[data-grid-w="3"] {
  width: calc(25% - 12px);
}
.dv-report-item[data-grid-w="4"] {
  width: calc(33.33% - 11px);
}
.dv-report-item[data-grid-w="6"] {
  width: calc(50% - 8px);
}
.dv-report-item[data-grid-w="8"] {
  width: calc(66.66% - 6px);
}
.dv-report-item[data-grid-w="12"] {
  width: 100%;
}
@media (max-width: 768px) {
  .dv-report-item {
    width: 100% !important;
  }
}
.dv-report-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.dv-report-header h5 {
  font-size: 1.64rem;
  font-weight: 400;
  line-height: 110%;
  color: rgba(0, 0, 0, 0.87);
  margin: 0.82rem 0 0.656rem 0;
  text-align: center;
  width: 100%;
}
.dv-report-actions {
  display: flex;
  gap: 6px;
}
.dv-icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #fff !important;
  text-decoration: none;
}
.dv-icon-btn i,
.dv-icon-btn i.material-icons {
  color: #fff !important;
  font-size: 18px !important;
}
.dv-view-toggle {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}
.dv-view-btn {
  padding: 4px 12px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  background: #e0e0e0;
  color: #424242;
}
.dv-view-btn.active {
  background: var(--dv-primary, #1976d2);
  color: #fff;
}
.dv-group-by {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  margin-bottom: 12px;
}
.dv-group-by span {
  font-size: 12px;
  font-weight: 600;
  color: #495057;
}
.dv-group-btn {
  padding: 4px 12px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  background: #e0e0e0;
  color: #424242;
}
.dv-group-btn.active {
  background: var(--dv-primary, #1976d2);
  color: #fff;
}
.dv-chart-container {
  width: 100%;
  height: 400px;
  position: relative;
}
.dv-table-container {
  overflow-x: auto;
  max-height: 500px;
  overflow-y: auto;
}
.dv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.dv-table th {
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  color: #fff;
  background: var(--dv-primary, #1976d2);
  position: sticky;
  top: 0;
  z-index: 1;
}
.dv-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
  color: #333;
}
.dv-table tr:nth-child(even) {
  background: #f9f9f9;
}
.dv-table tr:hover {
  background: #f1f5f9;
}
.dv-card-value {
  text-align: center;
  padding: 20px;
}
.dv-card-value .value {
  font-size: 32px;
  font-weight: 700;
}
.dv-card-value .label {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}
.dv-donut-container {
  width: 100%;
  height: 350px;
  position: relative;
}
.dv-pivot-container {
  width: 100%;
  min-height: 400px;
}
.dv-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: #666;
  font-size: 14px;
}
.dv-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #e0e0e0;
  border-top-color: var(--dv-primary, #1976d2);
  border-radius: 50%;
  animation: dv-spin 0.7s linear infinite;
  margin-right: 10px;
}
@keyframes dv-spin {
  to {
    transform: rotate(360deg);
  }
}
.dv-error {
  text-align: center;
  padding: 40px;
  color: #d32f2f;
}
.dv-error i {
  font-size: 48px;
  color: #ef9a9a;
  display: block;
  margin-bottom: 10px;
}
.dv-no-data {
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 14px;
}
.dv-last-refresh {
  text-align: right;
  font-size: 11px;
  color: #94a3b8;
  padding: 4px 0 0;
  margin-top: 4px;
  border-top: 1px solid #e2e8f0;
}
.dv-report-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 12px;
}
.dv-report-item .dv-resize-handle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  cursor: se-resize;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 100;
  background:
    linear-gradient(
      135deg,
      transparent 50%,
      rgba(0, 0, 0, 0.15) 50%);
  border-radius: 0 0 8px 0;
}
.dv-report-item:hover .dv-resize-handle {
  opacity: 1;
}
.dv-export-btn {
  position: absolute;
  top: 12px;
  right: 12px;
}
.dv-custom-range {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/*! Bundled license information:

quill/dist/quill.snow.css:
  (*!
   * Quill Editor v2.0.3
   * https://quilljs.com
   * Copyright (c) 2017-2024, Slab
   * Copyright (c) 2014, Jason Chen
   * Copyright (c) 2013, salesforce.com
   *)
*/
