@charset "UTF-8";

.table-container {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  white-space: nowrap;
}

.cases .case {
  font: optional;
  font-weight: bold;
}

.cases td:first-child:before {
  counter-increment: initial;
  content: "";
}

.cases tbody tr:nth-child(odd) {
  background: initial;
}

.cases tbody tr:nth-child(even) {
  background: initial;
}

.score-animation {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: 3s linear 1s infinite alternate slidein;
  color: blue;
  font-size: 30px;
  font-weight: bold;
  background-color: whitesmoke;
  text-shadow: 1px 1px 2px silver;
  -moz-border-radius: 50% / 10%;
  -webkit-border-radius: 50% / 10%;
  border-radius: 50% / 10%;
  border: medium dashed yellowgreen;
  padding: 0.3em;

}

.star {
  position: relative;
  width: 500px;
  height: 500px;
}

.branch {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform-origin: top left;
}

.branch:nth-child(1) {
  transform: rotate(0deg) translate(-50%, -50%);
}

.branch:nth-child(2) {
  transform: rotate(30deg) translate(-50%, -50%);
}

.branch:nth-child(3) {
  transform: rotate(60deg) translate(-50%, -50%);
}

.branch:nth-child(4) {
  transform: rotate(90deg) translate(-50%, -50%);
}

.branch:nth-child(5) {
  transform: rotate(120deg) translate(-50%, -50%);
}

.branch:nth-child(6) {
  transform: rotate(150deg) translate(-50%, -50%);
}

.branch:nth-child(7) {
  transform: rotate(180deg) translate(-50%, -50%);
}

.branch:nth-child(8) {
  transform: rotate(210deg) translate(-50%, -50%);
}

.branch:nth-child(9) {
  transform: rotate(240deg) translate(-50%, -50%);
}

.branch:nth-child(10) {
  transform: rotate(270deg) translate(-50%, -50%);
}

.branch:nth-child(11) {
  transform: rotate(300deg) translate(-50%, -50%);
}

.branch:nth-child(12) {
  transform: rotate(330deg) translate(-50%, -50%);
}

.disque {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  height: 300Px;
}


#rotatingImage {

  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 10;
}

#fixedImage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.controls {
  text-align: center;
  margin-top: 10px;
  width: 100%;
  height: 100%;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  /* Pour iOS/Safari */
  touch-action: manipulation;
}