body.popup-estimation-open {
  overflow: hidden;
}

.popup-estimation-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.popup-estimation-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.popup-estimation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 40, 0.55);
  backdrop-filter: blur(10px);
}

.popup-estimation-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  width: min(1020px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 32px));
  align-items: stretch;
  overflow: hidden;
}

.popup-estimation-close {
  cursor: pointer;
  display: flex;
  position: absolute;
  top: 30px;
  right: 80px;
  z-index: 4;
  background: transparent;
  border: none;
  padding: 0;
}

.popup-estimation-close svg {
  width: 18px;
  height: 18px;
  fill: #85d424;
  transition: 0.3s ease;
}

.popup-estimation-close:hover svg {
  fill: #549208;
  transform: scale(1.08);
}

.popup-estimation-close:focus,
.popup-estimation-close:active {
  outline: none;
  box-shadow: none;
  border: none;
}

/* Sidebar */
.popup-estimation-sidebar {
  position: relative;
  width: 260px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transform: translateY(20px);
  text-align: left;
  margin: 12px 0 12px 50px;
  padding: 18px 14px 18px 18px;
  border-radius: 6px;
  background: url("images/131.png") center center / cover no-repeat;
  background-size: 130% 380%;
  box-shadow: 0 22px 54px rgba(28, 18, 115, 0.34);
  color: #ffffff;
}

.popup-estimation-sidebar::after {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 10px;
  left: 45px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.58),
    rgba(255, 255, 255, 0.16)
  );
}

.popup-estimation-step-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

.popup-estimation-step-list::-webkit-scrollbar {
  display: none;
}

.popup-estimation-step-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
}

.popup-estimation-step-item strong,
.popup-estimation-step-item div span {
  display: block;
}

.popup-estimation-step-item strong {
  font-family: Montserrat, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  margin-left: 15px;
  margin-top: 15px;
  line-height: 1.2;
}

.popup-estimation-step-item span:last-child {
  margin-top: 2px;
  font-size: 0.68rem;
  margin-left: 15px;
  line-height: 1.2;
}

.popup-estimation-step-count {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 10px;
  margin-left: 15px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  align-self: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  color: #0e6e51;
}

.popup-estimation-step-item.is-active {
  color: #ffffff;
}

.popup-estimation-step-item.is-active .popup-estimation-step-count {
  color: #85d424;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.2);
}

.popup-estimation-step-item.is-complete .popup-estimation-step-count {
  background: #85d424;
  color: #182654;
}

/* Panel */
.popup-estimation-panel {
  width: 700px;
  height: 450px;
  min-height: 0;
  margin: 12px 18px 12px 10px;
  padding: 18px 20px 16px 30px;
  border-radius: 6px;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(35, 49, 108, 0.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
}

.popup-estimation-panel::-webkit-scrollbar {
  display: none;
}

/* Onglets */
.popup-estimation-tabs {
  display: flex;
  gap: 14px;
  padding: 0 34px 12px 0;
  border-bottom: 1px solid #eceffd;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.popup-estimation-tabs::-webkit-scrollbar {
  display: none;
}

.popup-estimation-tab {
  position: relative;
  padding-bottom: 4px;
  font-family: Montserrat, sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #000;
}

.popup-estimation-tab.is-active {
  color: #85d424;
}

.popup-estimation-tab.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #85d424 0%, #85d864 100%);
}

/* Formulaire */
.popup-estimation-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  margin-top:10px;
  min-height: 0;
  width: 100%;
  
}

.popup-estimation-heading {
  padding: 16px 14px 0 130px;
  min-height: 52px;
}

.popup-estimation-overline {
  margin: 0 0 7px !important;
  font-family: Montserrat, sans-serif;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0 !important;
  transform: none !important;
}

.popup-estimation-title {
  min-height: 20px;
  margin: 0 0 10px !important;
  font-family: Montserrat, sans-serif;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.15;
  color: #85d424;
  transform: none !important;
}

.popup-estimation-subtitle {
  margin: 0 !important;
  font-size: 10px !important;
  line-height: 1.3;
  color: #85d424;
  transform: none !important;
  min-height: 16px;
}

.popup-estimation-steps-wrap {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 4px 80px 0 80px;
  scrollbar-width: thin;
}

.popup-estimation-steps-wrap::-webkit-scrollbar {
  width: 8px;
}

.popup-estimation-steps-wrap::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 999px;
}

.popup-estimation-steps-wrap::-webkit-scrollbar-thumb {
  background: #85d424;
  border-radius: 999px;
}

.popup-estimation-step {
  display: none;
  width: 100%;
}

.popup-estimation-step.is-active {
  display: block;
  width: 100%;
}

