/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

 /* הסתרת ה־Header */
  [role="banner"] {
    display: none !important;
  }

  /* הסתרת ה־Footer */
  footer[role="contentinfo"] {
    display: none !important;
  }

* {
  box-sizing: border-box;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
.loading-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.loading-box {
  background: white;
  padding: 25px 40px;
  border-radius: 12px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.2em;
  color: #007d8e;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #007d8e;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
  margin-bottom: 12px;
}

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

/* אנימציית fade-out */
#loading-popup.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}


/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Open Sans Hebrew-regular-400 */
@font-face {
  font-family: "Noto Sans Hebrew";
  font-style: normal;
  font-weight: 100;
  src: url("NotoSansHebrew-Thin.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans Hebrew";
  font-style: normal;
  font-weight: 200;
  src: url("NotoSansHebrew-ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans Hebrew";
  font-style: normal;
  font-weight: 300;
  src: url("NotoSansHebrew-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans Hebrew";
  font-style: normal;
  font-weight: 400;
  src: url("NotoSansHebrew-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans Hebrew";
  font-style: normal;
  font-weight: 500;
  src: url("NotoSansHebrew-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans Hebrew";
  font-style: normal;
  font-weight: 600;
  src: url("NotoSansHebrew-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans Hebrew";
  font-style: normal;
  font-weight: 700;
  src: url("NotoSansHebrew-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans Hebrew";
  font-style: normal;
  font-weight: 800;
  src: url("NotoSansHebrew-ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans Hebrew";
  font-style: normal;
  font-weight: 900;
  src: url("NotoSansHebrew-Black.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  font-size: 16px;
  accent-color: #3068d5;
}

body {
  width: 100%;
  margin: 0 auto;
  color: #262626;
  background-color: #e0e8f9;
  font-family: "Noto Sans Hebrew";
  overflow: auto;
  padding-bottom: 100px;
}

a {
  text-decoration: none;
  color: #262626;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

header {
  background-color: #2653aa;
  height: 192px;
  position: relative;
  padding-inline: 16px;
  padding-top: 10px;
  margin-bottom: 72px;
}
header .logo-wrapper {
  display: flex;
  justify-content: flex-start;
}
header .divider {
  display: none;
  height: 40px;
  width: 1px;
  background-color: #ccc;
  margin-inline-end: 3px;
}
@media (max-width: 1279px) {
  header {
    display: flex;
    height: 65px;
    align-items: center;
    padding: 16px;
    gap: 8px;
  }
  header .logo-wrapper {
    max-width: 115px;
  }
  header .logo-wrapper img {
    width: 100%;
  }
  header .wrapper {
    max-width: unset;
    margin: 0;
  }
  header .main-h1 {
    font-size: 14px;
    margin-bottom: 0;
    gap: 8px;
  }
  header .main-h1::before {
    content: url("header-icon-small.svg");
    margin-top: 5px;
  }
  header .divider {
    display: none;
    display: inline-block;
  }
}

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1539px) {
  .wrapper {
    max-width: 1134px;
  }
}
@media (max-width: 1279px) {
  .wrapper {
    max-width: 344px;
  }
}

form {
  background-color: #fff;
  border-radius: 8px;
  padding: 48px;
}
@media (max-width: 1279px) {
  form {
    padding: 16px;
  }
}

.main-h1 {
  font-size: 40px;
  margin-bottom: 9px;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-h1::before {
  content: url("header-icon.svg");
  padding-top: 10px;
}
@media (max-width: 1279px) {
  .main-h1::before {
    padding-top: 0;
  }
}

.tags-container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.tag {
  line-height: 0.7;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 8px;
}
.tag.red {
  background-color: rgba(255, 226, 231, 0.5019607843);
  border: 1px solid #D2245B;
}
.tag.yellow {
  background-color: rgba(251, 235, 198, 0.5019607843);
  border: 1px solid #EFAD1B;
}
.tag.white {
  background-color: rgba(238, 238, 238, 0.5019607843);
  border: 1px solid #CCD7EA;
}

.tooltip-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 32px;
}
.tooltip-wrapper p,
.tooltip-wrapper label,
.tooltip-wrapper span {
  font-size: 14px;
}
.tooltip-wrapper .tooltip-btn {
  background-color: transparent;
  border: none;
  padding: 0;
  height: 18px;
  width: 18px;
  cursor: pointer;
}

.tooltip-box {
  position: absolute;
  top: -65px;
  right: 22px;
  background-color: white;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0px 0px 12px 0px rgba(19, 63, 106, 0.1);
  font-size: 16px;
  color: #000;
  z-index: 100;
  display: none;
  width: 218px;
  line-height: 1.4;
}

.tooltip-box::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}

.tooltip-box.show {
  display: block;
}

.info-icon {
  background-image: url("info.svg");
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  display: inline-block;
}

label,
legend {
  font-size: 14px !important;
  font-weight: 400;
  display: inline-block;
  line-height: 1;
  max-width: 100%;
  margin-bottom: 14px !important;
}
label.required::before,
legend.required::before {
  content: "*";
  color: #c8112d;
  font-size: inherit;
  margin-inline-end: 3px;
  position: relative;
  top: 2px;
}
@media (max-width: 1919px) {
  label,
  legend {
    font-size: 14px;
  }
}

input:not([type=radio]) {
  height: 48px;
  border-radius: 10px;
  border: 1px solid #CCD7EA;
  width: 100%;
  background-color: #fff;
  padding-inline-start: 10px;
}

input[type=radio] {
  height: 18px;
  width: 18px;
}

input[type=time] {
  padding-top: 7px;
  color: #596371;
}
input[type=time]::-webkit-datetime-edit {
  order: 2;
  flex: 1;
  text-align: end;
}
input[type=time]::-webkit-calendar-picker-indicator {
  opacity: 0;
  order: 1;
}
input[type=time]::-webkit-datetime-edit-fields-wrapper {
  opacity: 0;
}
input[type=time]:focus::-webkit-datetime-edit-fields-wrapper, input[type=time]:valid::-webkit-datetime-edit-fields-wrapper {
  opacity: 1;
}

input[type=date] {
  padding-top: 7px;
  color: #596371;
}
input[type=date]::-webkit-datetime-edit {
  order: 2;
  flex: 1;
  text-align: end;
}
input[type=date]::-webkit-calendar-picker-indicator {
  flex: 0 0 20%;
  order: 1;
  background-image: url("calander_default.svg");
  background-size: 22px;
  background-position-y: -4px;
  background-position-x: -4px;
}
input[type=date]::-webkit-datetime-edit-fields-wrapper {
  opacity: 0;
}
input[type=date]:focus::-webkit-datetime-edit-fields-wrapper, input[type=date]:valid::-webkit-datetime-edit-fields-wrapper {
  opacity: 1;
}

.form-control {
  padding-inline: 8px;
}

fieldset {
  padding: 0;
}

textarea,
textarea.form-control {
  border-radius: 10px;
  border: 1px solid #CCD7EA;
  width: 100%;
  background-color: #fff;
  resize: none;
  height: 94px;
  padding-inline-start: 16px;
  padding-top: 10px;
}

input,
textarea {
  font-size: 18px;
  font-weight: 400;
  transition: all 0.2s ease;
  padding-inline-end: 11px;
}
input:focus,
textarea:focus {
  border: 1px solid #3068d5;
  outline: none;
}
input:disabled,
textarea:disabled {
  background-color: #e9edf2;
  color: #596371;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  line-height: 1.2;
}

input[type=email] {
  text-align: left;
  padding-left: 20px;
}
input[type=email]::-webkit-input-placeholder {
  text-align: right !important;
}

.dropdown,
.form-control {
  background-color: #f7faff;
  border: 1px solid #d7ddea;
  box-shadow: none;
  padding-top: 0;
}
.dropdown > button,
.form-control > button {
  width: 100%;
  height: 100%;
  background-color: #f7faff;
  text-align: right;
  padding: 0 10px;
  border: 1px solid #d7ddea;
  border-radius: 4px;
  position: relative;
}
.dropdown > button .caret,
.form-control > button .caret {
  position: absolute;
  left: 10px;
  top: 50%;
}
.dropdown .dropdown-menu,
.form-control .dropdown-menu {
  width: 100%;
  text-align: right;
  font-size: 16px;
}
.dropdown .dropdown-menu li,
.form-control .dropdown-menu li {
  padding: 0 10px;
}
.dropdown .dropdown-menu li a,
.form-control .dropdown-menu li a {
  padding: 3px 0 3px 20px;
}
.dropdown:disabled,
.form-control:disabled {
  border: 1px solid transparent;
  background-color: #e9edf2;
  color: #596371;
}
.dropdown:focus,
.form-control:focus {
  border: 1px solid #3068d5;
  box-shadow: none;
}

.form-select {
  color: #676767;
  height: 48px;
}

.form-control[type=time]::-webkit-datetime-edit {
  order: 2;
  flex: 1;
  text-align: end;
}
.form-control[type=time]::-webkit-calendar-picker-indicator {
  opacity: 0;
  order: 1;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-check .form-check-input {
  margin: 0;
  background-image: none;
  outline: 1px solid #fff;
  outline-offset: -2px;
  box-shadow: none;
  border-color: #ccd7ea;
}
.form-check .form-check-input:checked {
  background-color: #3068d5;
}
.form-check label {
  margin: 0 !important;
  flex: auto;
}

.dropdown {
  border: none;
}

.form-section {
  border-bottom: 1px solid #dce6f1;
  padding: 15px 0 30px 0;
}
.form-section:last-of-type {
  border-bottom: none;
}
.form-section h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin: 0 0 6px 0;
}

.groups-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.form-group {
  margin: 0;
  position: relative;
}
.form-group .toggle-btn {
  min-width: 260px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.form-group .toggle-btn .btn.btn-primary {
  width: 120px;
  line-height: 40px;
  margin: 0;
  border-color: transparent;
}
.form-group .toggle-btn .btn.btn-primary:not(.active) {
  background-color: #b9bcbc;
  color: #000;
}
@media (max-width: 1279px) {
  .form-group .toggle-btn .btn.btn-primary {
    width: 100px;
  }
}
@media (max-width: 1279px) {
  .form-group .toggle-btn .btn.btn-primary {
    line-height: 30px;
  }
}

.form-group {
  flex: 1;
  max-width: unset;
}
@media (max-width: 767px) {
  .form-group {
    flex: 0 1 100%;
  }
}

.error-message {
  width: 100%;
  display: inline-flex;
  align-items: end;
  justify-content: center;
  color: #e14043;
  font-size: 14px;
}

.toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.yes-no-toggle {
  border: 1px solid #CCD7EA;
  overflow: hidden;
}
.yes-no-toggle .btn-outline-primary {
  display: flex;
  padding: 21px;
  margin: 0;
  background-color: #fff;
}
.yes-no-toggle .btn-outline-primary:first-of-type {
  border-inline-end: 1px solid #CCD7EA;
  border-radius: 0;
  padding-inline: 18px;
}
.yes-no-toggle .btn-outline-primary.yes-toggle, .yes-no-toggle .btn-outline-primary.no-toggle, .yes-no-toggle .btn-outline-primary.left-earlier-toggle {
  border-radius: 0 !important;
}
.yes-no-toggle .btn-check:checked + .no-toggle {
  background-color: #D2245B;
}
.yes-no-toggle .btn-check:checked + .no-toggle svg path {
  fill: #fff;
  stroke: #fff;
}
.yes-no-toggle .btn-check:checked + .yes-toggle {
  background-color: #3068d5;
}
.yes-no-toggle .btn-check:checked + .yes-toggle svg path {
  stroke: #fff;
}
.yes-no-toggle.three-toggle {
  border: none;
  border-radius: 0;
}
.yes-no-toggle.three-toggle .btn-outline-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  height: 72px;
  width: 72px;
  padding: 0;
}
.yes-no-toggle.three-toggle .yes-toggle {
  border-inline-start: 1px solid #CCD7EA;
}
.yes-no-toggle.three-toggle .no-toggle {
  border-inline-end: 1px solid #CCD7EA;
  margin-left: 0 !important;
}
.yes-no-toggle.three-toggle .left-earlier-toggle {
  margin-left: 0;
  padding-inline: 17px;
}

.smile-toggle {
  display: flex;
  justify-content: space-between;
}
.smile-toggle label {
  padding: 0;
}
.smile-toggle label:first-of-type {
  padding-inline: 0;
}
.smile-toggle .btn-outline-primary svg {
  border-radius: 50%;
}
.smile-toggle .btn-check:checked + label {
  background-color: transparent;
}
.smile-toggle .btn-check:checked + label path {
  fill: #fff;
  stroke: #fff;
}
.smile-toggle .btn-check:checked + label path:first-of-type {
  fill: transparent;
  stroke: transparent;
}
.smile-toggle .btn-check:checked + .smile-5 svg {
  background-color: #c8112d;
}
.smile-toggle .btn-check:checked + .smile-4 svg {
  background-color: #D2245B;
}
.smile-toggle .btn-check:checked + .smile-3 svg {
  background-color: #EFAD1B;
}
.smile-toggle .btn-check:checked + .smile-2 svg {
  background-color: #3068d5;
}
.smile-toggle .btn-check:checked + .smile-1 svg {
  background-color: #3c7e5a;
}

.form-select-lg {
  font-size: 16px;
  padding-inline: 8px 42px;
  background-position: left 0.75rem center;
}

.radio-buttons-wrapper {
  display: flex;
}
.radio-buttons-wrapper.vertical {
  flex-direction: row;
}
.radio-buttons-wrapper.horizontal {
  flex-direction: column;
}

.btn-container .btn {
  margin: 0 auto;
  width: 100%;
}

.btn {
  background-color: transparent;
  border: none;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  display: block;
  padding-inline: 0;
}
.btn span {
  display: inline-flex;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.btn.filled, .btn.outlined, .btn.text {
  height: 48px;
}
.btn.filled {
  background-color: #D2245B;
}
.btn.filled span {
  color: #fff;
}
.btn.outlined {
  border: 1px solid #D2245B;
}
.btn.outlined span {
  color: #D2245B;
}
.btn.text span {
  color: #D2245B;
}
.btn:disabled {
  opacity: 0.55;
  pointer-events: none;
}

.go-back {
  display: flex;
  align-items: center;
  line-height: 48px;
  height: 48px;
  margin-bottom: 24px;
  padding: 0;
  background-color: #F8FAFF;
  position: sticky;
  z-index: 2;
  top: 0;
  border-radius: 0;
}
.go-back svg {
  margin-top: 4px;
}
.go-back span {
  color: #D2245B;
  font-weight: 400;
}
.go-back:hover, .go-back:active {
  background-color: #F8FAFF;
}

.fixed-submit {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  padding-block: 21px 32px;
  padding-inline: 16px;
  background-color: #fff;
  box-shadow: 0px -4px 4px 0px rgba(0, 0, 11, 0.1607843137);
  max-width: 430px;
  right: 50%;
  transform: translateX(50%);
  z-index: 9;
}

.tabs-wrapper {
  display: flex;
}
.tabs-wrapper .menu-button-wrap {
  color: #007d8e;
  font-size: 16px;
  font-weight: 700;
  height: 56px;
  box-shadow: 0px -4px 4px 0px rgba(183, 187, 203, 0.1607843137);
  flex: 1 0 33%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.tabs-wrapper .menu-button-wrap a {
  color: inherit;
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 56px;
}
.tabs-wrapper .menu-button-wrap:first-of-type {
  border-radius: 0 8px 0 0;
  border-inline-end: 1px solid #CCD7EA;
}
.tabs-wrapper .menu-button-wrap:last-of-type {
  border-radius: 8px 0 0 0;
  border-inline-start: 1px solid #CCD7EA;
}
.tabs-wrapper .menu-button-wrap.active, .tabs-wrapper .menu-button-wrap:active {
  background-color: #007d8e;
  color: #fff;
}

/*************************************************************************************************************/
/*********************************************************************************************************/
#smartwizard ul.nav {
  justify-content: space-between;
  padding: 0;
}
#smartwizard ul.nav > li {
  flex-grow: 0;
}
#smartwizard ul.nav > li .nav-link {
  padding-inline: 0;
}
#smartwizard ul.nav > li .nav-link.default .num {
  background-color: #f1f7ff;
  top: -40px;
  height: 44px;
  width: 44px;
  outline: 33px solid #fff;
}
#smartwizard ul.nav > li .nav-link.default .num svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#smartwizard ul.nav > li .nav-link.default .num svg path {
  stroke: #3068d5;
}
@media (max-width: 1279px) {
  #smartwizard ul.nav > li .nav-link.default .num {
    padding-left: 0;
    outline: 10px solid #fff;
    right: 0;
  }
}
#smartwizard ul.nav > li .nav-link.default span {
  position: relative;
  z-index: 100;
  display: inline-block;
  white-space: nowrap;
  color: #3068d5;
}
@media (max-width: 1279px) {
  #smartwizard ul.nav > li .nav-link.default span {
    display: none;
  }
}
#smartwizard ul.nav > li .nav-link.active .num {
  background-color: #3068d5;
}
#smartwizard ul.nav > li .nav-link.active .num svg path {
  stroke: #fff;
}
#smartwizard ul.nav > li .nav-link.active span {
  font-weight: 600;
}
#smartwizard ul.nav > li .nav-link.done {
  position: relative;
}
#smartwizard ul.nav > li .nav-link.done .num {
  background-color: #3068d5;
}
#smartwizard ul.nav > li .nav-link.done svg {
  display: none;
}
#smartwizard ul.nav > li .nav-link.done::before {
  content: url("done-icon.svg");
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 101;
}
#smartwizard ul.nav > li .nav-link::after {
  content: none;
}
@media (max-width: 1279px) {
  #smartwizard ul.nav > li .nav-link {
    margin-top: 40px;
    margin-bottom: 0;
    padding: 0;
  }
}
@media (max-width: 1279px) {
  #smartwizard ul.nav > li {
    flex-grow: 1;
    max-width: 46px;
  }
}
#smartwizard ul.nav::before {
  max-width: 1144px;
  height: 2px;
  left: 20px;
  background-color: #bfd0f2;
}
@media (max-width: 1539px) {
  #smartwizard ul.nav::before {
    max-width: 950px;
  }
}
@media (max-width: 1279px) {
  #smartwizard ul.nav::before {
    width: 280px;
    left: 15px;
    max-width: unset;
    top: 22px;
  }
}
@media (max-width: 1279px) {
  #smartwizard ul.nav {
    flex-direction: row !important;
    margin-bottom: 0;
  }
}
#smartwizard .tab-content {
  height: auto !important;
  transition: none !important;
}
@media (max-width: 1279px) {
  #smartwizard .tab-content {
    padding-top: 40px;
  }
}
#smartwizard .tab-pane {
  padding: 0;
}
#smartwizard .sw-btn:focus {
  outline: 2px solid #3068d5;
}
#smartwizard .toolbar-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-inline: 0;
}
#smartwizard .sw-btn-next {
  color: #fff;
  background-color: #000;
  border-radius: 24px;
  opacity: 1;
  height: 38px;
  font-size: 16px;
  padding-inline: 24px;
  border: none;
  margin-inline-start: auto;
}
@media (max-width: 1279px) {
  #smartwizard .sw-btn-next {
    height: 44px;
    border-radius: 8px;
  }
  #smartwizard .sw-btn-next.wide-btn {
    width: 100%;
  }
}
#smartwizard .sw-btn-prev {
  color: #000;
  background-color: transparent;
  opacity: 1;
  height: 38px;
  font-weight: 600;
  font-size: 18px;
  padding-inline: 24px;
  border: none;
  display: flex;
  align-items: center;
  padding-inline-start: 0;
  margin-inline-end: auto;
}
#smartwizard .sw-btn-prev::before {
  content: url("chevron-black.svg");
  height: 18px;
}

