/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

.no-arrow-select {
  -webkit-appearance: none !important; /* Chrome, Safari, Opera */
  -moz-appearance: none !important;    /* Firefox */
  appearance: none !important;         /* Standard syntax */

  /* To remove the remaining outline in Firefox */
  border-style: none !important;

  /* It might be necessary to set a background on the select to replace the native dropdown arrow background */
  background-color: white !important; /* or any other background-color */
}

/* For IE11 and Edge */
.no-arrow-select::-ms-expand {
  display: none !important;
}



add_filter( 'gettext', 'custom_rename_order_to_donation', 20, 3 );
function custom_rename_order_to_donation( $translated_text, $text, $domain ) {
    if ( $translated_text === 'Order' ) {
        $translated_text = 'תרומה';
    } elseif ( $translated_text === 'Orders' ) {
        $translated_text = 'תרומות';
    } elseif ( $translated_text === 'Place order' ) {
        $translated_text = 'בצע תרומה';
    } elseif ( $translated_text === 'Your order' ) {
        $translated_text = 'התרומה שלך';
    }
    return $translated_text;
}
.cc-color-override--1837261914.cc-window {
    color: rgb(255, 255, 255);
    background-color:red !important;
    backdrop-filter: blur(0px);
}