/* Floating "Take the Quiz" button shown on imorules.com regulation pages that have a matching quiz. */
.quiz-float-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #14456b;
  color: #ffffff !important;
  padding: 12px 20px;
  border-radius: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.35);
  z-index: 9999;
  transition: transform 0.15s ease, background 0.15s ease;
  line-height: 1.2;
}
.quiz-float-btn:hover {
  transform: scale(1.06);
  background: #0d3450;
  color: #ffffff !important;
}
@media (max-width: 480px) {
  .quiz-float-btn {
    bottom: 12px;
    right: 12px;
    padding: 10px 16px;
    font-size: 13px;
  }
}
