Hi Kat,
This is a possibility yes, although this does not look the best and I will advise that you contact your legal department in order for this to be clarified.
Please see the following:
Hiding the necessary toggle:
#CybotCookiebotDialogBodyLevelButtonsSelectPane > fieldset > div:nth-child(2) {
display: none;
}
Hiding the preferences toggle:
#CybotCookiebotDialogBodyLevelButtonsSelectPane > fieldset > div:nth-child(3) {
display: none;
}
Hiding the statistics toggle:
#CybotCookiebotDialogBodyLevelButtonsSelectPane > fieldset > div:nth-child(4) {
display: none;
}
Hiding the marketing toggle:
#CybotCookiebotDialogBodyLevelButtonsSelectPane > fieldset > div:nth-child(5) {
display: none;
}
set the width as 100 / (nr of remaining toggles) :
@media screen and (min-width: 601px)
#CybotCookiebotDialogBodyLevelButtonsSelectPane .CybotCookiebotDialogBodyLevelButtonWrapper {
width: 33.3%;
}
To hide a category you can add rules to the style sheet:
Necessary:
#CybotCookiebotDialogDetailBodyContentCookieContainerTypes > div:nth-child(1) {
display: none;
}
Preferences:
#CybotCookiebotDialogDetailBodyContentCookieContainerTypes > div:nth-child(2) {
display: none;
}
Statistics:
#CybotCookiebotDialogDetailBodyContentCookieContainerTypes > div:nth-child(3) {
display: none;
}
Marketing:
#CybotCookiebotDialogDetailBodyContentCookieContainerTypes > div:nth-child(4) {
display: none;
}
Necessary:
#CybotCookiebotDialogDetailBodyContentCookieContainerTypes > div:nth-child(5) {
display: none;
}