/* Grilles */
.popup-estimation-field-grid,
.popup-estimation-choice-grid {
  display: grid;
  gap: 12px 14px;
  margin-top: 0 !important;
}

.popup-estimation-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.popup-estimation-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.popup-estimation-choice-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.popup-estimation-field-full {
  grid-column: 1 / -1;
}

/* Champs */
.popup-estimation-field {
  display: grid;
  gap: 10px;
}

.popup-estimation-field span,
.popup-estimation-group-title,
.popup-estimation-upload > span {
  font-family: Montserrat, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
}

.popup-estimation-field input,
.popup-estimation-field select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #d9f7d7;
  border-radius: 12px;
  background: #fbfcff;
  font-size: 0.88rem;
  color: #1f2747;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.popup-estimation-field input:focus,
.popup-estimation-field select:focus {
  outline: none;
  border-color: #85d424;
  box-shadow: 0 0 0 4px rgba(72, 89, 255, 0.12);
  background: #ffffff;
}

/* Cartes choix */
.popup-estimation-choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.popup-estimation-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.popup-estimation-choice-card span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid #d9f7d7;
  margin-top: 4px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fdfdff 0%, #f7f8ff 100%);
  font-family: Montserrat, sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.35;
  color: #2b345a;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.popup-estimation-choice-card input:checked + span {
  border-color: #85d424;
  background: linear-gradient(180deg, #eff2ff 0%, #ffffff 100%);
  box-shadow: 0 14px 28px rgba(66, 84, 255, 0.14);
  color: #85d424;
  transform: translateY(-2px);
}

.popup-estimation-choice-card input:focus-visible + span {
  outline: 3px solid rgba(72, 89, 255, 0.22);
  outline-offset: 2px;
}

/* Upload */
.popup-estimation-upload {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 14px;
  border: 1px dashed #e2e7ff;
  border-radius: 16px;
  background: linear-gradient(180deg, #fcfdff 0%, #f6f8ff 100%);
}

.popup-estimation-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.popup-estimation-upload strong {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 12px;
  background: #85d424;
  font-family: Montserrat, sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.popup-estimation-upload small {
  font-size: 0.67rem;
  line-height: 1.5;
  color: #7a83a7;
}

/* Consent */
.popup-estimation-consent {
  width: 100%;
  max-width: 100%;
  margin-top: 4px;
  box-sizing: border-box;
  display: grid;
  gap: 14px;
  padding: 18px 40px 18px 10px;
  border: 1px solid #e2e7ff;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfcff 0%, #f4f6ff 100%);
}

.popup-estimation-consent-box {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: 12px;
  line-height: 1.6;
  color: #273257;
}

.popup-estimation-consent-box span {
  min-width: 0;
}

.popup-estimation-consent-box input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #85d424;
}

.popup-estimation-consent p {
  margin: 0;
  font-size: 10px;
  margin-left: 30px;
  line-height: 1.6;
  color: #667094;;
}

/* Footer */
.popup-estimation-footer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 70px 0;
  margin-top: 14px;
  margin-bottom: 5px;
  background: #ffffff;
  border-top: 1px solid #eceffd;
  transform: none !important;
}

.popup-estimation-progress-block {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 12px;
}

.popup-estimation-progress-track {
  position: relative;
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: #e8ebfb;
  overflow: hidden;
}

.popup-estimation-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 16.6667%;
  border-radius: inherit;
  background: linear-gradient(135deg, #85d424 0%, #549208 100%);
  transition: width 0.25s ease;
}

.popup-estimation-progress-text {
  font-size: 0.78rem;
  color: #8690b3;
  white-space: nowrap;
}

.popup-estimation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.popup-estimation-btn {
  min-width: 116px;
  padding: 11px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s ease;
  font-size: 11px;
  background: #85d424;
  color: #ffffff;
}

.popup-estimation-btn:hover {
  background: #63aa0c;
  transform: translateY(-1px);
}

.popup-estimation-btn-secondary {
  background: #e5e7eb !important;
  color: #111827 !important;
  border: 1px solid #d1d5db !important;
}

.popup-estimation-btn-secondary:hover {
  background: #d1d5db !important;
  transform: translateY(-1px);
}

.popup-estimation-btn[hidden],
.popup-estimation-success[hidden],
.popup-estimation-step[hidden] {
  display: none !important;
}

/* Honeypot */
.popup-estimation-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Success / loader */
.popup-estimation-success {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 0px;
  padding: 12px 24px;
  background: transparent !important;
}

