body {
  font-family: "Lexend Deca", Helvetica, Arial, sans-serif;
  background-color: #f5f8fa;
  overflow-x: hidden;
}
.container {
  padding: 0 !important;
  margin: 0 !important;
}
.sticky-top {
  top: 20px; /* Adjust this value if needed */
}

.gauge {
  width: 200px;
  height: 200px;
}

.gauge-report > svg {
  width: 100px;
  height: 100px;
}

.gauge-report > .gauge .value-text {
  font-size: 1.5em !important;
}

.gauge .background {
  fill: none;
  stroke: #e6e6e6;
  stroke-width: 22;
}
.gauge .arc {
  fill: none;
  stroke-width: 22;
  stroke-linecap: round;
}
.gauge .needle {
  fill: #444;
}
.gauge text {
  font-family: Arial, sans-serif;
  font-size: 28px;
  fill: #666;
  text-anchor: middle;
}
.hs-form-field {
  flex: 1;
  margin-bottom: 1rem;
  margin-right: 0;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
}
label {
  margin-bottom: 0.5rem;
  font-weight: 700;
  display: block;
}
.hs-input.hs-fieldtype-textarea {
  min-height: 10rem;
}
/* .w-input:focus,
  .w-select:focus {
    border-color: #3898ec;
    outline: 0;
  } */
.w-input:focus,
.w-select:focus {
  border-color: rgba(0, 208, 228, 0.5);
  box-shadow: 0 0 4px 1px rgba(0, 208, 228, 0.3), 0 0 0 1px #00d0e4;
  outline: 0;
}
textarea.w-input,
textarea.w-select {
  height: auto;
}
.hs-input {
  width: 100% !important;
}
.hs-input {
  width: 100%;
  min-height: 3rem;
  color: #000;
  background-color: rgba(196, 196, 196, 0.2);
  border: 1px solid #b3b3b3;
  border-radius: 0.3125rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0.25rem 1rem;
  font-size: 1.125rem;
}
.w-input,
.w-select {
  width: 100%;
  height: 38px;
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc !important;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}
.hs-selector {
  width: 150px !important;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
}

.hs-selector-large {
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
}