.custom-upload {
  display: flex;
  gap: 48px;
}
.custom-upload .upload-file-input-container {
  flex: 0 1 584px;
  max-width: 584px;
  height: 246px;
  border: 1px solid #bfd0f2;
  border-radius: 8px;
  display: grid;
  place-content: center;
}
.custom-upload .upload-file-input-container p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 32px;
  color: #676767;
  text-align: center;
}
.custom-upload .upload-file-input-container span {
  font-size: 14px;
  font-weight: 400;
  margin-top: 16px;
  color: #676767;
}
@media (max-width: 1279px) {
  .custom-upload .upload-file-input-container {
    flex: 0 1 174px;
    max-width: 584px;
    height: 174px;
  }
  .custom-upload .upload-file-input-container p {
    font-size: 14px;
  }
}
.custom-upload #fileList {
  max-width: 552px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1539px) {
  .custom-upload #fileList {
    max-width: 408px;
  }
}
@media (max-width: 1279px) {
  .custom-upload #fileList {
    max-width: 344px;
  }
}
@media (max-width: 1279px) {
  .custom-upload {
    flex-direction: column;
    min-height: 460px;
  }
}

#selectFilesBtn {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  border-radius: 24px;
}
#selectFilesBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.file-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  gap: 25px;
}

.file-item.success {
  background-color: #dff4ea;
  color: #2e7d32;
}