.popup-estimation-status {
  width: 480px;
  height: 250px;
  padding: 38px 32px;
  border-radius: 6px;
  background: url("images/131.png") center center / cover no-repeat;
  background-size: 130% 380%;
  box-shadow: 0 24px 60px rgba(45, 61, 255, 0.12);
  text-align: center;
  position: relative;
  z-index: 5;
}

.popup-estimation-status[hidden] {
  display: none !important;
}

.popup-estimation-loader {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 6px solid rgba(45, 61, 255, 0.12);
  border-top-color: #85d424;
  animation: popup-estimation-spin 0.9s linear infinite;
}

@keyframes popup-estimation-spin {
  to {
    transform: rotate(360deg);
  }
}

.popup-estimation-success-check {
  width: 62px;
  height: 62px;
  margin: 0 auto 2px;
  display: grid;
  place-items: center;
  color: #85d424;
}

.popup-estimation-success-check svg {
  width: 62px;
  height: 62px;
}

.popup-estimation-success-title {
  margin: 0 0 14px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.popup-estimation-success-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #fff;
}

.popup-estimation-done {
  width: 92px;
  height: 27px;
  margin-top: 5px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #85d424 0%, #85d424 100%);
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-estimation-done:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(45, 61, 255, 0.2);
}

/* Desktop narrower */
@media (max-width: 1199px) {
  .popup-estimation-dialog {
    grid-template-columns: 230px minmax(0, 1fr);
    width: min(960px, calc(100vw - 28px));
  }

  .popup-estimation-sidebar {
    margin-left: 18px;
  }

  .popup-estimation-panel {
    margin-left: 8px;
  }

  .popup-estimation-heading {
    padding: 16px 48px 0;
  }

  .popup-estimation-steps-wrap {
    padding: 4px 36px 0;
  }

  .popup-estimation-footer {
    padding: 14px 36px 0;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .popup-estimation-modal {
    padding: 12px;
    align-items: center;
  }

  .popup-estimation-dialog {
    grid-template-columns: 1fr;
    width: min(860px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
  }

  .popup-estimation-sidebar {
    width: auto;
    height: auto;
    margin: 0;
    padding: 54px 16px 14px;
    border-radius: 18px 18px 0 0;
    transform: none;
  }

  .popup-estimation-sidebar::after {
    display: none;
  }

  .popup-estimation-step-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(150px, 1fr);
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
  }

  .popup-estimation-step-item {
    min-width: 0;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
  }

  .popup-estimation-step-count {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
    margin: 0;
  }

  .popup-estimation-panel {
    margin: -6px 0 0;
    padding: 16px;
    border-radius: 18px;
    width: auto;
    height: auto;
  }

  .popup-estimation-tabs {
    gap: 10px;
    padding: 0 16px 12px;
  }

  .popup-estimation-tab {
    font-size: 0.66rem;
  }

  .popup-estimation-heading {
    padding: 16px 20px 0;
    min-height: 84px;
  }

  .popup-estimation-steps-wrap {
    padding: 4px 20px 0;
  }

  .popup-estimation-footer {
    padding: 14px 20px 0;
  }

  .popup-estimation-consent {
    padding: 18px 20px;
  }

  .popup-estimation-close {
    top: 16px;
    right: 16px;
  }

  .popup-estimation-success {
    min-height: 280px;
    padding: 16px;
  }

  .popup-estimation-status {
    width: min(380px, 100%);
    padding: 34px 24px;
    border-radius: 28px;
  }

  .popup-estimation-success-title {
    font-size: 1.6rem;
  }
}

/* Mobile inspired by app-card layout */
@media (max-width: 767px) {
  .popup-estimation-modal {
    padding: 0;
    align-items: stretch;
  }

  .popup-estimation-dialog {
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    display: block;
    border-radius: 0;
  }

  .popup-estimation-sidebar {
    display: none;
  }

  .popup-estimation-panel {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 18px 16px 16px;
    border-radius: 0;
    box-shadow: none;
  }

  .popup-estimation-close {
    top: 16px;
    right: 16px;
  }

  .popup-estimation-tabs {
    display: none;
  }

  .popup-estimation-form {
    margin-top: 28px;
  }

  .popup-estimation-heading {
    padding: 8px 4px 0;
    min-height: auto;
  }

  .popup-estimation-overline {
    font-size: 1rem !important;
    line-height: 1.25;
    text-transform: none;
    font-weight: 800;
  }

  .popup-estimation-title {
    font-size: 0.98rem !important;
    margin-bottom: 6px !important;
  }

  .popup-estimation-subtitle {
    font-size: 0.82rem !important;
    line-height: 1.5;
  }

  .popup-estimation-steps-wrap {
    padding: 14px 2px 0;
  }

  .popup-estimation-field-grid,
  .popup-estimation-choice-grid,
  .popup-estimation-choice-grid-compact {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .popup-estimation-field span,
  .popup-estimation-group-title,
  .popup-estimation-upload > span {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  .popup-estimation-field input,
  .popup-estimation-field select {
    min-height: 48px;
    border-radius: 12px;
    font-size: 0.9rem;
    padding: 0 14px;
  }

  .popup-estimation-choice-card span {
    min-height: 54px;
    padding: 14px;
    font-size: 0.9rem;
    border-radius: 14px;
  }

  .popup-estimation-upload {
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
  }

  .popup-estimation-upload strong {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    font-size: 0.76rem;
  }

  .popup-estimation-upload small {
    font-size: 0.74rem;
    line-height: 1.5;
  }

  .popup-estimation-consent {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .popup-estimation-consent-box {
    font-size: 0.84rem;
  }

  .popup-estimation-consent p {
    margin-left: 30px;
    font-size: 0.76rem;
  }

  .popup-estimation-footer {
    margin-top: auto;
    margin-bottom: 0;
    padding: 14px 0 4px;
    flex-direction: column;
    gap: 12px;
    border-top: none;
    background: #ffffff;
  }

  .popup-estimation-progress-block {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .popup-estimation-progress-text {
    text-align: center;
    font-size: 0.8rem;
  }

  .popup-estimation-actions {
    width: 100%;
    flex-direction: column-reverse;
    gap: 10px;
  }

  .popup-estimation-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    font-size: 0.92rem;
  }

  .popup-estimation-success {
    padding: 20px 8px;
    min-height: auto;
    flex: 1;
  }

  .popup-estimation-status {
    width: 100%;
    max-width: 340px;
    padding: 34px 22px 26px;
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(45, 61, 255, 0.12);
  }

  .popup-estimation-loader {
    width: 74px;
    height: 74px;
    margin-bottom: 22px;
  }

  .popup-estimation-success-check {
    width: 82px;
    height: 82px;
    margin-bottom: 18px;
  }

  .popup-estimation-success-check svg {
    width: 82px;
    height: 82px;
  }

  .popup-estimation-success-title {
    font-size: 1.9rem;
    margin-bottom: 10px;
  }

  .popup-estimation-success-text {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .popup-estimation-done {
    min-height: 50px;
    border-radius: 14px;
    font-size: 0.95rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .popup-estimation-panel {
    padding: 16px 14px 14px;
  }

  .popup-estimation-close {
    top: 14px;
    right: 14px;
  }

  .popup-estimation-overline {
    font-size: 0.94rem !important;
  }

  .popup-estimation-title {
    font-size: 0.92rem !important;
  }

  .popup-estimation-subtitle {
    font-size: 0.78rem !important;
  }

  .popup-estimation-field input,
  .popup-estimation-field select {
    font-size: 0.86rem;
  }

  .popup-estimation-choice-card span {
    font-size: 0.86rem;
  }

  .popup-estimation-status {
    padding: 30px 18px 22px;
    border-radius: 24px;
  }

  .popup-estimation-success-title {
    font-size: 1.6rem;
  }

  .popup-estimation-success-text {
    font-size: 0.88rem;
  }
}




.popup-estimation-upload-error {
  margin: 2px 0 0;
  font-size: 12px !important;
  line-height: 1.45;
  color: #d93025;
  font-weight: 600;
}

.popup-estimation-upload-error[hidden] {
  display: none !important;
}

.popup-estimation-upload.is-invalid {
  border-color: #f2b8b5;
  background: linear-gradient(180deg, #fff8f7 0%, #fff2f0 100%);
}



/* =========================
   Responsive popup estimation
   ========================= */

@media (max-width: 1399px) {
  .popup-estimation-dialog {
    width: min(960px, calc(100vw - 28px));
    max-height: min(700px, calc(100vh - 28px));
    grid-template-columns: 230px minmax(0, 1fr);
  }

  

@media (max-width: 1199px) {
  .popup-estimation-modal {
    padding: 14px;
  }

  .popup-estimation-dialog {
    width: min(900px, calc(100vw - 24px));
    max-height: min(680px, calc(100vh - 24px));
    grid-template-columns: 210px minmax(0, 1fr);
  }

  

@media (max-width: 991px) {
  .popup-estimation-modal {
    padding: 12px;
  }
  
@media (max-width: 767px) {
  .popup-estimation-modal {
    padding: 10px;
    align-items: flex-start;
  }

@media (max-width: 575px) {
  .popup-estimation-modal {
    padding: 8px;
  }

  
  










.popup-estimation-upload.is-invalid strong {
  background: #d93025;
}