.llmProviderSelector .btn {
  border: 0 !important;
  background-color: transparent !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.hs-input.selectpicker {
  min-height: 1rem !important;
}

.hsCard {
  /* position: relative;
display: flex;
flex-direction: column;
width: 100%;
padding: 0px; */
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(45, 62, 80, 0.12) 0px 1px 5px 0px;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 24px;
  page-break-inside: avoid;
}

.hsCard legend::first-letter {
  font-size: calc(1.575rem + 0.3vw);
  color: rgb(0, 145, 174);
}

.hsCard.dealAss {
  border-radius: 0.5rem;
  border: #0091ae 3px solid;
  background-color: #ffffff3b;
  box-shadow: inset rgb(0 0 0 / 18%) 0px 0px 11px 2px;
}

.hsCard.dealAss p,
.hsCard.dealAss li {
  font-size: 14px;
}

.hsCard.dealAss legend {
  color: #0091ae;
}

.summary-collapsible {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.summary-collapsible-content {
  max-height: 4.5em; /* Show about 2 lines of summary and 1-2 list items */
  overflow: hidden;
  transition: max-height 1s;
  position: relative;
}

.summary-collapsible:hover .summary-collapsible-content {
  max-height: 100vh; /* Expand to show all content */
  background: #f8f9fa;
  z-index: 10;
}

.summary-collapsible-content:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #f5f8fa 90%);
  pointer-events: none;
  transition: opacity 0.5s;
  opacity: 1;
}
.summary-collapsible:hover .summary-collapsible-content:after {
  opacity: 0;
}
.summary-collapsible::after {
  content: "down"; /* Or use the actual arrow character, e.g. "▼" */
  font-family: "spacesword";
  font-size: 1.5em;
  color: #0091ae;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  opacity: 0.7;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 20;
  line-height: 1;
}
.summary-collapsible:hover::after {
  opacity: 0.1;
}

.private-button.private-button--disabled,
.private-button[aria-disabled="true"] {
  background-color: #eaf0f6 !important;
  border-color: #eaf0f6 !important;
  color: #b0c1d4 !important;
  cursor: not-allowed;
  pointer-events: none;
}

.tooltipON {
  pointer-events: all !important;
}

.private-button--primary {
  background-color: #ff7a59;
  border-color: #ff7a59;
  color: #fff;
}

.private-button--danger {
  background-color: #f2545b;
  border-color: #f2545b;
  color: #fff;
}

.private-button--default {
  font-size: 14px;
  line-height: 16px;
  padding: 11px 15px;
  font-weight: 500;
}

/* .private-button.private-button--disabled {
  background-color: #eaf0f6 !important;
  border-color: #eaf0f6 !important;
  color: #b0c1d4 !important;
  cursor: not-allowed;
  pointer-events: none;
} */

.private-button--small {
  font-size: 12px;
  line-height: 8px;
  padding: 10px 15px;
  font-weight: 500;
}

.private-button {
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-family: "Lexend Deca", Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.15s ease-out;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
}
.private-button.w118px {
  width: 118px !important;
}
.private-button.w90px {
  width: 90px !important;
}
.private-button--grad {
  background-color: #00bda5 !important;
  background-image: linear-gradient(-303deg, #00a4bd, #00afb2 56%, #00bda5) !important;
  border: 0;
}
.gauge-container {
  /* width: 150px;
    height: 150px; */
  display: block;
  padding: 10px;
  max-height: 220px;
}
.gauge-container > .gauge .dial {
  stroke: #eee;
  stroke-width: 10;
  fill: rgba(0, 0, 0, 0);
}
.gauge-container > .gauge .value {
  stroke: rgb(0, 145, 174);
  stroke-dasharray: 20 1;
  stroke-width: 10;
  fill: rgba(0, 0, 0, 0);
}
.gauge-container > .gauge .value-text,
.svgText {
  fill: rgb(0, 145, 174);
  font-family: "Lexend Deca", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 1em;
}

.svgText {
  position: relative;
  top: -176px;
  right: -12px;
  width: 80px;
  margin: auto 0;
  height: 40px;
  font-size: 34px;
  color: rgb(255 121 89);
  border: none;
  background-color: transparent;
  outline: none;
  text-align: center;
  border-bottom: 1px solid;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(45, 62, 80, 0.12) 0px 1px 5px 0px;
  border-radius: 3px;
  max-width: 300px; /* Adjust the max-width as needed */
  margin: 0 auto; /* Center the card horizontally */
}
.pricing-card .pricing-card-header {
  /* margin-top: 10px; */
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  padding: 24px;
  background-color: rgb(106, 120, 209);
  background-image: linear-gradient(-303deg, rgb(106, 120, 209), rgb(0, 164, 189));
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  color: rgb(255, 255, 255);
  text-align: center;
}
.is--heading-3 {
  font-family: var(--uicomponents-font-family, "Lexend Deca", Helvetica, Arial, sans-serif) !important;
  font-weight: 500 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  /* margin-bottom: 16px; */
  margin-top: 0;
  display: block;
  font-size: 22px !important;
  line-height: normal !important;
  text-transform: none !important;
}
.price-card-features {
  padding: 12px 20px 0px;
  text-align: left;
  font-size: 14px;
  font-weight: 300;
  color: rgb(51, 71, 91);
}
.pricing-card ul {
  list-style-type: none;
  padding: 0;
}
.pricing-card ul li {
  margin-bottom: 8px;
}
.pricing-card .price {
  padding: 12px 15px 0px 20px;
  text-align: center;
  margin-top: 16px;
  font-size: 32px;
  font-weight: 700;
}
.pricing-card .price .price-month {
  font-size: 12px;
  line-height: 18px;
  color: rgb(51, 71, 91);
  font-weight: 300;
}
.pricing-card .price .price-old {
  font-size: 20px;
  line-height: 18px;
  color: rgb(51, 71, 91);
  font-weight: 300;
  /* text-decoration: line-through; */
}
.pricing-card .price-text-blue {
  color: rgb(0, 189, 165);
}
.price-contact {
  background-color: #425b76;
  border-color: #425b76;
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  padding: 8px 16px;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-weight: 400;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.15s ease-out;
  display: inline-block;
  max-width: 100%;
  /* width: 100%; */
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
}
.pricing-badge {
  margin-top: 15px;
  margin-bottom: -34px;
  background-color: rgb(234, 240, 246);
  color: rgb(51, 71, 91);
  display: inline-block;
  font-weight: 700;
  font-size: 10.1px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  text-transform: uppercase;
  vertical-align: inherit;
  hyphens: manual;
  border-radius: 3px;
  line-height: 20px;
  min-height: 20px;
  padding: 0px 8px;
}
.modal-dialog {
  max-width: 100%;
  margin: 10px;
}
.modal-content {
  padding: 10px 10px 30px;
}
.price-reason {
  font-weight: 300;
  font-size: 14px;
  color: #33475b;
  line-height: 24px;
  padding: 0px 16px 16px;
}
.modal-header h5 {
  font-size: 24px;
  font-weight: 300;
}
.modal-header {
  border-bottom: 0;
  padding-bottom: 30px;
}
.badgePlan {
  border: #00a4bd dashed 2px;
  padding: 4px;
  background-color: #00a4bd38;
  color: #006b7b;
  font-size: 12px;
}
.secured {
  font-size: 14px;
  font-weight: 300;
  color: rgb(51, 71, 91);
}
.button-as-link {
  background: none;
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  border: none;
  padding: 0;
  font: inherit; /* This ensures the button inherits font properties from its parent, like size and family */
  cursor: pointer;
  text-decoration: underline; /* This makes it look more like a link */
  display: inline; /* To make the button flow like text */
}

.button-as-link:hover,
.button-as-link:focus {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

.sticky-top {
  height: 90vh;
}

/* CRM deal form overrides */
.crm-next-steps,
.crm-next-steps-style {
  position: relative;
  border: 3px solid #0091ae;
  background: linear-gradient(180deg, rgba(0, 145, 174, 0.06) 0%, rgba(255, 255, 255, 0.92) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 8px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 1.4rem 1.6rem 2.4rem;
  color: #33475b;
  overflow: hidden;
}

.crm-next-steps h4 {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.75rem;
  color: #0091ae;
  font-size: 1.35rem;
  font-weight: 700;
}

.crm-next-steps p {
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

.crm-next-steps ul {
  padding-left: 1.1rem;
  margin-top: 0.6rem;
  color: #33475b;
}

.crm-next-steps__content {
  max-height: 5.5rem;
  overflow: hidden;
  position: relative;
  transition: max-height 0.6s ease;
}

.crm-next-steps__content::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95));
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.crm-next-steps:hover .crm-next-steps__content,
.crm-next-steps:focus-within .crm-next-steps__content {
  max-height: 100vh;
}

.crm-next-steps:hover .crm-next-steps__content::after,
.crm-next-steps:focus-within .crm-next-steps__content::after {
  opacity: 0;
}

.crm-next-steps::after {
  content: "⌄";
  position: absolute;
  bottom: 0.35rem;
  left: 50%;
  transform: translateX(-50%);
  color: #0091ae;
  font-size: 1.2rem;
  opacity: 0.7;
}

.crm-next-steps::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95));
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.crm-next-steps:hover::before,
.crm-next-steps:focus-within::before {
  opacity: 0;
}

.crm-next-steps::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95));
  pointer-events: none;
  transition: opacity 0.2s ease;
  border-radius: 12px;
}

