/* ZELMIO_NON_INTRUSIVE_WELCOME */

.zelmio-welcome-banner {
  width: 100%;
  box-sizing: border-box;
  background:
    linear-gradient(
      90deg,
      #111827,
      #312e81
    );
  color: #fff;
}

.zelmio-welcome-inner {
  width: min(1180px, calc(100% - 30px));
  min-height: 52px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 0;
  box-sizing: border-box;
}

.zelmio-welcome-copy {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.3;
}

.zelmio-welcome-copy strong {
  white-space: nowrap;
}

.zelmio-welcome-copy span {
  color: rgba(255,255,255,.86);
  font-size: 14px;
}

.zelmio-welcome-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 13px;
  border-radius: 9px;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.zelmio-welcome-close {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}


/* PROGRESO ENVÍO */

.zelmio-shipping-progress {
  width: 100%;
  box-sizing: border-box;
  margin: 11px 0;
  padding: 11px 12px;
  border-radius: 11px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.zelmio-shipping-progress-text {
  margin-bottom: 7px;
  color: #374151;
  font-size: 12px;
  font-weight: 750;
}

.zelmio-shipping-progress-track {
  overflow: hidden;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
}

.zelmio-shipping-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      #7065f0,
      #8b7cf6
    );
  transition: width .2s ease;
}

.zelmio-shipping-progress.done
.zelmio-shipping-progress-fill {
  background:
    linear-gradient(
      90deg,
      #12b76a,
      #32d583
    );
}


@media (max-width: 700px) {

  .zelmio-welcome-inner {
    width: calc(100% - 20px);
    justify-content: flex-start;
    gap: 9px;
  }

  .zelmio-welcome-copy {
    flex: 1;
    display: grid;
    gap: 1px;
  }

  .zelmio-welcome-copy span {
    font-size: 11px;
  }

  .zelmio-welcome-cta {
    padding: 6px 9px;
    font-size: 11px;
  }

  .zelmio-welcome-close {
    width: 29px;
    height: 29px;
  }
}
