/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************/
.wp-block-allied-cleanroom-calculator {
  --allied-primary: #1b5f9f;
  --allied-primary-soft: #a8c8e7;
  --allied-surface: #ffffff;
  --allied-panel: #f3f4f6;
  --allied-border: #d2d8df;
  --allied-text: #1f2e3c;
  --allied-muted: #6e7783;
  --allied-danger: #D00416;
  --allied-danger-soft: #FFB3BA;
  --allied-success-bg: #c2e7a7;
  --allied-success-border: #91c96b;
  --allied-btn-bg: #9cbede;
  --allied-btn-icon-bg: #d6e8f8;
  --allied-btn-hover: #b1cce6;
  --allied-neutral-100: #E7E7E7;
  --allied-accent: #458DD5;
  --allied-complementary: #6AA4DD;
  font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
}

.cleanroom-calculator-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 1050px) {
  .cleanroom-calculator-wrapper {
    grid-template-columns: 1fr;
  }
}

.cleanroom-inputs {
  min-width: 0;
}

.cleanroom-header {
  margin-bottom: 20px;
}
.cleanroom-header .header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.cleanroom-header h2 {
  margin: 0;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
}
@media (max-width: 760px) {
  .cleanroom-header h2 {
    font-size: 26px;
  }
}

.global-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.global-controls .btn-link {
  width: 100%;
}

.unit-selector,
.form-control,
input.form-control {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--allied-border);
  border-radius: 4px;
  padding: 8px 12px;
  box-sizing: border-box;
  font-size: 14px;
  background: #fff;
}
.unit-selector:focus,
.form-control:focus,
input.form-control:focus {
  border-color: none;
  box-shadow: 0 0 0 1px rgba(27, 95, 159, 0.12);
}

select.form-control {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}
select.form-control:focus {
  border-color: none;
  box-shadow: 0 0 0 1px rgba(27, 95, 159, 0.12);
}

.unit-selector {
  min-width: 120px;
}

.btn-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--allied-primary);
  font-size: 14px;
}

.clear-control {
  color: #d62a2a;
}

.room-card.safe-html-card {
  border: 1px solid var(--allied-border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--allied-surface);
  box-shadow: 0 2px 8px rgba(12, 28, 44, 0.06);
}

