#canves {
  width: 320px;
  height: 195px;
  display: flex;
  padding: 0;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  margin-top: 0px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}
#canves #score-panel {
  width: 180px;
  height: 53px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 23px;
  text-align: center;
}
#canves #score-panel li {
  list-style: none;
  display: inline-block;
}
#canves #score-panel li:last-child {
  display: block;
  font-size: 17px;
  line-height: 1;
}

.restart {
  cursor: pointer;
  position: absolute;
  bottom: -60px;
  left: 50%;
  font-size: 21px;
  transform: translateX(-50%);
}

.tower {
  width: 115px;
  height: 117px;
  border-bottom: 5px solid #000000;
  border-radius: 7px;
  position: relative;
  text-align: center;
  padding: 0;
  margin: 0 25px 0 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  cursor: pointer;
}
.tower#tower-3 {
  margin: 0;
}
.tower:before {
  width: 4px;
  height: 116px;
  content: "";
  display: block;
  background: #000000;
  position: absolute;
  bottom: -2px;
  left: calc(50% - 2px);
  z-index: 10;
  border-radius: 30px;
}

.disk {
  list-style: none;
  height: 13px;
  display: block;
  border-radius: 9px;
  font-size: 0;
  z-index: 20;
}
.disk.hold {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.swal2-overlay {
  background-color: white;
}

.disk-1 {
  width: 13px;
  background-color: #e91e63;
}

.disk-2 {
  width: 22px;
  background-color: #673ab7;
}

.disk-3 {
  width: 34px;
  background-color: #3f51b5;
}

.disk-4 {
  width: 45px;
  background-color: #00bcd4;
}

.disk-5 {
  width: 56px;
  background-color: #8bc34a;
}

.disk-6 {
  width: 67px;
  background-color: #ffc107;
}

.disk-7 {
  width: 78px;
  background-color: #ff9800;
}