/*

@media screen and (min-width: 768px) {

    /*
    .webform-base-actions-wrapper {
        position: relative;
    }

    .webform-button--previous {
        position: absolute;
        left: 0px;
    }

    .webform-button--next,
    .webform-button--submit {
        position: absolute;
        right: 0px;
    }
}

@media screen and (max-width: 769px) {

    .webform-button--draft,
    .webform-button--previous,
    .webform-button--next,
    .webform-button--submit {
        margin: 0 !important;
        max-width: 50%;
        margin-left: 25% !important
    }

    .webform-button--next,
    .webform-button--submit {
        margin-top: 0.5rem !important;
    }
}

*/

.custom-action {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: auto;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

/* .webform-button--previous {
    border-radius: 0px;
    position: absolute;
    right: 0;
    margin-right: 6rem;
} */

.webform-button--draft,
.webform-button--next,
.webform-button--submit {
    border-radius: 4px;
}

.webform-button--next,
.webform-button--submit {
    position: absolute;
    right: 0;
}


/* Multi-select dropdown-issue */

/* Hide when, there are no results */
.chosen-container.chosen-container-multi .chosen-results li.no-results {
    display: none;
}

/* Hide wrapper when no-results */
.chosen-drop:has(.no-results) {
    display: none;
}

/* Show */
.chosen-container.chosen-container-multi .chosen-container-active .chosen-container li.active-result {
    display: block !important;
}