.room-card-header {
  background: var(--allied-primary-soft);
  border-bottom: 1px solid var(--allied-border);
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.room-home-icon {
  color: var(--allied-primary);
  opacity: 0.7;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.room-card-title-input {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  color: var(--allied-primary);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  padding: 1px 5px;
  flex: 1;
  min-width: 0;
  width: auto;
  min-height: unset;
}
.room-card-title-input:hover {
  border-color: rgba(27, 95, 159, 0.25);
}
.room-card-title-input:focus {
  border-color: rgba(27, 95, 159, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.6);
}

.btn-link-destructive {
  background: none;
  border: none;
  color: var(--allied-danger);
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
}
.btn-link-destructive span {
  font-weight: 700;
}

.form-row {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px 14px;
}
.form-row.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.form-row.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 760px) {
  .form-row.three-cols, .form-row.two-cols {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #3f4b58;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
.form-group label[for=room-type-1] {
  border-top: 1px solid var(--allied-border);
  padding-top: 25px;
}

.room-results-wrap {
  padding: 12px 14px;
  margin-top: 10px;
  border-top: 1px dashed #bdd2e6;
  padding-top: 12px;
  background-color: var(--allied-neutral-100);
  border-top: 2px dotted var(--allied-complementary);
}
.room-results-wrap h4 {
  margin: 0 0 8px;
  color: var(--allied-primary);
  font-size: 18px;
  line-height: 28px;
}

.room-inline-result {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  border-bottom: 1px solid #D0D0D0;
  padding-bottom: 25px;
}
@media (max-width: 760px) {
  .room-inline-result {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.result-pill {
  border: 1px solid #d7dde4;
  border-radius: 4px;
  background: #fff;
  padding: 7px 9px;
}
.result-pill span {
  display: block;
  color: #333333;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 2px;
}
.result-pill strong {
  color: #1f2e3c;
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
.result-pill.compliance {
  background: var(--allied-success-bg);
  border-color: var(--allied-success-border);
}
.result-pill.compliance strong {
  color: #2f6b21;
  font-size: 24px;
}
.result-pill.compliance.compliance--below_min, .result-pill.compliance.compliance--above_recommended {
  background: var(--allied-danger-soft);
  border-color: var(--allied-danger);
}
.result-pill.compliance.compliance--below_min strong, .result-pill.compliance.compliance--above_recommended strong {
  color: var(--allied-danger);
}

.notes-recommendation {
  margin-top: 10px;
  font-family: "DM Sans", sans-serif;
}
.notes-recommendation span {
  display: block;
  color: #445163;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.notes-recommendation p {
  margin: 0;
  color: var(--allied-primary);
  text-decoration: underline;
  font-size: 14px;
}
.notes-recommendation small.recommendation-auto-note {
  display: block;
  margin-top: 6px;
  color: var(--allied-muted);
  font-size: 12px;
}

.call-style-button {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  border: 1px solid #9fc0df;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--allied-surface);
  color: var(--allied-primary);
  transition: background-color 0.25s ease;
}
.call-style-button:hover, .call-style-button:focus {
  background: var(--allied-btn-hover);
}
.call-style-button:disabled {
  background: #cad8e6;
  border-color: #cad8e6;
  color: #7892aa;
  cursor: not-allowed;
}

.call-style-button__label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.call-style-button__icon-box {
  width: 45px;
  min-width: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.add-room-button {
  margin-top: 8px;
  transition: background-color 0.25s ease, transform 0.2s ease;
}
.add-room-button::before {
  content: "+";
  font-size: 16px;
  font-weight: 600;
  color: var(--allied-primary);
  background-color: var(--allied-btn-icon-bg);
  border-left: 1px solid #9fc0df;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% - 45px);
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.3s ease;
  z-index: 2;
}
.add-room-button::after {
  content: attr(data-text);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: calc(100% - 45px);
  background-color: var(--allied-btn-bg);
  color: var(--allied-primary);
  transition: left 0.3s ease;
  z-index: 1;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.add-room-button:not(:disabled):hover, .add-room-button:not(:disabled):focus {
  background: var(--allied-btn-bg);
  transform: translateY(-2px);
}
.add-room-button:not(:disabled):hover::before, .add-room-button:not(:disabled):focus::before {
  left: 0;
  border-left: none;
  border-right: 1px solid #9fc0df;
}
.add-room-button:not(:disabled):hover::after, .add-room-button:not(:disabled):focus::after {
  left: 45px;
}
.add-room-button .call-style-button__label,
.add-room-button .call-style-button__icon-box {
  position: relative;
  z-index: 0;
}

.report-button .download-icon-box img {
  width: 14px;
  height: 14px;
  display: block;
}

.call-style-button.report-button {
  background: var(--allied-primary);
  border-color: var(--allied-primary);
  color: #fff;
}
.call-style-button.report-button::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23ffffff%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4%27/%3E%3Cpolyline points=%277 10 12 15 17 10%27/%3E%3Cline x1=%2712%27 y1=%2715%27 x2=%2712%27 y2=%273%27/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-color: var(--allied-accent);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% - 45px);
  width: 45px;
  transition: left 0.3s ease;
  z-index: 2;
}
.call-style-button.report-button::after {
  content: attr(data-text);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: calc(100% - 45px);
  background: var(--allied-primary);
  transition: left 0.3s ease;
  z-index: 1;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.call-style-button.report-button:not(:disabled):hover, .call-style-button.report-button:not(:disabled):focus {
  background: var(--allied-primary);
}
.call-style-button.report-button:not(:disabled):hover::before, .call-style-button.report-button:not(:disabled):focus::before {
  left: 0;
  border-left: none;
}
.call-style-button.report-button:not(:disabled):hover::after, .call-style-button.report-button:not(:disabled):focus::after {
  left: 45px;
}
.call-style-button.report-button:disabled {
  background: #cad8e6;
  border-color: #cad8e6;
  color: #7892aa;
}
.call-style-button.report-button:disabled::before, .call-style-button.report-button:disabled::after {
  display: none;
}
.call-style-button.report-button .call-style-button__label,
.call-style-button.report-button .call-style-button__icon-box {
  position: relative;
  z-index: 0;
}
.call-style-button.report-button .call-style-button__icon-box {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
}

.field-warning {
  margin: 4px 0 0;
  color: var(--allied-danger);
  font-size: 11px;
  font-weight: 600;
}

.cleanroom-results-preview {
  border: 1px solid var(--allied-border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--allied-panel);
}
.cleanroom-results-preview h3 {
  margin: 0;
  padding: 11px 14px;
  background: #ddddde;
  color: var(--allied-primary);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.results-summary {
  padding: 12px 12px 0;
  background-color: var(--allied-surface);
}

.result-item .label {
  color: var(--allied-primary);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.result-item .value {
  display: block;
  color: #1f2e3c;
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  margin-top: 6px;
}
.result-item .value small {
  color: #27374a;
  font-size: 30px;
  font-weight: 500;
}
.result-item.big {
  margin-bottom: 12px;
}

.summary-table-wrap {
  border: 1px solid var(--allied-border);
  border-radius: 4px;
  overflow-x: auto;
  margin-bottom: 10px;
  background: #fff;
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
}
.summary-table th,
.summary-table td {
  border-bottom: 1px solid #e7eaef;
  padding: 9px 10px;
  text-align: left;
}
.summary-table thead th {
  background: var(--allied-neutral-100);
  color: var(--allied-primary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.01em;
}
.summary-table tbody td:first-child {
  color: var(--allied-primary);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.summary-table tbody td:not(:first-child) {
  font-weight: 700;
  font-size: 15px;
  color: var(--allied-text);
}
.summary-table tbody tr:last-child td {
  border-bottom: 0;
}

.result-item--inline .value {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-top: 4px;
}
.result-item--inline .value small {
  display: inline;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
}

.result-grid.compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.result-grid.compact .result-item .value {
  font-size: 42px;
}
.result-grid.compact .result-item small {
  display: block;
  color: #333333;
  font-size: 12px;
}
.result-grid.compact .result-item--inline .value {
  font-size: 24px;
}
.result-grid.compact .result-item--inline .value small {
  display: inline;
  font-size: 14px;
}

.result-step-note {
  margin: 10px 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  color: var(--allied-muted);
}

.cta-preview {
  background-color: var(--allied-surface);
  padding: 12px;
}

.bookmark-wrap {
  padding: 10px 12px 12px;
  text-align: center;
}

.bookmark-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--allied-border);
  border-radius: 6px;
  color: var(--allied-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.bookmark-btn svg {
  flex-shrink: 0;
}
.bookmark-btn:hover {
  color: var(--allied-primary);
  border-color: var(--allied-primary);
}

.bookmark-hint {
  margin: 8px 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  color: var(--allied-muted);
}
.bookmark-hint kbd {
  display: inline-block;
  background: #f0f2f5;
  border: 1px solid #c8ced6;
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 11px;
  font-family: monospace;
  color: #1f2e3c;
  line-height: 1.4;
}

.tiny-text {
  margin: 8px 0 0;
  font-family: "DM Sans", sans-serif;
  color: #697789;
  font-size: 12px;
}
.tiny-text--warning {
  color: var(--allied-danger);
}

.cleanroom-report-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
}

.cleanroom-report-modal.is-open {
  display: block;
}

.cleanroom-report-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 27, 44, 0.6);
}

.cleanroom-report-modal__dialog {
  position: relative;
  width: min(680px, 100% - 24px);
  margin: 7vh auto;
  background: var(--allied-primary);
  border-radius: 8px;
  padding: 18px 18px 14px;
  box-shadow: 0 20px 40px rgba(2, 16, 30, 0.28);
  max-height: 86vh;
  overflow-y: auto;
}
.cleanroom-report-modal__dialog h3#allied-cleanroom-calc-1-title {
  margin: 0 24px 12px 0;
  color: var(--allied-surface);
  font-size: 24px;
}

.cleanroom-report-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 1px solid #d5dde7;
  border-radius: 4px;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #5a6776;
}

.cleanroom-report-modal__notice {
  background: #f6f8fb;
  border: 1px solid #d9e1eb;
  padding: 12px;
  border-radius: 6px;
  color: #435365;
}

body.cleanroom-modal-open {
  overflow: hidden;
}

.cleanroom-report-modal__form div.wpforms-container-full .wpforms-field-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cleanroom-report-modal__form .wpforms-container.wpforms-container-full .wpforms-form .wpforms-submit-container {
  width: 100% !important;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-field {
  margin: 0;
  padding: 0;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-field-label,
.cleanroom-report-modal__form div.wpforms-container-full legend.wpforms-field-label {
  display: block;
  margin-bottom: 5px;
  color: var(--allied-surface);
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  border: none;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-field-sublabel {
  font-size: 11px;
  color: var(--allied-surface);
  margin-top: 4px;
  font-weight: 400;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-required-label {
  color: var(--allied-danger);
}
.cleanroom-report-modal__form .wpforms-confirmation-container-full.wpforms-confirmation-scroll p {
  color: var(--allied-surface);
}
.cleanroom-report-modal__form div.wpforms-container-full input[type=text],
.cleanroom-report-modal__form div.wpforms-container-full input[type=email],
.cleanroom-report-modal__form div.wpforms-container-full input[type=tel],
.cleanroom-report-modal__form div.wpforms-container-full textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--allied-border);
  border-radius: 4px;
  padding: 8px 12px;
  box-sizing: border-box;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--allied-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: none;
}
.cleanroom-report-modal__form div.wpforms-container-full input[type=text]:focus,
.cleanroom-report-modal__form div.wpforms-container-full input[type=email]:focus,
.cleanroom-report-modal__form div.wpforms-container-full input[type=tel]:focus,
.cleanroom-report-modal__form div.wpforms-container-full textarea:focus {
  border-color: var(--allied-primary);
  outline: none;
  box-shadow: 0 0 0 1px rgba(27, 95, 159, 0.12);
}
.cleanroom-report-modal__form div.wpforms-container-full textarea {
  min-height: 90px;
  resize: vertical;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-field-row {
  display: flex;
  gap: 12px;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-field-row .wpforms-field-row-block {
  flex: 1;
  min-width: 0;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-field-layout-rows .wpforms-layout-row {
  display: flex;
  gap: 12px;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-field-layout-rows .wpforms-layout-row .wpforms-layout-column {
  flex: 1;
  min-width: 0;
}
.cleanroom-report-modal__form div.wpforms-container-full .iti {
  width: 100%;
}
.cleanroom-report-modal__form div.wpforms-container-full .iti input[type=tel] {
  padding-left: 54px;
}
.cleanroom-report-modal__form div.wpforms-container-full .iti .iti__selected-country {
  background: #f3f4f6;
  border-right: 1px solid var(--allied-border);
  height: 100%;
  padding: 0 8px;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-submit-container {
  margin-top: 6px;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  background: var(--allied-surface) !important;
  color: var(--allied-primary) !important;
  border: 1px solid var(--allied-primary);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.25s ease;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-submit::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%231b5f9f%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4%27/%3E%3Cpolyline points=%277 10 12 15 17 10%27/%3E%3Cline x1=%2712%27 y1=%2715%27 x2=%2712%27 y2=%273%27/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-color: var(--allied-btn-icon-bg);
  border-left: 1px solid #9fc0df;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% - 45px);
  width: 45px;
  transition: left 0.3s ease;
  z-index: 2;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-submit::after {
  content: attr(data-submit-text);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: calc(100% - 45px);
  background: var(--allied-btn-bg);
  color: var(--allied-primary);
  transition: left 0.3s ease;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  padding: 0 8px;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-submit:not(:disabled):hover {
  background: var(--allied-btn-bg) !important;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-submit:not(:disabled):hover::before {
  left: 0;
  border-left: none;
  border-right: 1px solid #9fc0df;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-submit:not(:disabled):hover::after {
  left: 45px;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-submit:disabled {
  background: #cad8e6;
  border-color: #cad8e6;
  color: #7892aa;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-submit:disabled::before, .cleanroom-report-modal__form div.wpforms-container-full .wpforms-submit:disabled::after {
  display: none;
}
.cleanroom-report-modal__form div.wpforms-container-full .wpforms-error {
  color: var(--allied-danger);
  font-size: 12px;
  margin-top: 4px;
  font-weight: 600;
  display: block;
}
.cleanroom-report-modal__form div.wpforms-container-full input.wpforms-error,
.cleanroom-report-modal__form div.wpforms-container-full textarea.wpforms-error {
  border-color: var(--allied-danger) !important;
  box-shadow: none;
  background: #fff8f8;
}
@media (max-width: 520px) {
  .cleanroom-report-modal__form div.wpforms-container-full .wpforms-field-row,
  .cleanroom-report-modal__form div.wpforms-container-full .wpforms-field-layout-rows .wpforms-layout-row {
    flex-direction: column;
    gap: 14px;
  }
}

/*# sourceMappingURL=style-index.css.map*/