.boton-de-baja {
  --card-radius: 22px;
  --card-padding-y: 44px;
  --card-padding-x: 44px;

  --field-border: #d7d7d7;
  --field-text: #222;
  --field-placeholder: #6b6b6b;

  --title-color: #006098;
  --error-color: #d60000;

  --button-bg: #0b5f8b;
  --button-text: #ffffff;

  --success-color: #1f8a4c;
  --success-bg: #eaf7f0;
}

.boton-de-baja .baja-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: var(--card-padding-y) var(--card-padding-x);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);

  width: 100%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.boton-de-baja .baja-card-title {
  margin: 0 0 18px;
  font-family: "DIN PRO", Sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--title-color);
}

.boton-de-baja .baja-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 10px !important;
}

@media (min-width: 768px) {
  .boton-de-baja .baja-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 10px !important;
    column-gap: 12px !important;
  }

  .boton-de-baja .baja-field-full {
    grid-column: 1 / -1;
  }
}

.boton-de-baja .baja-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.boton-de-baja .baja-input {
  width: 100%;
  height: 48px !important;
  border: 1px solid var(--field-border);
  border-radius: 2px;
  padding: 0 16px !important;
  font-size: 15px !important;
  color: var(--field-text);
  background: #fff;
  outline: none;
  box-sizing: border-box;
}

.boton-de-baja .baja-input::placeholder {
  color: var(--field-placeholder);
}

.boton-de-baja select.baja-input {
  font-weight: 400 !important;
  color: var(--field-placeholder) !important;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  padding-right: 44px !important;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0h10L5 6z' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px 6px;
}

.boton-de-baja select.baja-input::-ms-expand {
  display: none;
}

.boton-de-baja .baja-file-label {
  margin: 2px 0 6px !important;
  font-size: 13px;
  color: #5a5a5a;
}

.boton-de-baja .baja-file {
  width: 100%;
  font-size: 13px;
}

.boton-de-baja .baja-error {
  font-size: 12px;
  color: var(--error-color);
  margin-top: 4px !important;
  min-height: 0 !important;
}

.boton-de-baja .baja-error:empty {
  display: none !important;
}

.boton-de-baja .baja-actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-top: 8px;
}

.boton-de-baja .baja-button {
  min-width: 240px;
  height: 54px;
  border: 0;
  border-radius: 9999px;
  padding: 0 26px;
  font-size: 22px;
  font-weight: 700;
  background: var(--button-bg);
  color: var(--button-text);
  cursor: pointer;
}

.boton-de-baja .baja-button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.boton-de-baja .baja-success[hidden] {
  display: none !important;
}

.boton-de-baja .baja-success {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.boton-de-baja .baja-success .elementor-message.baja-success-icon {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;

  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;

  background: transparent !important;
  border-radius: 0 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.boton-de-baja .baja-success .elementor-message.baja-success-icon::before {
  content: "" !important;
  width: 18px !important;
  height: 18px !important;
  display: block !important;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%231f8a4c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 18px 18px !important;
}

.boton-de-baja .baja-success-text {
  line-height: 1.2 !important;
}

.boton-de-baja .is-hidden {
  display: none;
}

@media (min-width: 1024px) {
  .module-root.boton-de-baja {
    width: 620px !important;
    max-width: 620px !important;
    flex: 0 0 620px !important;
    min-width: 620px !important;
  }

  .module-root.boton-de-baja .baja-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 1023px) {
  .module-root.boton-de-baja {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  .module-root.boton-de-baja .baja-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}

body.page-id-173 .grecaptcha-badge {
  left: 24px !important;
  right: auto !important;
  bottom: 24px !important;
  z-index: 999999 !important;
}

.baja-success[hidden] {
  display: none !important;
}