/* ─────────────────────────────────────────
   DCP Form Styles
   ───────────────────────────────────────── */

#dcp-form-wrapper {
  max-width: 835px;
  margin: 0 auto;
  color: #1d1c1c;
}

/* Sections */
.dcp-section {
  margin-bottom: 50px;
}

.dcp-section-title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #000;
}

/* Grid */
.dcp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 20px;
}

.dcp-full {
  grid-column: 1 / -1;
}

/* Fields */
.dcp-field {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dcp-field label {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
}

.dcp-req {
  color: #000;
}
.dcp-hint {
  font-size: 11px;
  color: #aaa;
  font-style: italic;
}

/* Inputs */
.dcp-field input[type="text"],
.dcp-field input[type="email"],
.dcp-field input[type="number"],
.dcp-field select,
.dcp-field textarea {
  padding: 19px;
  border: 1px solid #1d1c1c;
  border-radius: 20px;
  font-size: 20px;
  line-height: 28px;
  background: #fff;
  color: #1d1c1c;
  font-family: inherit;
}

.dcp-field input:focus,
.dcp-field select:focus,
.dcp-field textarea:focus {
  outline: none;
}

.dcp-field textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── Dropzone ── */
#dcp-dropzone {
  position: relative;
  border: 1px solid #1d1c1c;
  border-radius: 10px;
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  background: transparent;
  transition:
    border-color 0.2s,
    background 0.2s;
}

#dcp-dropzone:hover {
  background: #fff;
}

#dcp-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

#dcp-dropzone.dcp-dragover {
  border-color: #1a1a1a;
  background: #f0f0f0;
}

.dcp-dropzone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1d1c1c;
  pointer-events: none;
}

.dcp-drop-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #1d1c1c;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 16px;
}
.dcp-drop-sub {
  font-size: 16px;
  line-height: 20px;
  color: #1d1c1c;
  margin: 0;
}
.dcp-drop-note {
  font-size: 11px;
  color: #bbb;
  margin: 0;
}
.alt-upload-text {
  margin-top: 28px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #1d1c1c;
  font-weight: 500;
}

.dcp-browse-link {
  text-decoration: underline;
  color: #1a1a1a;
}

/* File info */
#dcp-file-info {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  text-align: center;
}

.dcp-file-check {
  font-size: 24px;
  color: #2e7d32;
  font-weight: 700;
  line-height: 1;
}

#dcp-file-name {
  font-size: 18px;
  font-weight: 600;
  color: #1d1c1c;
  word-break: break-all;
}

.dcp-file-complete {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #1d1c1c;
}

#dcp-file-delete {
  gap: 8px;
  margin-top: 24px;
  padding: 8px 16px;
  background: none;
  border: 1.5px solid #ca3637;
  border-radius: 8px;
  color: #ca3637;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
}

#dcp-file-delete:hover {
  background: #ca3637;
  color: #e3d9cf;
}

#dcp-file-delete svg,
#dcp-file-delete svg path {
  transition: all ease 0.4s;
}

#dcp-file-delete:hover svg path {
  fill: #e3d9cf;
}

#dcp-file-name {
  font-weight: 500;
  word-break: break-all;
}
.dcp-autofill-badge {
  font-size: 11px;
  color: #2e7d32;
  white-space: nowrap;
}

#dcp-file-error {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  text-align: center;
}

.dcp-file-error-icon {
  font-size: 28px;
  color: #c62828;
}

#dcp-file-error-name {
  font-size: 18px;
  font-weight: 600;
  color: #c62828;
  word-break: break-all;
}

.dcp-file-error-msg {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #1d1c1c;
  margin: 0;
}

.dcp-file-error-formats {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #1d1c1c;
  margin: 0;
}

#dcp-file-retry {
  gap: 8px;
  margin-top: 24px;
  padding: 8px 16px;
  background: none;
  border: 1.5px solid #1d1c1c;
  border-radius: 8px;
  color: #1d1c1c;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
}

#dcp-file-retry:hover {
  background: #f5f5f5;
}

/* ── Radio groups ── */
.dcp-radio-group {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 10px 0;
}

.dcp-radio-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #1a1a1a;
  cursor: pointer;
}

