.wiz-flag {
  display: inline-block;
  position: relative;
  cursor: pointer;
  line-height:0;
}

.wiz-flag__icon {
  display: inline-block;
  transition: transform 0.2s ease;
  position: relative;
}

.is-flagged svg {
  fill:white!important;
  stroke:none!important;
}

.shake {
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100%   { transform: translateX(0); }
  20%, 60%   { transform: translateX(-3px); }
  40%, 80%   { transform: translateX(3px); }
}

.boom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.2),
    5px -5px 0 0 rgba(255, 255, 255, 0.8),
    -5px -5px 0 0 rgba(255, 255, 255, 0.8),
    5px 5px 0 0 rgba(255, 255, 255, 0.8),
    -5px 5px 0 0 rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%) scale(0);
  animation: boom-pulse 0.5s ease-out forwards;
  pointer-events: none;
  z-index: 1;
}

@keyframes boom-pulse {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  50%  { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}
