/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
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: 2.0.0
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 */

/* tooltip */
.custom-tooltip-container {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.custom-tooltip-text {
	position: fixed !important;
	background-color: #FFF;
	color: #000;
	border: 1px #01b5ee solid;
	padding: 6px 10px;
	border-radius: 5px;
	text-align: center;
	white-space: nowrap;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 9999 !important;
}

/* Slider prices */
.slider-container {
  position: relative;
  width: 100%;
  text-align: center;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 14px;
  padding: 0 10px;
  position: relative;
}

.slider-labels span {
  position: absolute;
  bottom: -20px;
  transform: translateX(50%);
  font-size: 14px;
  width: 35px;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;

}

html[lang="en-US"] .slider-labels span {
  transform: translateX(-50%);
}
.slider-labels span.selected {
  font-weight: bold;
  color: #000;
  Border: 1px solid #E3EFFF;
  box-shadow: 0px 0px 12px 0px #0000001F;
  border-radius: 5px;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  outline: none;
  margin: 10px 0;
  background: #e2efff;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(31.72deg, #630AEB -0.57%, #FA186A 97.3%);
  border: solid 3px linear-gradient(31.72deg, #630AEB -0.57%, #FA186A 97.3%);
  cursor: pointer;
  margin-top: -8px; /* התאמה למיקום הנכון */
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #b5a3d0;
  cursor: pointer;
}

.jet-table__cell {
  position: relative; /* מוודא שהתא יהיה בסיס למיקום הלייבל */
}

.coming-soon-label, .sms-label {
  position: absolute;
  top: 10px;
  right: 5px; /* תמיד צמוד לימין התא */
  background: #FA186A;
  color: white;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(40deg);
  font-size: 12px;
  border-radius: 5px;
  width: 100px;
  z-index: 10;
  padding-left: 2.5px;
  font-family: simpler, sans-serif;
  white-space: nowrap; /* מונע שבירת טקסט */
}
.sms-label {
  background: #A2E8FF;
  color: #000;
  padding-left: 0px !important;
}
html[lang="en-US"] .coming-soon-label, .sms-label {
  padding-left: 12px;
}
html[lang="en-US"] .coming-soon-label {
  padding-left: 16px;
  font-size: 10px;
}

@media (max-width: 986px) {
  .coming-soon-label, .sms-label {
    transform: unset;
    top: 0px;
    right: -12px !important;
    height: 10px;
  }
}