.file-item.error {
  background-color: #fdebf3;
  color: #e14043;
}

.file-details-wrapper {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1279px) {
  .file-details-wrapper {
    max-width: 60%;
  }
}

.file-name {
  flex-grow: 1;
  font-weight: 400;
  font-size: 18px;
  color: #3f4c5e;
  word-wrap: break-word;
}

.file-size {
  font-size: 16px;
  font-weight: 400;
  color: #676767;
}

.upload-section-wrapper {
    position: relative; /* חשוב מאוד: זהו הקונטיינר היחסי להודעה הצפה */
    /* הוסיפי padding-bottom אם את רואה שהכפתורים או תוכן אחרי נכנסים מתחת להודעה */
    /* לדוגמה: padding-bottom: 20px; */
}

/* סגנונות ההודעה הצפה והשקופה */
.feature-message {
    max-width: 584px;
    color: #3068d5;
    position: absolute; /* מאפשר להצמיד את האלמנט ביחס לאלמנט האב היחסי */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; /* גורם להודעה לכסות את כל השטח של ה-upload-section-wrapper */
    
    background-color: rgba(255, 255, 255, 0.85); /* רקע לבן עם 85% אטימות (שקיפות של 15%) */
    
    display: flex; /* למיקום הטקסט במרכז */
    align-items: center; /* יישור אנכי למרכז */
    justify-content: center; /* יישור אופקי למרכז */
    
    border-radius: 8px; /* התאמה לפינות העגולות של המקטע שמתחת (אם קיים) */
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    z-index: 100; /* ודא שההודעה מעל כל שאר התוכן */
    
    backdrop-filter: blur(2px); /* אפקט טשטוש קל לרקע שמתחתיו (מודרני, ייתכן ולא נתמך בדפדפנים ישנים) */
    -webkit-backdrop-filter: blur(2px); /* תמיכה בדפדפני וובקיט (Safari) */
    
    padding: 20px; /* רווח פנימי לטקסט, למקרה שהאלמנט קטן מהטקסט */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* צל עדין להבלטה */
}