.crm-next-steps:hover::before,
.crm-next-steps:focus-within::before {
  opacity: 0;
}

.crm-form__sections fieldset {
  border: 1px solid #dfe6ee;
  border-radius: 10px;
  padding: 1.25rem 1.5rem 1.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.25rem;
  background: #fff;
}

.crm-form__sections legend {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0091ae;
  padding: 0 0.25rem;
}

.crm-form__question > span {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1c2d41;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.crm-form__question small {
  font-weight: 500;
  color: #5f738a;
}

.crm-form__question input,
.crm-form__question textarea,
.crm-form__question select {
  border: 1px solid #d2dbe5;
  border-radius: 6px;
  background: #fff;
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  color: #1c2d41;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.crm-form__question input:focus,
.crm-form__question textarea:focus,
.crm-form__question select:focus {
  border-color: #00bda5;
  box-shadow: 0 0 0 3px rgba(0, 189, 165, 0.16);
  outline: none;
}

.crm-section-feedback {
  background: #f8fbfd;
  border: 1px dashed #c5dce5;
  color: #1c2d41;
}

.crm-section-feedback li {
  font-weight: 500;
  color: #33475b;
}

.crm-section-feedback ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.crm-section-feedback li {
  padding-left: 0;
  color: #33475b;
  font-weight: 500;
}

.crm-section-feedback li .crm-feedback-label,
.crm-section-feedback li span:first-child {
  color: #0091ae;
  font-weight: 600;
}

.crm-feedback-label {
  color: #0091ae;
  font-weight: 600;
}

.crm-question__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.crm-guidance-toggle {
  color: rgb(0, 164, 189) !important;
  font-size: 16px;
  cursor: pointer !important;
  user-select: none;
  white-space: nowrap !important;
  word-break: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "spacesword" !important;
  font-feature-settings: "liga";
  font-variant: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  border: none;
  background: transparent;
  text-align: left;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.crm-guidance-toggle:hover {
  color: rgb(0, 164, 189);
}

.crm-guidance {
  background: #eff6f9;
  border: 1px solid #c7e1ea;
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  margin: 0.55rem 0 0.65rem;
  font-size: 0.95rem;
  color: #33475b;
  line-height: 1.5;
}

.crm-next-steps {
  position: relative;
  border: 3px solid #0091ae;
  background: linear-gradient(180deg, rgba(0, 145, 174, 0.06) 0%, rgba(255, 255, 255, 0.92) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 8px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 1.4rem 1.6rem 2.4rem;
  color: #33475b;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.crm-next-steps:hover,
.crm-next-steps:focus-within,
.crm-next-steps-style:hover,
.crm-next-steps-style:focus-within {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12), inset 0 0 8px rgba(0, 0, 0, 0.05);
}

.crm-next-steps.summary-collapsible,
.crm-next-steps-style.summary-collapsible {
  overflow: visible;
  max-height: none;
  padding-bottom: 1.6rem;
}

.crm-next-steps.summary-collapsible .summary-collapsible-content,
.crm-next-steps-style.summary-collapsible .summary-collapsible-content {
  max-height: 6.5rem;
  overflow: hidden;
  position: relative;
  background: transparent;
  transition: max-height 0.8s ease;
}

.crm-next-steps.summary-collapsible:hover .summary-collapsible-content,
.crm-next-steps.summary-collapsible:focus-within .summary-collapsible-content,
.crm-next-steps-style.summary-collapsible:hover .summary-collapsible-content,
.crm-next-steps-style.summary-collapsible:focus-within .summary-collapsible-content {
  max-height: 100vh;
  background: transparent;
}

.crm-next-steps.summary-collapsible .summary-collapsible-content:after,
.crm-next-steps-style.summary-collapsible .summary-collapsible-content:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(247, 252, 255, 0), rgba(247, 252, 255, 0.9));
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.crm-next-steps.summary-collapsible:hover .summary-collapsible-content:after,
.crm-next-steps.summary-collapsible:focus-within .summary-collapsible-content:after,
.crm-next-steps-style.summary-collapsible:hover .summary-collapsible-content:after,
.crm-next-steps-style.summary-collapsible:focus-within .summary-collapsible-content:after {
  opacity: 0;
}

/* Enable hover-expand behavior for inline summary-collapsible usage */
.summary-collapsible .summary-collapsible-content {
  max-height: 4.5em;
  overflow: hidden;
  position: relative;
  transition: max-height 0.8s ease;
}
.summary-collapsible:hover .summary-collapsible-content,
.summary-collapsible:focus-within .summary-collapsible-content {
  max-height: 100vh;
}
.summary-collapsible .summary-collapsible-content:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #f5f8fa 90%);
  pointer-events: none;
  transition: opacity 0.25s ease;
  opacity: 1;
}
.summary-collapsible:hover .summary-collapsible-content:after,
.summary-collapsible:focus-within .summary-collapsible-content:after {
  opacity: 0;
}

.helpRigthDiv {
  font-size: 10px;
  margin-top: 20px;
}
.helpRigthDiv form {
  display: inline-block;
}

.fs-12px {
  font-size: 12px !important;
}

.fs-14px {
  font-size: 14px;
}

.feedback {
  font-weight: 400;
  font-size: 14px;
  color: #33475b;
  line-height: 24px;
}
.feedback span {
  color: #0091ae;
  font-weight: 600;
}
/* #submitBtn,
#populateBtn {
  width: 118px;
} */

.report-stats-title {
  font-size: 12px;
  font-family: "Lexend Deca", Helvetica, Arial, sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  color: rgb(51, 71, 91);
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-align: center;
}

.report-stats-number {
  background-color: transparent;
  border-color: transparent;
  font-family: var(--uicomponents-font-family, "Lexend Deca", Helvetica, Arial, sans-serif);
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.15s ease-out;
  color: #0091ae;
  text-decoration: none;
  -webkit-user-select: inherit;
  -moz-user-select: inherit;
  -ms-user-select: inherit;
  user-select: inherit;
  border: 0;
  font-size: 28px;
  line-height: inherit;
  overflow: visible;
  padding: 0;

  white-space: normal;
  text-align: center;
}

.report-stats-footer {
  color: rgb(51, 71, 91);
  font-size: 14px;
  text-align: center;
}

#reportContainer > .hsCard:first-child {
  position: sticky;
  top: 0;
  z-index: 100;
}

@media (min-width: 768px) {
  .container.report {
    max-width: 1000px !important;
  }
}

#plotly-div {
  width: 100%; /* Set the width of the container to 100% */
  z-index: 1;
}