/* ── Language multi-select ── */
.dcp-lang-box {
  position: relative;
  border: 1px solid #1d1c1c;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.dcp-lang-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px;
  cursor: pointer;
  font-size: 20px;
  color: #1d1c1c;
  user-select: none;
}

.dcp-lang-trigger svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.dcp-lang-box.open .dcp-lang-trigger svg {
  transform: rotate(180deg);
}

.dcp-lang-panel {
  display: none;
  max-height: 220px;
  overflow-y: auto;
  border-top: 1px solid #e0e0e0;
  padding: 8px 0;
}

.dcp-lang-box.open .dcp-lang-panel {
  display: block;
}

.dcp-lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 19px;
  font-size: 16px;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #1d1c1c;
  cursor: pointer;
  transition: background 0.1s;
}

.dcp-lang-item:hover {
  background: #e3d9cf;
}

.dcp-lang-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #1a1a1a;
}

/* ── Steppers ── */
.dcp-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #1d1c1c;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  height: 66px;
}

.dcp-step-btn {
  width: 66px;
  height: 100%;
  background: transparent !important;
  border: none;
  font-size: 24px;
  font-weight: 700 !important;
  color: #1d1c1c !important;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
  border: none !important;
  outline: none;
  padding: 0 40px !important;
}

.dcp-step-btn:hover {
  color: #1d1c1c !important;
}

.dcp-step-val {
  flex: 1;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: #1d1c1c;
  line-height: 66px;
}

/* ── Consent ── */
.dcp-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 20px;
  color: #1d1c1c;
  cursor: pointer;
  margin-top: 16px;
  font-weight: 500;
}

.dcp-consent-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Cost bar (matches mockup) ── */
.dcp-cost-label-text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #1d1c1c;
  margin-bottom: 14px;
}

.dcp-cost-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  background: #1a1a1a;
  border-radius: 50px;
}

#dcp-total {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
  line-height: 32px;
}

#dcp-action-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0;
  transition: opacity 0.15s;
}

#dcp-action-btn:hover:not(:disabled) {
  opacity: 0.7;
}

#dcp-action-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Messages ── */
#dcp-message {
  display: none;
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
}

.dcp-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.dcp-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* ── Or divider ── */
.dcp-or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  color: #aaa;
  font-size: 13px;
}
.dcp-or-divider::before,
.dcp-or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

/* ── Provider buttons ── */
.dcp-provider-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.dcp-provider-btn {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 12px 20px !important;
  border: 1px solid #1d1c1c !important;
  border-radius: 12px !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 500 !important;
  color: #1d1c1c !important;
  cursor: pointer;
  transition: all ease 0.4s;
}

.dcp-provider-btn:hover {
  background: #fff !important;
}

.dcp-provider-btn.active {
  border-color: #1a1a1a;
  background: #f5f5f5;
}

/* ── Link info bar ── */
#dcp-link-info {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 16px;
  background: #f0f7f0;
  border: 1px solid #c3e0c3;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
}

#dcp-link-preview {
  flex: 1;
  font-weight: 500;
  word-break: break-all;
}

#dcp-link-clear {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-size: 16px;
  padding: 0 4px;
  line-height: 1;
}

#dcp-link-clear:hover {
  color: #c62828;
}

/* ── Modal overlay ── */
#dcp-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

#dcp-modal-overlay.open {
  display: flex;
}

/* ── Modal box ── */
#dcp-modal {
  position: relative;
  background: #e3d9cf;
  border-radius: 16px;
  padding: 80px;
  width: 100%;
  max-width: 830px;
  margin: 20px;
}

#dcp-modal-close {
  position: absolute;
  top: 40px;
  right: 80px;
  background: none;
  border: none;
  font-size: 16px;
  font-family: "Zalando Sans", sans-serif;
  color: #1d1c1c;
  padding: 0;
  cursor: pointer;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#dcp-modal-close:hover {
  color: #000;
}

#dcp-modal-title {
  font-size: 32px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 40px;
  margin-bottom: 20px;
}

.dcp-modal-field {
  margin-bottom: 20px;
}

.dcp-modal-field label {
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 28px;
  color: #1d1c1c;
  margin-bottom: 8px;
}

