.variation-select {
  position: fixed;
  bottom: 0;
  width: auto;
  background: white;
  z-index: 10000;
  left: 50%;
  transform: translate(-50%, 600px);
  border-radius: 5px;
  border: 5px solid #3c065e7e;
  transition: transform 0.5s;
  transform: translate(-50%, 0);
  cursor: pointer;
}
.variation-select.hidden {
  transform: translate(-50%, calc(100% - 55px));
}
.variation-select.hidden .whenVisible {
  display: none;
}
.variation-select.hidden .whenHidden {
  display: block;
}

.variation-select .whenVisible {
  display: block;
}
.variation-select .whenHidden {
  display: none;
}

#button-container button {
  padding: 5px 10px;
  border: none;
  background: white;
  font-weight: 700;
  cursor: pointer;
}

#button-container .selected {
  background: #3c065e;
  color: white;
}

#button-container .new-widgets {
  border-top: 1px solid #3c065e7e;
  color: #686868;
}

#button-container {
  border-radius: 5px;
  display: flex;
  flex-flow: column;
  justify-items: center;
  justify-content: center;
}

#selector-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 55px;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid black;
}