#plotly-div * {
  z-index: 1;
}

/* styles.css */
@font-face {
  font-family: "spacesword";
  src: url("../fonts/spacesword-low.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

.private-icon {
  color: rgb(0, 164, 189);
  font-size: 16px;
  cursor: pointer !important;
  user-select: none;
  white-space: nowrap !important;
  word-break: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "spacesword" !important;
  font-feature-settings: "liga";
  font-variant: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;

  border: none;
  background: transparent;
  text-align: center;
  margin: auto;
}

.private-icon-edit {
  display: block;
  top: -50px;
  right: 10px;
  position: relative;
}

.private-icon-lock {
  display: block;
  top: -75px;
  right: -10px;
  position: relative;
}

.private-icon-disabled {
  color: #b0c1d4 !important;
  pointer-events: none;
  cursor: not-allowed !important;
}

.private-icon-delete,
.private-icon-admin,
.private-icon-admin-remove,
.private-icon-up,
.private-icon-down {
  text-decoration: none;
  color: rgb(81, 111, 144);
}

.private-icon-settings {
  text-decoration: none;
}
.private-icon:hover {
  color: #007a8c;
}
.private-icon-down:hover,
.private-icon-delete:hover {
  color: #ef4655;
}

.private-icon-static {
  cursor: default !important;
  user-select: none;
}
.private-icon-static:hover {
  color: rgb(0, 164, 189) !important;
}

.a-icon-guidance {
  text-decoration: none;
  margin-left: 10px;
}

.bg-gray-mine {
  background-color: #f5f8fa !important;
}

.input-inline {
  font-size: 14px;
  background-color: transparent;
  border-color: transparent;
  border-left-width: 0;
  box-shadow: none;
  /* height: 32px; */
  padding-bottom: 4px;
  padding-left: 0;
  padding: 9px 10px;
  border-bottom: 1px solid #cbd6e2;
  font-size: 16px;
  transition: all 0.15s ease-out;
  /* background-color: #f5f8fa; */
  color: #33475b;
  display: block;
  /* height: 40px; */
  line-height: 22px;
  text-align: left;
  vertical-align: middle;
  width: 100%;
  border-radius: 0;
  word-wrap: break-word;
  field-sizing: content;
  resize: none;
}

.input-inline:hover {
  border-bottom-color: #00a4bd;
  border-radius: 0;
  display: inline-block;
}

.input-inline:focus {
  border-color: rgba(0, 208, 228, 0.5);
  box-shadow: 0 0 4px 1px rgba(0, 208, 228, 0.3), 0 0 0 1px #00d0e4;
  outline: 0;
  border-radius: 3px;
  background-color: #f5f8fa;
}

/* .hs-form-field:hover::after {
  content: "edit";
  color: rgb(0, 164, 189);
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-block;
  /*background-color: white;
  user-select: none;
  white-space: nowrap !important;
  word-break: normal !important; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: spacesword !important;
  font-feature-settings: "liga";
  font-variant: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
} */

.input-group {
  position: relative;
}

.lock-icon {
  color: rgb(0, 164, 189);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: spacesword !important;
  font-feature-settings: "liga";
  font-variant: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  position: absolute;
  right: 15px;
  bottom: 10px;
  cursor: pointer;
  font-size: 16px; /* Adjust icon size */
  z-index: 10;
}

.w-input.locked,
input.locked,
textarea.locked {
  background-color: #f5f8fa; /* Light red background to indicate locked state */
  border-color: #cbd6e2; /* Optional: Change border color */
  cursor: not-allowed; /* Change cursor to indicate non-editable */
  color: #7c98b6;
  pointer-events: none; /* Prevent interaction */
  cursor: not-allowed !important;
}

textarea {
  padding-right: 30px; /* Add padding to avoid overlap with the icon */
}

input {
  padding-right: 30px; /* Add padding to avoid overlap with the icon */
}

.private-form__toggle-switch,
.private-form__toggle-switch-automation,
.private-form__toggle-switch-automation-disabled {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
  cursor: pointer;
}

.sr-only {
  position: absolute !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

.private-form__toggle-switch-out {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 32px;
  width: 64px;
  min-width: 0px;
  background-color: rgb(0, 164, 189);
  border-radius: 3px;
}

.private-form__toggle-switch-out-no {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 32px;
  width: 64px;
  min-width: 0px;
  background-color: rgb(245, 248, 250);
  box-shadow: rgb(203, 214, 226) 0px 0px 0px 1px inset;
  border-radius: 3px;
}

.toggle-switch-on {
}

.toggle-switch-on-no {
  position: relative;
  display: block;
  font-family: var(--uicomponents-font-family, "Lexend Deca", Helvetica, Arial, sans-serif);
  font-weight: 600;
  text-align: center;
  line-height: 41px;
  padding-left: 16px;
  padding-right: 56px;
  visibility: hidden;
  color: rgb(255, 255, 255);
  -webkit-font-smoothing: antialiased;
}

.toggle-switch-off {
  position: relative;
  display: block;
  font-family: var(--uicomponents-font-family, "Lexend Deca", Helvetica, Arial, sans-serif);
  font-weight: 600;
  text-align: center;
  line-height: 41px;
  padding-left: 56px;
  padding-right: 16px;
  visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.toggle-switch-off-no {
  position: relative;
  display: block;
  font-family: var(--uicomponents-font-family, "Lexend Deca", Helvetica, Arial, sans-serif);
  font-weight: 600;
  text-align: center;
  line-height: 41px;
  padding-left: 56px;
  padding-right: 16px;
  -webkit-font-smoothing: antialiased;
}

.toggle-switch-check {
  position: absolute;
  top: 0px;
  left: calc(100% - 32px);
  will-change: left;
  height: 32px;
  width: 32px;
  padding: 7px;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(0, 164, 189) 0px 0px 0px 1px, rgba(0, 0, 0, 0.08) 0px 5px 5px 0px;
  border-radius: 3px;
  transition: 150ms ease-out;
}

.toggle-switch-check-no {
  position: absolute;
  top: 0px;
  left: 0px;
  will-change: left;
  height: 32px;
  width: 32px;
  padding: 7px;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(203, 214, 226) 0px 0px 0px 1px, rgba(0, 0, 0, 0.08) 0px 5px 5px 0px;
  border-radius: 3px;
  transition: 150ms ease-out;
}

.toggle-switch-check > svg {
  vertical-align: baseline !important;
}

.toggle-switch-check-no > svg {
  display: none;
}

.switch-check-svg {
  fill: rgb(0, 164, 189);
  stroke: rgb(255, 255, 255);
  stroke-width: 2;
}

.pulsating {
  color: #0091ae;
  /* font-weight: 600; */
  animation: fading 1.5s infinite;
}

@keyframes fading {
  0% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.2;
  }
}

:root {
  --bs-nav-tabs-link-active-bg: #f5f8fa;
  --bs-nav-tabs-link-active-border-color: #cbd6e2;
  --bs-nav-tabs-border-radius: 0px !important;
}

.nav-link {
  font-family: "Lexend Deca", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: auto;
  font-weight: 400;
  font-size: 14px;
  color: rgb(51, 71, 91);
  padding: 12px 28px;
  position: relative;
  white-space: nowrap;
  transition: background-color 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
  border-radius: 0px !important;
  background-color: rgb(234, 240, 246);
  border-color: #cbd6e2 !important;
}

.nav-link.active {
  background-color: #f5f8fa !important;
  border-bottom-color: #f5f8fa !important;
  font-weight: 500 !important;
}

.hsCard .table {
  font-size: 14px;
}

.bottom-add-card-container {
  box-sizing: border-box;
  border: unset;
  margin: 0px;
  padding: 0px;
  position: relative;
  inline-size: 100%;
  inset-block-end: -25px;
  top: -8px;
}

.add-card-position-indicator {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 32px;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.add-card-position-indicator:hover {
  opacity: 1 !important;
}

/* .add-card-position-indicator:hover .add-card-position-indicator-bar {
  animation: 0.3 ease-out 0s 1 normal forwards running !important;
} */

.add-card-position-indicator-bar {
  position: absolute;
  top: 12px;
  height: 6px;
  inset-inline: 0px;
  background-color: rgb(0, 145, 174);
  border-radius: 3px;
  /* animation: auto ease 0s 1 normal none running none; */
}

.add-card-button-wrapper {
  position: absolute;
  top: 0px;
  transform: translateX(-50%);
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  border-radius: 3px;
  background-color: rgb(0, 145, 174);
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.add-card-button-wrapper-plus {
  left: 45%;
}

.add-card-button-wrapper-minus {
  left: 55%;
}

.add-cards-icon-button {
  background: none;
  border: 0px;
  padding: 0px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding-inline: 0px;
  text-align: center;
  text-overflow: clip;
  inline-size: 18px;
  block-size: 26px;
}

.add-cards-icon-button-span {
  -webkit-box-pack: center;
  justify-content: center;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  block-size: 18px;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  align-items: center;
  inline-size: 100%;
  block-size: 100%;
  -webkit-box-pack: center;
  justify-content: center;
  box-sizing: border-box;
  font-style: unset;
  text-transform: unset;
  background-color: unset;
  margin: 0px;
  padding: 0px;
  color: inherit;
  text-align: center;
}

.add-cards-icon-button-svg {
  block-size: 16px;
  inline-size: 16px;
  inline-size: 1em;
  block-size: 1em;
  fill: rgb(255, 255, 255) !important;
  overflow: hidden;
  overflow-clip-margin: content-box;
  overflow: hidden;
}

.border-primary {
  border-color: #0091ae !important;
}

.text-primary {
  color: #0091ae !important;
}
