.consent-toggle-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.popup-politika-fos-button.consent-toggle-group {
    margin-top: 0;
}

.consent-toggle {
    width: 34px;
    height: 19px;
    background-color: #AAADB0;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.consent-toggle:checked {
    background-color: rgba(76, 197, 116, 1);
}

.consent-toggle::after {
    content: '';
    position: absolute;
    top: 2.5px;
    right: 17px;
    width: 14px;
    height: 14px;
    background-color: var(--color-white, #fff);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.consent-toggle:checked::after {
    transform: translateX(14px);
}

.consent-toggle-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: #555658;
    line-height: 1.4;
    cursor: pointer;
}

.consent-toggle-label a {
    text-decoration: none;
    color: #4CC574;
}

.consent-toggle-label a:hover {
    color: #3D9E5D;
}

.consent-toggle-label--light {
    color: rgba(255, 255, 255, 0.8);
}

.consent-toggle-label--light a {
    color: #4CC574;
}
