/* WhoNext */

#WhoNext {
  position: absolute;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  bottom: 50px;
  left: 17px;
  background-color: var(--StramisWhite);
  opacity: 0.8;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  z-index: 100;
}

.product-image {
  max-width: 200px;
}

/* Switch */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* End switch */

#clicks-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  overflow-y: auto;
  background-color: #f0f0f0;
  padding: 10px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.PriceTagCoordinates {
}

