.toffeepressWindow {
  position: relative;
  /**
   * 1. The `reverse` animation direction plays the animation backwards
   *    which makes it start at the stroke offset 100 which means displaying
   *    no stroke at all and animating it to the value defined in the SVG
   *    via the inline `stroke-dashoffset` attribute.
   * 2. Rotate by -90 degree to make the starting point of the
   *    stroke the top of the circle.
   * 3. Using CSS transforms on SVG elements is not supported by Internet Explorer
   *    and Edge, use the transform attribute directly on the SVG element as a
   * .  workaround (https://markus.oberlehner.net/blog/pure-css-animated-svg-circle-chart/#part-4-internet-explorer-strikes-back).
   */
  /**
   * 1. Rotate by -90 degree to make the starting point of the
   *    stroke the top of the circle.
   * 2. Scaling mirrors the circle to make the stroke move right
   *    to mark a positive chart value.
   * 3. Using CSS transforms on SVG elements is not supported by Internet Explorer
   *    and Edge, use the transform attribute directly on the SVG element as a
   * .  workaround (https://markus.oberlehner.net/blog/pure-css-animated-svg-circle-chart/#part-4-internet-explorer-strikes-back).
   */
}
.toffeepressWindow h1 img {
  display: inline-block;
  width: 64px;
  vertical-align: text-top;
}
.toffeepressWindow .poweredBy {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
}
.toffeepressWindow .poweredBy img {
  display: inline-block;
  width: 32px;
  margin-left: 10px;
  vertical-align: text-top;
}
.toffeepressWindow .progressBox {
  background-color: #EBEBEB;
  border: 1px solid #CCC;
  border-radius: 4px;
  padding: 6px;
}
.toffeepressWindow .progressBox div {
  font-weight: bold;
}
.toffeepressWindow .progressBox div span {
  font-weight: normal;
}
.toffeepressWindow .log {
  margin-top: 20px;
  max-height: 200px;
  overflow: auto;
}
.toffeepressWindow .log .error {
  display: block;
  width: 100%;
  color: #FF0000;
}
.toffeepressWindow .log .OK {
  display: block;
  width: 100%;
  color: #3f9d50;
}
.toffeepressWindow table tbody tr.needsCompression td.stats {
  color: #80121C;
}
.toffeepressWindow .stats {
  text-align: right;
}
.toffeepressWindow .stats .statsBox {
  vertical-align: top;
  display: inline-block;
  margin: 10px 10px 10px 20px;
  background-color: #FFF;
  border: 1px solid #9D9D9D;
  padding: 10px;
  text-align: left;
  min-width: 200px;
}
.toffeepressWindow .stats .statsBox h3 {
  margin-top: 0;
  padding-top: 0;
}
.toffeepressWindow .tpButton {
  display: inline-block;
  border-radius: 4px;
  padding: 6px 18px;
  text-align: center;
  text-transform: uppercase;
  background-color: transparent;
  border: 2px solid #444444;
  color: #444444;
  text-decoration: none;
  margin: 10px 0;
  font-weight: 600;
  cursor: pointer;
}
.toffeepressWindow .tpButton:hover {
  background-color: #444444;
  color: #FFFFFF;
}
.toffeepressWindow .tpButton.red {
  border: 2px solid #65262A;
  color: #65262A;
}
.toffeepressWindow .tpButton.red:hover {
  background-color: #65262A;
  color: #FFFFFF;
}
.toffeepressWindow .tpButton.blue {
  border: 2px solid #00acc1;
  color: #00acc1;
}
.toffeepressWindow .tpButton.blue:hover {
  background-color: #00acc1;
  color: #FFFFFF;
}
.toffeepressWindow .tpLiveStats {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.toffeepressWindow .tpLiveStats .tpProgress {
  padding-right: 25px;
  text-align: right;
  width: 50%;
}
.toffeepressWindow .tpLiveStats .tpStats {
  padding-left: 25px;
  text-align: left;
  width: 50%;
}
.toffeepressWindow .tpLiveStats .tpStats .keyInfo {
  font-size: 28px;
  line-height: 48px;
  color: #00acc1;
}
.toffeepressWindow .tpLiveStats .tpStats .keyInfo span {
  font-size: 48px;
  line-height: 48px;
}
.toffeepressWindow .tpLiveStats .tpStats .details {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #444444;
  font-size: 14px;
  line-height: 20px;
  color: #444444;
  width: 302px;
}
.toffeepressWindow .tpLiveStats .tpStats .log {
  margin-top: 20px;
  max-height: 200px;
  overflow: auto;
}
.toffeepressWindow .tpLiveStats .tpStats .log .error {
  display: block;
  width: 100%;
  color: #FF0000;
}
.toffeepressWindow .tpLiveStats .tpStats .log .OK {
  display: block;
  width: 100%;
  color: #3f9d50;
}
.toffeepressWindow .circle-chart {
  margin: 10px;
}
.toffeepressWindow .circle-chart__circle {
  animation: circle-chart-fill 2s reverse;
  /* 1 */
  transform: rotate(-90deg);
  /* 2, 3 */
  transform-origin: center;
  /* 4 */
}
.toffeepressWindow .circle-chart__circle--negative {
  transform: rotate(-90deg) scale(1, -1);
  /* 1, 2, 3 */
}
.toffeepressWindow .circle-chart__info {
  animation: circle-chart-appear 2s forwards;
  opacity: 0;
  transform: translateY(0.3em);
}
@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@keyframes circle-chart-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=toffeepress.css.map */
