.aperture-container {
  background-image: radial-gradient(lightgrey 1.3px, Whitesmoke 1.3px);
  background-size: 20px 20px;
  padding: 10px;
}
.aperture-container p {
  font-family: "Intel One Mono", monospace; 
}
.img-container {
  width: 100%;
  max-width: 860px;
  position: relative;
  margin: 0 auto;
  padding: 10px 0px;
}
.sample-img-container {
  width: 350px;
  aspect-ratio: 1.5;
  position: relative;
}
.sample-img {
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  border: 8px solid white;
  box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.2);
}
.example-image::after {
  width: 100%;
  height: 8px;
  content: "";
  display: block;
  margin-top: 10px;
  border-top: 1px solid Black;
  border-left: 2px solid Black;
  border-right: 2px solid Black;
}
.ring-img-container {
  width: 234px;
  height: 234px;
  position: relative;
}
.ring-img {
  min-width: 200px;
  position: absolute;
}
.flare {
  opacity: 0.35;
}
.reflection {
  opacity: 0.5;
  rotate: 180deg;
}
#ring-2,
#ring-3,
#ring-4 {
  display: none;
}
#img-2,
#img-3,
#img-4 {
  display: none;
}
.slider-container {
  max-width: 600px;
  height: 80px;
  margin: 0 auto;
  padding: 20px;
}
.aperture-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 1.5px;
  background: Dimgrey;
}
.aperture-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: White;
  outline: 1.5px solid Crimson;
  cursor: pointer;
}
.aperture-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: Whitesmoke;
  outline: 1.5px solid Crimson;
  cursor: pointer;
}
.slider-scale {
  width: 97%;
  height: 50px;
  margin: 0 auto;
}
.scale-value {
  width: 2px;
  height: 12px;
  position: relative;
}
.scale-value-sm {
  width: 2px;
  height: 5px;
  position: relative;
  border-left: 2px solid Dimgrey;
}
.value-1 {
  border-right: 2px solid Dimgrey;
  color: Crimson;
  &::after {
    content: "1.8";
    position: relative;
    left: -2px;
    top: 8px;
    font-size: 18px;
    font-weight: 800;
    color: inherit;
    white-space: nowrap;
  }
}
.value-2 {
  border-left: 2px solid Dimgrey;
  &::after {
    content: "2.8";
    position: relative;
    left: -4px;
    top: 8px;
    font-size: 18px;
    font-weight: 800;
    color: inherit;
    white-space: nowrap;
  }
}
.value-3 {
  border-right: 2px solid Dimgrey;
  &::after {
    content: "4";
    position: relative;
    left: -2px;
    top: 8px;
    font-size: 18px;
    font-weight: 800;
    color: inherit;
    white-space: nowrap;
  }
}
.value-4 {
  border-right: 2px solid Dimgrey;
  &::after {
    content: "8";
    position: relative;
    top: 8px;
    left: -4px;
    font-size: 18px;
    font-weight: 800;
    color: inherit;
    white-space: nowrap;
  }
}
.question-container {
  width: 100%;
  max-width: 860px;
  position: relative;
  margin: 0 auto;
}
.question-title {
  max-width: 860px;
  margin: 0 auto;
}
.question-img {
  width: 420px;
  aspect-ratio: 1.5;
}
.quiz-img {
  width: 100%;
  box-sizing: border-box;
  border: 8px solid white;
  box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.2);
}
.question-text input[type="radio"] {
  scale: 1.8;
  margin: 5px;
  cursor: pointer;
  accent-color: Dodgerblue;
}
.check-btn {
  width: 140px;
  height: 40px;
  font-size: 18px;
  color:  Black;
  background-color: Whitesmoke;
  border: 1.5px solid Black;
  border-radius: 20px;
}
.lottie-canvas {
  display: block;
  width: 200px;
  padding: 0 auto;
  margin: 10px auto;
}
.quiz-dialog::part(dialog)::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}
.quiz-dialog::part(title) {
  font-size: 1.8rem;
  white-space: nowrap;
}
@media screen and (max-width: 360px) {
  .sample-img-container {
    width: 300px;
  }
  .question-img {
    width: 300px;
  }
  .slider-scale {
    width: 96%;
  }
}
@media (hover: hover) {
  .check-btn:hover {
    color: Dodgerblue;
    border-color: Dodgerblue;
  }
}
