/* 
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
*/
.loader {
  border: 16px solid #f2efda57;
  border-radius: 50%;
  border-top: 16px solid #000;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
  margin: 20vh auto;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media only screen and (min-width: 600px) {
	body{
		background-size: 100%;
	}
	/* שקיפות על עמוד במעבר על האדר
header:hover +  div {
    opacity: 0.5;
    transition: 0.6s;
}*/
}
/*ציטוט */
blockquote {
    padding: 20px;
    margin: 20px;
    border-left: 4px solid #db8e15;
}
body {
    margin: 0px;
}

a{
	color: #000;
}
a:hover{
	color:#db8e15;
}

a.link_box.link_arrow {
    float: left;
    padding: 10px;
    border: 1px solid;
    color: black;
}

.myhide{
	display:none;
}

#btn a:hover , a.link_box.link_arrow:hover{
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #FAE7AC), color-stop(100%, #E0B162));
    background: -webkit-radial-gradient(center, ellipse cover, #FAE7AC 0%, #E0B162 100%);
    background: -o-radial-gradient(center, ellipse cover, #FAE7AC 0%, #E0B162 100%);
    background: -webkit-radial-gradient(center, ellipse, #FAE7AC 0%, #E0B162 100%);
    background: -o-radial-gradient(center, ellipse, #FAE7AC 0%, #E0B162 100%);
    background: radial-gradient(ellipse at center, #FAE7AC 0%, #E0B162 100%);
}

.ba {
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(55%, #FAE7AC), color-stop(150%, #cc9446 ));
    background: -webkit-radial-gradient(center, ellipse cover, #FAE7AC 55%, #cc9446 150%);
    background: -o-radial-gradient(center, ellipse cover, #FAE7AC 55%, #cc9446 150%);
    background: -webkit-radial-gradient(center, ellipse, #FAE7AC 55%, #cc9446 150%);
    background: -o-radial-gradient(center, ellipse, #FAE7AC 55%, #cc9446 150%);
    background: radial-gradient(ellipse at center, #FAE7AC 55%, #cc9446 150%);
}

.datahe, .dataen {
    float: left;
}

/*מהירות */

.con {
	content-visibility: auto;
	/*contain-intrinsic-size: 750px;*/
}
.bialty-container{
	content-visibility: auto;
	/*contain-intrinsic-size: 100vh;*/
}

/*הדפס*/
/* הדפסה */
@media print {
  @page {
    margin: 1cm; /* ניתן לשנות את השוליים לפי הצורך */
    size: auto; /* מתאים להדפסה לאורך ולרוחב */
  }

  body * {
    visibility: hidden;
  }

  header, #section-to-print, header *, #section-to-print * {
    visibility: visible;
  }

  #section-to-print, #header {
    position: relative;
    top: 0px !important;
    right: 0px !important;
    margin: 0px;
    width: 100%;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white; /* או כל צבע רקע אחר */
    border-bottom: 1px solid #ccc; /* גבול עדין להפרדה */
  }
	 /* מניעת שבירת עמודים */
  * {
    page-break-before: auto;
    page-break-after: auto;
    page-break-inside: avoid;
  }
	/* הסתרת פוטר לגמרי */ 
	footer{
		display: none;
	}
}



/*עיצוב לחצן בחירה */
selector [type="checkbox"]:checked,
selector [type="checkbox"]:not(:checked),
selector [type="radio"]:checked,
selector [type="radio"]:not(:checked){
	position: absolute;
	visibility: hidden;
}

selector .elementor-field-option label {
    display: block;
    padding: 0px 40px;
    transition: 0.2s all;
    color: #3C454C;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

selector .elementor-field-option label:after {
  width: 20px;
  height: 20px;
  content: "";
  border: 1.5px solid #000;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -2px -2px;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

selector input:checked ~ label {
  color: #000 !important;
}

selector input:checked ~ label:after {
  background-color: #000;
  border: 2px #c79f64;
}