.wcsc-consent-block{
    margin: 12px 0 14px;
    padding: 10px 12px;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: inline-block;
}
.wcsc-consent-block input[type="checkbox"]{
    transform: translateY(1px);
    margin-right: 8px;
}
.wcsc-label{
    font-size: 0.95rem;
    line-height: 1.4;
}
.wcsc-shake{
    animation: wcsc-shake 0.35s linear 1;
}
@keyframes wcsc-shake{
    0%{transform: translateX(0)}
    25%{transform: translateX(-3px)}
    50%{transform: translateX(3px)}
    75%{transform: translateX(-2px)}
    100%{transform: translateX(0)}
}
.wcsc-tip{
    opacity:0;
    transition: opacity .15s ease;
    background: #222;
    color: #fff;
    font-size: 12px;
    padding: 6px 8px;
    border-radius: 4px;
    pointer-events: none;
}
.wcsc-tip.show{ opacity: 0.95; }