.dcp-modal-field input[type="url"],
.dcp-modal-field input[type="text"],
.dcp-modal-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #1d1c1c;
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  font-family: "Zalando Sans", sans-serif;
  color: #1d1c1c;
  box-sizing: border-box;
  appearance: auto;
}

.dcp-modal-field input:focus,
.dcp-modal-field select:focus {
  outline: none;
  border-color: #1a1a1a;
}

.button-div {
  display: flex;
  margin-top: 60px;
  justify-content: center;
}

#dcp-modal-save {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  cursor: pointer;
  background-color: #ffffff00;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 24px;
  letter-spacing: 10%;
  color: #1d1c1c;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;
  border-style: solid;
  border-width: 0px 0px 2px 0px;
  border-color: #1d1c1c;
  border-radius: 0px 0px 0px 0px;
  padding: 12px 12px 12px 12px;
  opacity: 50%;
}

#dcp-modal-save:hover {
  background-color: #ffffff00;
  color: #e3d9cf;
  border-color: #ca3637;
  opacity: 1;
}

#dcp-modal-save::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ca3637;
  transition: top 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

#dcp-modal-save:hover::before {
  top: 0;
}

.woocommerce-checkout.woocommerce-page {
  background: #e3d9cf;
}

.woocommerce-checkout.woocommerce-page #order_review {
  display: flex;
  gap: 162px;
  flex-direction: row-reverse;
}

.woocommerce table.shop_table {
  height: fit-content;
  background: #fff;
  border-radius: 16px;
  border: none !important;
}

input[type="radio"],
input[type="checkbox"] {
  accent-color: #1d1c1c;
}

.dcp-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg width='10' height='5' viewBox='0 0 10 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 5L0 0H10L5 5Z' fill='%231D1C1C'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 10px;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .dcp-grid {
    grid-template-columns: 1fr;
  }
  .dcp-drop-title {
    font-size: 20px;
    line-height: 28px;
    margin-top: 16px;
    margin-bottom: 12px;
  }
  .dcp-drop-sub {
    font-size: 14px;
    line-height: 18px;
  }
  .alt-upload-text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 18px;
  }
  .dcp-provider-buttons {
    flex-direction: column;
  }
  .dcp-provider-btn {
    font-size: 16px !important;
    line-height: 20px !important;
    justify-content: center;
  }
  .dcp-lang-trigger {
    font-size: 16px;
  }
  .dcp-step-val {
    font-size: 16px;
    line-height: 20px;
  }
  .dcp-consent-label {
    font-size: 14px;
    line-height: 18px;
  }
  .dcp-cost-label-text {
    font-size: 14px;
    line-height: 18px;
  }
  #dcp-total {
    font-size: 20px;
    line-height: 28px;
  }
}

/* ─────────────────────────────────────────
   Thank You Page Upload — dcp-tu-* IDs
   (ίδια styles με τα αντίστοιχα dcp-* 
    χωρίς να αγγίξουμε τα παλιά)
   ───────────────────────────────────────── */

/* Dropzone */
#dcp-tu-dropzone {
  position: relative;
  border: 1px solid #1d1c1c;
  border-radius: 10px;
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  background: transparent;
  transition:
    border-color 0.2s,
    background 0.2s;
}

#dcp-tu-dropzone:hover {
  background: #fff;
}

#dcp-tu-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

#dcp-tu-dropzone.dcp-dragover {
  border-color: #1a1a1a;
  background: #f0f0f0;
}

/* File info */
#dcp-tu-file-info {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  text-align: center;
}

#dcp-tu-file-name {
  font-size: 18px;
  font-weight: 600;
  color: #1d1c1c;
  word-break: break-all;
}

#dcp-tu-file-delete {
  gap: 8px;
  margin-top: 24px;
  padding: 8px 16px;
  background: none;
  border: 1.5px solid #ca3637;
  border-radius: 8px;
  color: #ca3637;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
}

#dcp-tu-file-delete:hover {
  background: #ca3637;
  color: #e3d9cf;
}

#dcp-tu-file-delete svg,
#dcp-tu-file-delete svg path {
  transition: all ease 0.4s;
}

#dcp-tu-file-delete:hover svg path {
  fill: #e3d9cf;
}

