/* #4874 - All Mega-Menus scrollable if too high (without scrollbars) */
@media (min-width: 1440px) {
    .hs-mega-menu {
        max-height: 70vh;
        overflow: auto;
        scrollbar-width: none;
    }
    .hs-mega-menu::-webkit-scrollbar {
        display: none;
    }
}

/* #5467 force back important overwritten styles from form-control */
.custom-form-control {
    font-size: 1.125rem !important;
}
.custom-form-control::placeholder {
    color: #97a4af !important;
}

/* #8787 - FormBuilder Checkbox Layout Fix */
.formbuilder-row .checkbox label {
    display: flex;
    align-items: baseline;
    cursor: pointer;
}
.formbuilder-row .checkbox input[type="checkbox"] {
    margin-right: 0.3rem;
}