.feature-message p {
    margin: 0; /* הסרת מרווחים מהפסקה בתוך ההודעה כדי למנוע רווחים מיותרים */
}

.remove-btn {
  background-color: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  margin-inline-start: auto;
}

form .input-container {
  position: relative;
}
form .tab-content h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 130px;
  color: #3068d5;
}
@media (max-width: 1279px) {
  form .tab-content h2 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
}

form .date-hour-conatainer {
  display: flex;
  gap: 12px;
  flex-direction: row; /* ברירת מחדל אם לא במובייל */
}

form .date-hour-conatainer > div {
  flex: 1 0 48%;
}

@media (max-width: 1279px) {
  form .date-hour-conatainer {
    flex-direction: column;
  }

  form .date-hour-conatainer > div {
    /* flex: 1 0 100%; */ /* אם אתה רוצה להפעיל – בטל את ההערה */
  }
}

form #step-1 section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 52px;
}
form #step-1 section:has(#formFillerYes:checked) .fillerNameInput {
  display: none;
}
form #step-1 section:has(#formFillerNo:checked) .fillerNameInput {
  display: block;
  visibility: visible;
}
form #step-1 section .fillerNameInput {
  display: none;
}
@media (max-width: 1279px) {
  form #step-1 section {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}
form #step-2 section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 52px;
}
@media (max-width: 1279px) {
  form #step-2 section {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}
form #step-2 section .tooltip-btn {
  align-self: baseline;
}
form #step-2 section .tooltip-box {
  top: -55px;
  right: -25px;
}
form #step-3 section fieldset {
  display: grid;
  gap: 40px 52px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 52px;
}
@media (max-width: 1279px) {
  form #step-3 section fieldset {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    margin-bottom: 32px;
  }
}
form #step-3 section .textArea {
  grid-template-columns: repeat(1, 1fr);
}
form #step-3 section .textArea textarea {
  max-width: 773px;
}
form #step-3 section .grid-item.wide {
  grid-column: span 2;
}
@media (max-width: 1279px) {
  form #step-3 section .grid-item.wide {
    grid-column: 1;
  }
}
form #step-3 section .witness-1 {
  position: relative;
  margin-bottom: 52px;
}
form #step-3 section #addOptionalWitness {
  position: absolute;
  bottom: -40px;
  right: 0;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
}
form #step-3 section .hidden {
  display: none;
}
form #step-3 section .witness-2-phone {
  position: relative;
}
form #step-3 section .witness-2-phone #removeOptionalWitness {
  position: absolute;
  left: -60px;
  top: 50%;
}
form #step-3 section .treatment:has(#isGotTreatmentNo:checked) .caringFactor,
form #step-3 section .treatment:has(#isGotTreatmentNo:checked) .evacuationLocation {
  display: none;
}
form #step-3 section .treatment:has(#isGotTreatmentYes:checked) .caringFactor,
form #step-3 section .treatment:has(#isGotTreatmentYes:checked) .evacuationLocation {
  display: block;
  visibility: visible;
}
form #step-3 section .caringFactor,
form #step-3 section .evacuationLocation {
  display: none;
}
form #step-3 section .police-parents:has(#isParentsCalledNo:checked) .isParentsArrived {
  display: none;
}
form #step-3 section .police-parents:has(#isParentsCalledYes:checked) .isParentsArrived {
  display: block;
  visibility: visible;
}
form #step-3 section .isParentsArrived {
  display: none;
}
form #step-4 .hidden-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
form .finishForm {
  display: none;
  color: #fff;
  background-color: #000;
  border-radius: 24px;
  opacity: 1;
  height: 38px;
  font-size: 16px;
  padding-inline: 24px;
  border: none;
  margin-inline-start: auto;
}
form .finishForm:hover, form .finishForm:focus, form .finishForm:active {
  color: #fff;
  background-color: #000;
}
@media (max-width: 1279px) {
  form .finishForm {
    height: 44px;
    border-radius: 8px;
  }
}
form.final-step .finishForm {
  display: block;
}
form.final-step .sw-btn-next.disabled {
  display: none;
}

#finish-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
#finish-modal > div {
  position: relative;
  background: white;
  padding: 32px 64px;
  border-radius: 8px;
  min-width: 300px;
  text-align: center;
}
#finish-modal > div svg {
  margin-bottom: 56px;
}
@media (max-width: 1279px) {
  #finish-modal > div svg {
    margin-bottom: 40px;
  }
}
#finish-modal > div h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #3f4c5e;
}
@media (max-width: 1279px) {
  #finish-modal > div h3 {
    font-size: 20px;
  }
}
#finish-modal > div p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  color: #3f4c5e;
}

#close-modal-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  color: #000; /* צבע ברירת מחדל - אפשר להתאים */
  transition: transform 0.2s ease, color 0.2s ease;
}

#close-modal-btn:hover {
  color: #999;            /* צבע בהובר */
  transform: scale(1.2);  /* הגדלה קלה */
}

@media (max-width: 1279px) {
  #finish-modal > div p {
    font-size: 16px;
  }
}
@media (max-width: 1279px) {
  #finish-modal > div {
    padding: 40px 56px;
  }
}/*# sourceMappingURL=style.css.map */