.pm-return-loop {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto;
  color: #f7f9ff;
}

.pm-return-loop[hidden] {
  display: none !important;
}

.pm-return-loop-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 200, 255, 0.28);
  border-left: 3px solid #00c8ff;
  border-radius: 8px;
  background: #0d111c;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.pm-return-loop-copy {
  min-width: 0;
}

.pm-return-loop-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #6fe3ff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.pm-return-loop-title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.pm-return-loop-text {
  max-width: 760px;
  margin: 6px 0 0;
  color: #b8c0d3;
  font-size: 14px;
  line-height: 1.45;
}

.pm-return-loop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 9px;
  color: #dce2ef;
  font-size: 12px;
  font-weight: 700;
}

.pm-return-loop-meta span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 7px 2px 0;
  border-radius: 50%;
  background: #19e58c;
}

.pm-return-loop-actions {
  display: flex;
  gap: 9px;
  align-items: center;
}

.pm-return-loop-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid #00c8ff;
  border-radius: 6px;
  background: #00c8ff;
  color: #041019;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.pm-return-loop-action:hover,
.pm-return-loop-action:focus-visible {
  background: #45d8ff;
  border-color: #45d8ff;
}

.pm-return-loop-progress {
  width: min(440px, 100%);
  height: 4px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.11);
}

.pm-return-loop-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: #19e58c;
}

@media (max-width: 720px) {
  .pm-return-loop {
    width: calc(100% - 24px);
    margin: 12px auto;
  }

  .pm-return-loop-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 15px;
  }

  .pm-return-loop-title {
    font-size: 18px;
  }

  .pm-return-loop-text {
    font-size: 13px;
  }

  .pm-return-loop-actions,
  .pm-return-loop-action {
    width: 100%;
  }
}
