/* Default style for the label (non-bold for "Heading") */
.acf-label {
    font-weight: normal; /* Default to normal weight */
    color: #333; /* Default label color */
}

/* When the field label is changed to "Question", make it bold */
.acf-field[data-name="faqs"] .acf-row[data-name="question"].acf-field-background-changed .acf-label {
    font-weight: bold; /* Bold weight for "Question" label */
}

/* When the checkbox is unchecked (type = false), make the label background red */
.acf-field[data-name="faqs"] .acf-row[data-name="question"]:not(.acf-field-background-changed) .acf-label {
    background-color: #f8d7da; /* Red background for "Heading" */
    color: #721c24; /* Dark red color for text when background is red */
    padding: 5px; /* Optional padding to give space around the text */
    border-radius: 3px; /* Optional border-radius for rounded corners */
}

/* Optional: Lighter color for the label when it's "Heading" */
.acf-field[data-name="faqs"] .acf-row[data-name="question"]:not(.acf-field-background-changed) .acf-label {
    color: #721c24; /* Dark red text color */
}

.acf-taxonomy-field {
 
    max-width: 25%;
}

.cohort-button{
    border-color: rgba(0, 154, 182, 1);
    color: #ffffff;
    border-radius: 5px;
	border: 1px solid transparent;
    border-radius: 7px;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    padding: 8px 20px;
    position: relative;
    text-align: center;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}