@charset "UTF-8";
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-size: 62.5%;
  background-color: #fff;
  font-family: Arial;
  margin: 0;
  padding: 3em;
}

article {
  clear: both;
}

.chart {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #dee0df;
}

.chart-title {
  font-size: 4em;
  font-weight: 100;
  display: block;
  font-family: Arial;
  color: #671e75;
}

.chart-it-services {
  font-size: 2em !important;
  float: right;
  font-variant: all-small-caps;
  position: relative;
  top: -24px;
  color: #999;
}

/*SVG Stuff*/
.chart-large {
  padding: 12px;
  width: 400px;
  max-width: 300px;
  width: 50%;
  margin: 0 auto;
}

.graph-large-segment-background {
  stroke-dasharray: 320;
  animation: dash 1s ease-in;
  animation-timing-function: cubic-bezier(0.2, 0.1, 1, 0);
}

.total-used-text {
  font-size: 0.8em;
  font-weight: bold;
  position: relative;
}

.total-free-text {
  font-size: 0.8em;
  fill: #999;
  font-weight: 700;
}

/*End SVG stuff*/
.chart-wrap {
  margin: 24px 0;
  clear: both !important;
}

.chart {
  width: calc(100% - 48px);
  padding: 48px;
  background-color: rgba(222, 222, 222, 0.2);
}

.last-updated {
  margin: 12px 0;
  display: block;
  font-size: 16px;
  color: #671e75;
}

.chart-bar {
  width: 100%;
  min-height: 30px;
  clear: both;
  background-color: #dee0df;
  position: relative;
  display: block;
  border-radius: 20px;
  box-shadow: inset 1px 1px 1px rgba(111, 111, 111, 0.1);
  overflow: hidden;
}

.chart-bar:before {
  content: "";
  font-family: FontAwesome;
  font-size: 1.6em;
  position: absolute;
  left: 10px;
  top: 7px;
  color: #dee0df;
  color: #fff;
  z-index: 10;
}

.chart-progress {
  background-color: #671e75;
  background: linear-gradient(90deg, rebeccapurple, #671e75);
  border: 3px solid #dee0df;
  /*Dubious*/
  width: 70%;
  height: 100%;
  position: absolute;
  display: block;
  border-radius: 20px;
  animation: move 1s linear;
  animation-timing-function: cubic-bezier(0.2, 0.2, 1, 1);
}

.chart-title-small {
  font-size: 3em;
  color: #671e75;
  margin: 24px 0;
}

.chart-title-small:not(:first-of-type) {
  margin-top: 48px;
}

.chart-title-smallest {
  font-size: 2em;
  margin: 12px 0;
  color: #888;
  border-top: 1px solid rgba(222, 222, 222, 0.4);
  /*Dubious*/
  padding-top: 12px;
}

.chart-wrap:first-of-type h3.chart-title-smallest {
  border-top: none;
}

.test {
  font-size: 0.5em !important;
  color: #999;
  float: right;
  font-weight: bold;
  margin: 6px;
}

.stats {
  float: right;
  padding: 6px 12px 6px 6px;
  z-index: 10;
  position: relative;
}

.chart-comp-free, .chart-comp-used {
  color: #fff;
  font-size: 1.5em;
  text-shadow: 2px 2px rgba(122, 122, 122, 0.3);
}

.chart-description {
  float: right;
  color: #671e75;
  font-size: 1em;
  padding: 6px;
  position: relative;
  padding-right: 12px;
}

.chart-operating-systems {
  float: right;
  padding: 6px;
}

.chart-operating-systems > i {
  font-size: 1.5em;
  margin-right: 6px;
  color: #671e75;
}

@keyframes move {
  0% {
    width: 0;
    opacity: 0;
  }
}
@keyframes dash {
  from {
    stroke-dashoffset: 320;
  }
}
/*Media Queries*/
@media screen and (max-width: 720px) {
  .chart-it-services {
    position: relative;
    top: auto;
    float: left;
    width: 100%;
    display: block;
    margin: 12px 0;
  }
}
@media screen and (max-width: 630px) {
  span.test {
    float: left;
    clear: both;
    top: auto;
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .chart-large {
    width: 100%;
    max-width: 300px;
  }

  .chart-comp-used {
    display: none;
  }

  .chart-bar {
    min-height: 20px;
  }

  .stats {
    padding: 3px 12px;
  }

  .chart-description {
    padding: 3px 12px;
  }

  .chart-bar:before {
    font-size: 1em;
    top: 6px;
  }

  body {
    padding: 12px;
  }

  .chart {
    padding: 24px;
    width: 100%;
    max-width: initial !important;
  }

  .chart-title-small {
    display: block;
    float: left;
    width: 100%;
    clear: both;
  }
}
@media screen and (max-width: 440px) {
  .chart-it-services {
    display: block;
    float: left;
    clear: both;
    width: 100%;
    margin: 12px 0;
  }
}
@media screen and (max-width: 400px) {
  .chart-large {
    max-width: 100%;
  }
}