/* FORM */
.forminator-custom-form {
    margin-top: 0 !important;
    font-family: Open Sans, Arial, sans-serif !important;
}

/* MOBILE DEVICES */
@media (max-width: 768px) {
    /* HIDE THE SELECTION PANEL */
    div#selection-panel {
        display: none;
    }
    /* DISABLE IMAGE HOVER EFFECT */
    .forminator-checkbox-image span:hover {
        transform: none !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }
}

/* HOVER EFFECTS*/
.forminator-checkbox-image span {
    display: block;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* HOVER EFFECTS*/
.forminator-checkbox-image span:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

/* SELECTION PANEL */
#selection-panel {
    position: fixed;
    top: 15%;
    right: 10px;
    width: 300px;
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

/* SELECTION ICON */
#selection-icon {
    position: fixed;
    top: 20%;
    right: 10px;
    z-index: 1001;
}

/* TOGGLE SELECTION PANEL */
#toggle-selection-panel {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1002;
}

/* EXPAND SELECTION PANEL */
#expand-selection-panel {
    background-color: #838967;
    border: none;
    font-size: 50px;
    padding: 15px 15px;
    cursor: pointer;
    border-radius: 40px;
    color: #fff;
}

/* SELECTION PANEL TITLE */
#selection-panel h3 {
    color: #838967;
    font-weight: bold;
}

/* SELECTION PANEL LIST ITEM */
#selected-items-list li {
    line-height: 16px !important;
    padding-bottom: 5px !important;
}

/* FORMINATOR IMAGE RESIZING */
.forminator-has_image {
    min-width: 150px !important;
    padding-top: 150px !important;
}

/* SELECTION PANEL TITLE */
.forminator-checkbox-image span {
    width: 130px !important;
    height: 130px !important;
}

/* FORMINATOR IMAGE HOVER */
.forminator-checkbox-image:hover {
    background-color: #a18061 !important;
}

/* FORMINATOR IMAGE BG */
.forminator-checkbox input:checked ~ .forminator-checkbox-image {
    background-color: #a18061 !important;
}

/* NOTIFICATIONS */
#ezzells-notification {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ea043a;
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

/* FADE-IN */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NOTIFICATIONS TABLE */
#ezzells_notification_table {
    border: none;
    margin-bottom: 0;
}

/* NOTIFICATIONS TABLE TD */
#ezzells_notification_table td {
    border: none;
}

/* NOTIFICATIONS MESSAGE */
#ezzells-notification-message {
    /* NOTHING TO SEE HERE */
}

/* NOTIFICATIONS CLOSE */
#ezzells-notification-close {
    background: none;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    right: 0;
    font-size: 20px;
    padding-top: 5px;
}

/* LABELS */
.forminator-label {
    color: #333 !important;
}

/* HOT APPETIZERS */
.appetizer-hot .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* COLD APPETIZERS */
.appetizer-cold .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* BEEF GROUP LABEL */
.main-dish-beef .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* PORK GROUP LABEL */
.main-dish-pork .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* POULTRY GROUP LABEL */
.main-dish-poultry .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* SEAFOOD GROUP LABEL */
.main-dish-seafood .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* VEGETARIAN GROUP LABEL */
.main-dish-vegetarian .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* VEGETABLES GROUP LABEL */
.sides-vegetables .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* SALADS GROUP LABEL */
.sides-salads .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* CASSEROLES GROUP LABEL */
.sides-casseroles .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* BEANS & LEGUMES GROUP LABEL */
.sides-beans-legumes .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* PASTA & RICE GROUP LABEL */
.sides-pasta-rice .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* POTATOES AND GRAINS GROUP LABEL */
.sides-potatoes-grains .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* ROLLS AND BISCUITS GROUP LABEL */
.breads-rolls-biscuits .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* CORNBREADS AND SPECIALTY BREADS GROUP LABEL */
.breads-cornbreads-specialty .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* COOKIES AND BARS GROUP LABEL */
.desserts-cookies-bars .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* PIES AND TARTS GROUP LABEL */
.desserts-pies-tarts .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* SPECIALTY DESSERTS GROUP LABEL */
.desserts-specialty .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* TEAS & COFFEES GROUP LABEL */
.beverages-teas-coffee .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* FRUIT BEVERAGES & INFUSED WATER GROUP LABEL */
.beverages-fruit-infused-water .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* DISPOSABLE PRODUCTS GROUP LABEL */
.additional-items-disposable-products .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* SERVICE OPTIONS GROUP LABEL */
.additional-items-service-options .forminator-label:first-child {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* APPETIZER CATEGORY LABELS */
.appetizers-select label {
    font-weight: bold !important;
}

/* MAIN DISH CATEGORY LABELS */
.main-dishes-select label {
    font-weight: bold !important;
}

/* SIDES CATEGORY LABELS */
.sides-select label {
    font-weight: bold !important;
}

/* BREADS CATEGORY LABELS */
.breads-select label {
    font-weight: bold !important;
}

/* DESSERTS CATEGORY LABELS */
.desserts-select label {
    font-weight: bold !important;
}

/* BEVERAGES CATEGORY LABELS */
.beverages-select label {
    font-weight: bold !important;
}

/* ADDITIONAL ITEMS CATEGORY LABELS */
.additional-items-select label {
    font-weight: bold !important;
}

/* FORMINATOR TITLES */
.forminator-title {
    font-weight: bold !important;
    font-size: 28px !important;
}

/* FORMINATOR SUBTITLES */
.forminator-subtitle {
    font-weight: normal !important;
    font-size: 16px !important;
}