/*
body
{
  height: 100%;
  margin: 0px;
  padding: 0px;

  overflow: hidden;
}
*/

#viewContainer 
{
    position: relative;
    width: 100%;
    height:620px;
}

#viewer
{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.animationBar {
  height: 70px;
  width: 100%;
  position: absolute;
  left: 0;
  top: calc(100% - 70px);
  display: flex;
  /* background-color: red; */
  padding-left: 5%;
  padding-right: 5%;
}

.stagesBar {
  /* width: 80%;
  height: 20px;
  position: absolute;
  top: calc(100% - 50px);
  left: calc(10% + 20px); */
  /* background-color: green; */
  width: 100%;
  position: relative;
  /* padding-left: 30px; */
}

#stepper {
  margin: 0;
  padding: 0;
}

#stages {
  position: absolute;
  top: calc(50% - 15px); /* 15px = circleWidth / 2 */
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 100;
}

.stage {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 2px solid #ACACA6;
  border-radius: 50%;
  transition: background 1s;

  cursor: pointer;
}

.stage.selected {
  border: 2px solid #4285f4;
  background: #4285f4 ; 
}

.stagesProgress {
  position: absolute;
  width: 100%;
  height: 50%;
  border-bottom: 2px solid #ACACA6;
}

.buttons {
  width: 100px;
  /* background-color: blue; */
}

button {
  padding: 0;
  margin: 0;
  height: 40px;
  width: 50px;
}

#buttonStart, #buttonPause {
  position: absolute;
  top: calc(50% - 20px);
  padding: 0;
  margin: 0;
  /* height: 40px;
  width: 50px; */
  margin-left: 10px;
}

#buttonPause {
  visibility: hidden; 
}

.topRightButtons {
  position: absolute;
  right: 0px;
  top: 0px;
}

.btn-group-vertical {
  width: 50px;
}

.viewerButton {
  padding: 0 !important;
  margin-left: 0;
  margin-right: 0;
}

#spinner {
  position: absolute;
  display: block;
  left: 50%;
  margin-left: -4em;
  top: 50%;
  margin-top: -4em;
}
