.elementor-660 .elementor-element.elementor-element-1e9e9d9{margin-top:100px;margin-bottom:100px;}@media(max-width:767px){.elementor-660 .elementor-element.elementor-element-1e9e9d9{margin-top:50px;margin-bottom:50px;}}/* Start custom CSS for shortcode, class: .elementor-element-5a82050 *//* Search Bar Styling */
    .search-bar {
        margin-bottom: 40px;
    }

    /* Flexbox for the form */
    .search-form {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* 70% for input and dropdown fields */
    .search-fields {
        display: flex;
        flex: 70%; /* 70% of the width */
        gap: 10px; /* Space between input and dropdown */
    }

    .search-fields input,
    .search-fields select {
        flex: 1; /* Make input and dropdown take equal space inside the 70% */
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    /* 30% for the button */
    .search-button {
        flex: 30%; /* 30% of the width */
        display: flex;
        justify-content: flex-end; /* Align the button to the right */
    }

.search-button button {
    width: 100%;
    height: 46px;
    padding: 10px 20px;
    background-color: #B28E2E;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 0px 10px;
}

.search-button button:hover{
    background-color: #000;
}






    /* Responsive adjustments */
    @media screen and (max-width: 768px) {
        .search-form {
            flex-direction: column;
        }

        .search-fields,
        .search-button {
            flex: 100%;
        }

        .search-button button {
            width: 100%;
        }
    }

    /* 3-Column Category Listing */
    .category-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
        gap: 20px; /* Space between columns */
    }

    .category-item {
        background-color: #000000b8;
        padding: 15px;
        border: 1px solid #ddd;
        text-align: center;
        border-radius: 10px;
    }
    
    /*.category-item:hover a {*/
    /*     background-color: #B28E2E;*/
    /*     color:#fff; */
    /*}*/

    .category-item a {
        font-weight: bold;
        color: #fff;
        text-decoration: none;
    }
    
  

    .category-item .excerpt {
        color: #777;
    }
    
    .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
    height: 46px;
}

.select2-container .select2-selection--single {
    height: 46px !important;
    padding-top: 7px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 10px !important;
    right: 1px;
    width: 20px;
}

.select2-container--default .select2-results__option {
    background-color: #474747; /* Background color for options */
    color: #fff; /* Text color for options */
}
    .select2-container--default .select2-results__option:hover{
         background-color: #b28e2e !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    height: 26px;
    margin-right: 20px;
    padding-right: 0px;
    margin-top: -4px;
}
    
    span.select2-search.select2-search--dropdown {
    margin-top: -15px;
}
    
    
    @media(max-width:767px){
        .search-fields input, .search-fields select {
    width: 100% !important;
    margin-top: 10px;
}

.search-fields {
    display: block;
}

.search-button {
    width: 100%;
    margin: 15px 0px;
}

.category-list {
    display: block;
}

.category-item {
    margin-bottom: 10PX;
}


    }/* End custom CSS */