.cookie-cat-toggle {
    width: 2.25rem;
    height: 1.35rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    position: relative;
    flex-shrink: 0;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.cookie-cat-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    transition: left 0.15s ease;
}

.cookie-cat-toggle.is-on {
    background: #e5007d;
    border-color: #e5007d;
}

.cookie-cat-toggle.is-on::after {
    left: 16px;
}
