/*Required CSS*/
svg.radial-progress {
    height: auto;
    max-width: 240px;
    padding: 0;
    transform: rotate(-90deg);
    width: 100%;
    background-image: inherit;
    border-radius: 50%;
  }
  section.svg-container svg.radial-progress:nth-child(even) {
    margin: 0 15px;
  }
  svg.radial-progress circle {
    fill: transparent;
    stroke: #fff;
  }
  svg.radial-progress circle.bar-static {
    stroke: #219CD7 !important;
    stroke-width: 8px;
  }
  svg.radial-progress circle.bar--animated {
    stroke-dasharray: 219.91148575129;
    stroke: #82C6FA;
    stroke-dashoffset: 219.91148575129;
    stroke-width: 8px;
    /* stroke-linecap: round; */
  }
  svg.radial-progress text {
    fill: #fafafa;
    font-size: 16px;
    font-weight: 700;
    text-anchor: middle;
    text-shadow: 0 0 5px #0000007a;
  }

  section.svg-container {
    width: 98%; 
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.radial-progress {
    margin: 0 60px; 
    flex: 1; 
  text-align: center; 
}

.adv-label {
  width: 94%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  margin-top: 1rem;
  margin-bottom: 4rem;
}

.adv-dist {
  margin: 0 20px; 
  flex: 1; 
  text-align: center; 
}
  .devider {
    font-size: 50px;
    padding: 20px;
    min-height: 11vh;
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
      -225deg,
      #ff057c 0%,
      #ff057c 40%,
      #321575 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
  }
  .devider:nth-last-of-type(2) {
    background-image: inherit;
    background: inherit;
  }
  section.svg-container:nth-last-of-type(1) svg.radial-progress {
    background-image: inherit;
  }
  section.svg-container:nth-last-of-type(0) svg.radial-progress {
    background-image: linear-gradient(
      60deg,
      #3d3393 0%,
      #2b76b9 37%,
      #2cacd1 65%,
      #35eb93 100%
    );
  }