@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@200;300;400;500;600;700;800&display=swap");
body {
  font-family: "Oxanium";
}

.not-decorated {
  text-decoration: none;
  color: inherit;
}
.not-decorated:hover {
  text-decoration: none;
  color: inherit;
}

/* Coin image flipper */
.obverse-reverse-flip {
  position: relative;
  text-align: center;
  transition: transform 1s;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.flip {
  transform: rotateY(180deg);
}

.obverse, .reverse {
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.obverse img, .reverse img {
  max-height: 300px;
  max-width: 300px;
  width: 90%;
}

.reverse {
  transform: rotateY(180deg);
}

.imageflipper {
  aspect-ratio: 1;
  cursor: pointer;
}

/* Pagination */
#coin_list__pagination .page-item:not(.active) {
  cursor: pointer;
}
#coin_list__pagination .page-item:not(.active) .page-link {
  color: #777777;
}
#coin_list__pagination .page-item.active .page-link {
  color: #ffc107;
  background-color: #0f0f0f;
  border-color: #0f0f0f;
}

/* Custom group checkboxes */
#update_collected_coin_modal input[type=checkbox] + label {
  display: block;
  font-weight: 400;
  color: #fff;
  text-align: center;
  background-color: #d6d6d6;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#update_collected_coin_modal input[type=checkbox]:checked + label {
  color: #fff;
  background-color: #4d4d4d;
}
#update_collected_coin_modal input[type=checkbox]:checked + label::before {
  content: "✓	";
}

/*# sourceMappingURL=main.css.map */