/* File error */
#dcp-tu-file-error {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  text-align: center;
}

#dcp-tu-file-error-name {
  font-size: 18px;
  font-weight: 600;
  color: #c62828;
  word-break: break-all;
}

#dcp-tu-file-retry {
  gap: 8px;
  margin-top: 24px;
  padding: 8px 16px;
  background: none;
  border: 1.5px solid #1d1c1c;
  border-radius: 8px;
  color: #1d1c1c;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
}

#dcp-tu-file-retry:hover {
  background: #f5f5f5;
}

/* Link info */
#dcp-tu-link-info {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 16px;
  background: #f0f7f0;
  border: 1px solid #c3e0c3;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
}

#dcp-tu-link-preview {
  flex: 1;
  font-weight: 500;
  word-break: break-all;
}

#dcp-tu-link-clear {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-size: 16px;
  padding: 0 4px;
  line-height: 1;
}

#dcp-tu-link-clear:hover {
  color: #c62828;
}

/* Modal overlay */
#dcp-tu-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

#dcp-tu-modal-overlay.open {
  display: flex;
}

/* Modal box */
#dcp-tu-modal {
  position: relative;
  background: #e3d9cf;
  border-radius: 16px;
  padding: 80px;
  width: 100%;
  max-width: 830px;
  margin: 20px;
}

#dcp-tu-modal-close {
  position: absolute;
  top: 40px;
  right: 80px;
  background: none;
  border: none;
  font-size: 16px;
  color: #1d1c1c;
  padding: 0;
  cursor: pointer;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#dcp-tu-modal-close:hover {
  color: #000;
}

#dcp-tu-modal-title {
  font-size: 32px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 40px;
  margin-bottom: 20px;
}

#dcp-tu-modal-save {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  cursor: pointer;
  background-color: #ffffff00;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  color: #1d1c1c;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;
  border-style: solid;
  border-width: 0px 0px 2px 0px;
  border-color: #1d1c1c;
  border-radius: 0;
  padding: 12px;
  opacity: 50%;
}

#dcp-tu-modal-save:hover {
  background-color: #ffffff00;
  color: #e3d9cf;
  border-color: #ca3637;
  opacity: 1;
}

#dcp-tu-modal-save::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ca3637;
  transition: top 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

#dcp-tu-modal-save:hover::before {
  top: 0;
}

/* Password row */
#dcp-tu-password-row {
  display: none;
}

/* Progress bar */
#dcp-tu-progress-wrap {
  display: none;
  margin-top: 16px;
}

#dcp-tu-status {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

#dcp-tu-progress-bar-track {
  background: #e0e0e0;
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
}

/* see animated version below */

#dcp-tu-pct {
  font-size: 13px;
  color: #999;
  margin-top: 6px;
  text-align: right;
}

/* Success */
#dcp-tu-success {
  display: none;
  text-align: center;
  padding: 32px 24px;
  background: #f0f7f0;
  border: 1px solid #c3e0c3;
  border-radius: 10px;
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #1d1c1c;
}

.upload-section-tu-page {
  max-width: 830px !important;
  width: 100% !important;
}

#dcp-tu-cloud-received {
  color: #1d1c1c;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}

/* ── Progress bar animation ── */
#dcp-tu-progress-bar {
  height: 100%;
  border-radius: 50px;
  width: 0%;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  transition: width 0.6s ease;
}

/* Shine overlay που τρέχει πάνω από την μπάρα */
#dcp-tu-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: dcp-shine 1.8s infinite ease-in-out;
}

@keyframes dcp-shine {
  0% {
    left: -60%;
  }
  100% {
    left: 110%;
  }
}

/* Ποσοστό — μέσα στη μπάρα */
#dcp-tu-progress-wrap .dcp-progress-row {
  position: relative;
  height: 32px;
  background: #fff;
  color: #ca3637;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 50px;
}

#dcp-tu-pct {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 600;
  color: #ca3637;
  z-index: 2;
  margin: 0;
  text-align: right;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  #dcp-tu-modal {
    padding: 40px 24px;
  }
  #dcp-tu-modal-close {
    top: 20px;
    right: 24px;
  }
  #dcp-tu-modal-title {
    font-size: 22px;
    line-height: 28px;
  }
}
