@charset "UTF-8";

/*==============================================================================
*
* contentID: jm01ch06_00173_001
*
*==============================================================================
*/

#container {
  width: 100%;
  height: 100%;
  padding: 0;
}

#stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 1024px;
  height: 648px;
  z-index: 1;
}

#radio-buttons {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 400px;
  margin: auto;
  z-index: 1;
}
#radio-buttons:before,
#radio-buttons:after {
  content: "";
  display: table;
}
#radio-buttons:after {
  clear: both;
}

#radio-buttons .radio {
  float: left;
  width: 50%;
}

.radio label span {
  padding-left: 55px;
  font-size: 24px;
  line-height: 42px;
  cursor: default;
}




#buttons {
  position: absolute;
  z-index: 2;
}

#buttons > .btn {
  position: absolute;
  width: 140px;
}

#buttons > .btn:nth-child(1) {
  top: 250px;
  left: 91px;
}
#buttons > .btn:nth-child(2) {
  top: 250px;
  left: 432px;
}
#buttons > .btn:nth-child(3) {
  top: 250px;
  left: 773px;
}
#buttons > .btn:nth-child(4) {
  top: 530px;
  left: 261px;
}
#buttons > .btn:nth-child(5) {
  top: 530px;
  left: 603px;
}
#reset-button {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  padding-left: 32px;
  background-image: url(../img/repeat.png);
  background-size: 16px;
  background-position: 14px center;
  transition-property: background, color, box-shadow, width, height, border;
}

#reset-button.reset2{
  padding-left: 20px;
}
#reset-button.down {
  background-image: url(../img/repeat_down.png);
}

#reset-button.disabled,
#reset-button[disabled="disabled"] {
  background-image: url(../img/repeat_disabled.png);
}

#left {
  position: absolute;
  top: 300px;
  left: 100px;
  width: 82px;
  height: 50px;
  cursor: pointer;
  background: url(../img/prev.svg) no-repeat center;
  background-size: 82px 50px;
}
#right {
  position: absolute;
  top: 300px;
  left: 820px;
  width: 82px;
  height: 50px;
  cursor: pointer;
  background: url(../img/next.svg) no-repeat center;
  background-size: 82px 50px;
}
#left.disabled,
#left[disabled="disabled"] {
  display: none;
}
#right.disabled,
#right[disabled="disabled"] {
  display: none;
}