#edittag {
    max-width: 100%;
}

.acf-taxonomy-field .categorychecklist-holder {
    max-height: unset !important;
}
.acf-bl:before {
    content: unset;
}

.acf-field .children.acf-bl {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates 2 columns */
    gap: 2px; /* Adjust the space between the columns */
}

.acf-field .children.acf-bl li {
    display: flex; /* To align checkbox and label */
    align-items: center; /* Vertically center align items */
}

.twoc .acf-checkbox-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates 2 columns */
    gap: 2px; /* Adjust the space between the columns */
}

.twoc .acf-checkbox-list li {
    display: flex; /* To align checkbox and label */
    align-items: center; /* Vertically center align items */
}

.threec .acf-checkbox-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creates 2 columns */
    gap: 2px; /* Adjust the space between the columns */
}

.threec .acf-checkbox-list li {
    display: flex; /* To align checkbox and label */
    align-items: center; /* Vertically center align items */
}
.fourc .acf-checkbox-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates 2 columns */
    gap: 2px; /* Adjust the space between the columns */
}

.fourc .acf-checkbox-list li {
    display: flex; /* To align checkbox and label */
    align-items: center; /* Vertically center align items */
}