.pltsm-slideshow {
  position: relative;
}

img.pltsm-slideshow-image {
  width: 100%;
  cursor: pointer;
}

.pltsm-slideshow-bullets {
  display: flex;
  justify-content: flex-end;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.pltsm-slideshow-bullets input[type="radio"] {
  display: none;
}

.pltsm-slideshow-bullets label {
  display: inline-block;
  background: #ccc;
  border-radius: 1em;
  transition: .3s ease-out background,
		.3s ease-out transform;
  width: 1.2em;
  height: 1.2em;
  margin: 0.25em;
  display: inline-block;
  cursor: pointer;
}

.pltsm-slideshow-bullets input[type="radio"]:checked+label {
  background-color: #666;
}