/* 
this is a way to overwrite default value applied on input type checkbox
for some reason the default value applied by another stylesheet is to hide inputs

used to display the checkbox in custom cookie preference with cookie-yes Plugin
*/

.cky-switch input[type="checkbox"]{
    opacity: unset !important;
    z-index: 1;
}

.cky-switch input[type="checkbox"]:checked{
    background-color: #2CAC6E !important;
}