.box {
  width: auto;
  height: auto;
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: white;
  text-shadow: 0 1px 0 #000;
  --border-angle: 0turn;
  --main-bg: conic-gradient(
                  from var(--border-angle),
                  #213,
                  #112 5%,
                  #112 60%,
                  #213 95%
  );
  border: solid 5px transparent;
  border-radius: 2em;
  --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #08f, #f03 99%, transparent);
  background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
  background-position: center center;
  -webkit-animation: bg-spin 3s linear infinite;
          animation: bg-spin 3s linear infinite;
}
@-webkit-keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}

@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}
@-webkit-keyframes colorBgMove {
  0% {
    background-position: 0% 50%;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  50% {
    background-position: 100% 50%;
  }
  60% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  70% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  75% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  85% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    background-position: 0% 50%;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
@keyframes colorBgMove {
  0% {
    background-position: 0% 50%;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  50% {
    background-position: 100% 50%;
  }
  60% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  70% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  75% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  85% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    background-position: 0% 50%;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
.tdcwn-gradient-title .tdm-title {
  letter-spacing: -5px;
  background: -webkit-gradient(linear, right top, left top, from(#d356bc), color-stop(#09d6b7), color-stop(#d356bc), color-stop(#ecc357), color-stop(#e16c5a), to(#ecc357));
  background: linear-gradient(to left, #d356bc, #09d6b7, #d356bc, #ecc357, #e16c5a, #ecc357);
  -webkit-background-clip: text;
  background-size: 400% 400%;
  -webkit-text-fill-color: transparent;
  -webkit-transform: scaleY(1.1);
          transform: scaleY(1.1);
  -webkit-animation-name: colorBgMove;
          animation-name: colorBgMove;
  -webkit-animation-duration: 10000ms;
          animation-duration: 10000ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}

/**
 * Tooltip Styles
 *
 * Usage: <span class="not-available" data-tooltip="This data is not available.">N/A</span>
 */
/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
/* Show tooltip content on hover */
[data-tooltip]:hover:before {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}