#slideTimer {
  position: absolute;
  bottom: 60px;
  right: 50px;
  top: auto;
  z-index: 9999;
  margin: auto;
  height: var(--countdown-svg-measure);
  width: var(--countdown-svg-measure);
  text-align: center;
  transition:0.2s opacity ease;
}

@media(max-width: 1150px) {
  #slideTimer {
    display: none;
  }
}

#slideTimer:hover {
  cursor: pointer;
  opacity:0.8;
}

.slideTimer--isPaused #slideTimerAnimation-svg {
  opacity:0;
}

#slideTimerIcon {
  color: #fff;
  display: inline-block;
  line-height: 50px;
  width:14px;
  height:13px;
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin:auto;
}

#slideTimerIcon svg {
  display: block;
}

.slideTimerWatermark {
  position: absolute;
  top: 0;
  right: 0;
  left:0;
  bottom:0;
  height: var(--countdown-svg-measure);
  width: var(--countdown-svg-measure);
}

#slideTimerWatermark-svg {
  height: var(--countdown-svg-measure);
  width: var(--countdown-svg-measure);
}

#slideTimerWatermark-svg circle {
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: rgba(255,255,255,0.3);
  fill: none;  
}

#slideTimerAnimation {
  position: absolute;
  top: 0;
  right: 0;
  left:0;
  bottom:0;
  width: var(--countdown-svg-measure);
  height: var(--countdown-svg-measure);
  transform: rotateY(-180deg) rotateZ(-90deg);
}

#slideTimerAnimation-svg {
  height: var(--countdown-svg-measure);
  width: var(--countdown-svg-measure);
}

#slideTimerAnimation-svg circle {
  stroke-dasharray: var(--countdown-stroke-offset);
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: white;
  fill: none;
}


/*Cycle 2 only*/
#slideTimer-pause {
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index: 3;
}

#slideTimer-resume {
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index: 2;
}

/*.slideTimer--isAnimated #slideTimerAnimation-svg circle {
  animation: countdown var(--slideshow-timeout-setting) linear infinite forwards; 
}

@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: var(--countdown-stroke-offset);
  }
}*/

/*
.slideTimer--isAnimated #slideTimerAnimation-svg circle {
  animation: countdown var(--slideshow-timeout-setting) linear infinite forwards; 
}

@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: calc(2 * 20.5px * 3.14159265359);
  }
}
*/



















