<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.backgound-circle-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
}

.backgound-circle-container {
  background-color: var(--color-white);
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 0;
}

.backgound-circle {
  background-color: var(--color-dark-blue);
  height: calc(2 * var(--circle-radius-min));
  width: calc(2 * var(--circle-radius-min));
  border-radius: 100%;
  position: absolute;
  z-index: 1;
  bottom: calc(var(--circle-offset-bottom) -  var(--circle-radius-min)); ;
  transition: all 0.3s ease-in-out;
}

.backgound-circle.max-radius {
  height: calc(2 * var(--circle-radius-max));
  width: calc(2 * var(--circle-radius-max));
}
</pre></body></html>