<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.raised-box {
  position: absolute;
  right: 15px;
  bottom: 15px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px 20px 14px;
  color: #203e6c;
  font-size: 14px;
  text-transform: uppercase;
  min-width: 207px;
}
@media screen and (max-width: 768px) {
  .raised-box {
    min-width: 0;
    padding: 10px;
    bottom: 43px;
    right: 5px;
  }
}
@media screen and (max-width: 480px) {
  .raised-box {
    right: auto;
    left: 5px;
    bottom: 43px;
    padding: 5px;
    height: auto;
    width: auto;
  }
}
.raised-box .circle {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 6px;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .raised-box .circle {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 480px) {
  .raised-box .circle {
    width: 60px;
    height: 60px;
  }
}
.raised-box .circle canvas {
  max-width: 100%;
  max-height: 100%;
}
.raised-box .circle .data-out {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  font-size: 37px;
  display: inline-block;
  font-weight: 100;
  letter-spacing: -1px;
  white-space: nowrap;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .raised-box .circle .data-out {
    font-size: 25px;
  }
}
.raised-box .circle .data-out:after {
  content: "%";
  display: inline-block;
  vertical-align: bottom;
  transform: translate(2px, 5px);
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .raised-box .circle .data-out:after {
    font-size: 10px;
    transform: translate(5px, -5px);
  }
}
@media screen and (max-width: 480px) {
  .raised-box .circle .data-out:after {
    transform: translate(5px, -5px);
  }
}
.raised-box .raise-box-heading {
  display: block;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1.6;
}
@media screen and (max-width: 480px) {
  .raised-box .raise-box-heading {
    display: none;
  }
}
</pre></body></html>