.site-breadcrumb .wrapper {
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: #0066cc;
  position: absolute;
}
.site-breadcrumb .wrapper h1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  font-family: sans-serif;
  word-spacing: 2px;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}
.site-breadcrumb .wrapper > div {
  height: 60px;
  width: 60px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  position: absolute;
  top: 10%;
  left: 10%;
  animation: api-bubble-animate 4s linear infinite;
}
.site-breadcrumb .wrapper > div .dot {
  height: 5px;
  width: 5px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 20%;
  right: 20%;
}
.site-breadcrumb .wrapper > div:nth-child(2) {
  top: 20%;
  left: 20%;
  animation: api-bubble-animate 8s linear infinite;
}
.site-breadcrumb .wrapper > div:nth-child(3) {
  top: 60%;
  left: 80%;
  animation: api-bubble-animate 10s linear infinite;
}
.site-breadcrumb .wrapper > div:nth-child(4) {
  top: 40%;
  left: 40%;
  animation: api-bubble-animate 3s linear infinite;
}
.site-breadcrumb .wrapper > div:nth-child(5) {
  top: 66%;
  left: 30%;
  animation: api-bubble-animate 7s linear infinite;
}
.site-breadcrumb .wrapper > div:nth-child(6) {
  top: 90%;
  left: 10%;
  animation: api-bubble-animate 9s linear infinite;
}
.site-breadcrumb .wrapper > div:nth-child(7) {
  top: 30%;
  left: 60%;
  animation: api-bubble-animate 5s linear infinite;
}
.site-breadcrumb .wrapper > div:nth-child(8) {
  top: 70%;
  left: 20%;
  animation: api-bubble-animate 8s linear infinite;
}
.site-breadcrumb .wrapper > div:nth-child(9) {
  top: 75%;
  left: 60%;
  animation: api-bubble-animate 10s linear infinite;
}
.site-breadcrumb .wrapper > div:nth-child(10) {
  top: 50%;
  left: 50%;
  animation: api-bubble-animate 6s linear infinite;
}
.site-breadcrumb .wrapper > div:nth-child(11) {
  top: 45%;
  left: 20%;
  animation: api-bubble-animate 10s linear infinite;
}



@keyframes api-bubble-animate {
  0% {
    transform: scale(0) translateY(0) rotate(70deg);
  }
  100% {
    transform: scale(1.3) translateY(-100px) rotate(360deg);
  }
}

.api-address-section {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.api-address-title {
  flex: 0 0 auto;
  line-height: 32px;
}
.api-address-list {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}
.api-address-row {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #f8fafc;
}
.api-address-label {
  flex: 0 0 auto;
  min-width: 54px;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #dbe2ea;
  color: #64748b;
  font-size: 13px;
  text-align: center;
}
.api-address-row a {
  min-width: 0;
  color: #007bff;
  line-height: 20px;
  overflow-wrap: anywhere;
}
@media (max-width: 576px) {
  .api-address-section {
    flex-direction: column;
    gap: 6px;
  }
  .api-address-title {
    line-height: 24px;
  }
  .api-address-list {
    width: 100%;
  }
}
