.wc-cart-actions__action--montage-live {
  border-color: #16834a;
  background: #eaf8f0;
  color: #0f683a;
}

.wc-cart-actions__action--montage-live .wc-cart-actions__icon {
  background: #16834a;
  color: #fff;
}

.wc-montage-live {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(9, 15, 26, .62);
}

.wc-montage-live__panel {
  width: min(100%, 680px);
  max-height: calc(100dvh - 40px);
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
}

.wc-montage-live__panel header,
.wc-montage-live__body {
  padding: 20px 24px;
}

.wc-montage-live__panel header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #dde4df;
}

.wc-montage-live__panel h2,
.wc-montage-live__panel p {
  margin: 0 0 8px;
}

.wc-montage-live__close {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

.wc-montage-live__scopes {
  margin: 0 0 16px;
  padding: 12px 14px 8px;
  border: 1px solid #cbd8cf;
  border-radius: 6px;
  background: #f6faf7;
}

.wc-montage-live__scopes legend {
  font-weight: 600;
  padding: 0 4px;
}

.wc-montage-live__scopes-hint {
  margin: 0 0 12px !important;
  color: #4a5c52;
  font-size: 12px;
}

.wc-montage-live__scope-row {
  display: grid;
  grid-template-columns: minmax(110px, 1.1fr) 2fr;
  gap: 8px 12px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #dce6df;
}

.wc-montage-live__scope-label {
  font-size: 13px;
  font-weight: 600;
  color: #1f2d26;
}

.wc-montage-live__scope-cells {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.wc-montage-live__scope-cell {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  margin: 0 !important;
  font-size: 13px;
  font-weight: 400;
}

@media (max-width: 560px) {
  .wc-montage-live__scope-row {
    grid-template-columns: 1fr;
  }
}

.wc-montage-live__postal {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.wc-montage-live__postal input {
  width: min(100%, 240px);
  padding: 10px 12px;
}

.wc-montage-live fieldset {
  display: flex;
  gap: 16px;
  margin: 0 0 16px;
  padding: 14px;
  border: 1px solid #cbd8cf;
}

.wc-montage-live__error {
  min-height: 20px;
  color: #a02520;
}

.wc-montage-live__quote {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #b9d8c5;
  border-radius: 6px;
  background: #f4fbf7;
}

.wc-montage-live__quote > div,
.wc-montage-live__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wc-montage-live__quote ul {
  margin: 10px 0;
}

.wc-montage-live__actions {
  margin-top: 20px;
  justify-content: flex-end;
}

@media (max-width: 600px) {
  .wc-montage-live {
    align-items: flex-start;
    padding: 10px;
  }

  .wc-montage-live__panel {
    max-height: calc(100dvh - 20px);
  }

  .wc-montage-live fieldset,
  .wc-montage-live__actions {
    align-items: stretch;
    flex-direction: column;
  }
}