@charset "UTF-8";
:root {
  --bs-blue: #009ef6;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-gray: #7e8299;
  --bs-gray-dark: #3f4254;
  --bs-gray-100: #f5f8fa;
  --bs-gray-200: #eff2f5;
  --bs-gray-300: #e4e6ef;
  --bs-gray-400: #b5b5c3;
  --bs-gray-500: #a1a5b7;
  --bs-gray-600: #7e8299;
  --bs-gray-700: #5e6278;
  --bs-gray-800: #3f4254;
  --bs-gray-900: #181c32;
  --bs-white: #ffffff;
  --bs-light: #f5f8fa;
  --bs-primary: #009ef7;
  --bs-secondary: #e4e6ef;
  --bs-success: #50cd89;
  --bs-info: #7239ea;
  --bs-warning: #ffc700;
  --bs-danger: #f1416c;
  --bs-dark: #181c32;
  --bs-white-rgb: 255, 255, 255;
  --bs-light-rgb: 245, 248, 250;
  --bs-primary-rgb: 0, 158, 247;
  --bs-secondary-rgb: 228, 230, 239;
  --bs-success-rgb: 80, 205, 137;
  --bs-info-rgb: 114, 57, 234;
  --bs-warning-rgb: 255, 199, 0;
  --bs-danger-rgb: 241, 65, 108;
  --bs-dark-rgb: 24, 28, 50;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-rgb: 24, 28, 50;
  --bs-font-sans-serif: Poppins, Helvetica, "sans-serif";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #181c32;
  --bs-body-bg: #ffffff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}
hr:not([size]) {
  height: 1px;
}
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #181c32;
}
h1,
.h1 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 1.75rem;
  }
}
h2,
.h2 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 1.5rem;
  }
}
h3,
.h3 {
  font-size: calc(1.26rem + 0.12vw);
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 135%;
  }
}
h4,
.h4 {
  font-size: 1.25rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol,
ul {
  padding-right: 2rem;
}
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 500;
}
dd {
  margin-bottom: 0.5rem;
  margin-right: 0;
}
b,
strong {
  font-weight: 600;
}
mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
sub {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
a {
  color: #009ef7;
  text-decoration: none;
}
a:hover {
  color: #006dab;
  text-decoration: underline;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
pre,
code {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}
pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
code {
  font-size: 0.875em;
  color: #b93993;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
img,
svg {
  vertical-align: middle;
}
table {
  caption-side: bottom;
  border-collapse: collapse;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
thead,
tbody,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
label {
  display: inline-block;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
select {
  text-transform: none;
}
[role="button"] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
  display: none;
}
button,
[type="button"],
[type="submit"] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
textarea {
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  float: right;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: right;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}
::-webkit-inner-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
  padding: 0;
}
::file-selector-button {
  font: inherit;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
iframe {
  border: 0;
}
summary {
  display: list-item;
  cursor: pointer;
}
[hidden] {
  display: none !important;
}
.list-inline {
  padding-right: 0;
  list-style: none;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.container,
.container-fluid,
.container-xxl {
  width: 100%;
  padding-left: var(--bs-gutter-x, 1.5rem);
  padding-right: var(--bs-gutter-x, 1.5rem);
  margin-left: auto;
  margin-right: auto;
}
/*media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl,
  .container {
    max-width: 1320px;
  }
}*/
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%; /*padding-left: calc(var(--bs-gutter-x) * .5);padding-right: calc(var(--bs-gutter-x) * .5)*/
  margin-top: var(--bs-gutter-y);
}
.col {
  flex: 1 0 0%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #181c32;
  --bs-table-striped-bg: rgba(245, 248, 250, 0.75);
  --bs-table-active-color: #181c32;
  --bs-table-active-bg: #f5f8fa;
  --bs-table-hover-color: #181c32;
  --bs-table-hover-bg: #f5f8fa;
  width: 100%;
  margin-bottom: 1rem;
  color: #181c32;
  vertical-align: top;
  border-color: #eff2f5;
}
.table > :not(caption) > * > * {
  padding: 0.75rem 0.75rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}
.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 110%;
  font-weight: 500;
  line-height: 1.5;
  color: #181c32;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #e4e6ef;
  appearance: none;
  border-radius: 0.475rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type="file"] {
  overflow: hidden;
}
.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #181c32;
  background-color: #ffffff;
  border-color: #b5b5c3;
  outline: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075),
    0 0 0 0.25rem rgba(0, 158, 247, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::placeholder {
  color: #a1a5b7;
  opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #eff2f5;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.75rem 1rem;
  margin: -0.75rem -1rem;
  margin-inline-end: 1rem;
  color: #181c32;
  background-color: #f5f8fa;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #e9ecee;
}
.form-control::-webkit-file-upload-button {
  padding: 0.75rem 1rem;
  margin: -0.75rem -1rem;
  margin-inline-end: 1rem;
  color: #181c32;
  background-color: #f5f8fa;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #e9ecee;
}
.form-control-sm {
  min-height: calc(1.5em + 110% + 2px);
  padding: 0.55rem 0.75rem;
  font-size: 0.925rem;
  border-radius: 0.475rem;
}
.form-control-sm::file-selector-button {
  padding: 0.55rem 0.75rem;
  margin: -0.55rem -0.75rem;
  margin-inline-end: 0.75rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.55rem 0.75rem;
  margin: -0.55rem -0.75rem;
  margin-inline-end: 0.75rem;
}
textarea.form-control {
  min-height: calc(1.5em + 1.5rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 110% + 2px);
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-right: 2.25rem;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: right;
  margin-right: -2.25rem;
}
.form-check-input {
  width: 1.75rem;
  height: 1.75rem;
  margin-top: -0.125rem;
  vertical-align: top;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  color-adjust: exact;
  transition: background-color 0.15s ease-in-out,
    background-position 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-check-input {
    transition: none;
  }
}
.form-check-input[type="checkbox"] {
  border-radius: 0.45em;
}
.form-check-input[type="radio"] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #b5b5c3;
  outline: 0;
  box-shadow: none;
}
.form-check-input:checked {
  background-color: #009ef7;
  border-color: #009ef7;
}
.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 11' width='13' height='11' fill='none'%3e%3cpath d='M11.0426 1.02893C11.3258 0.695792 11.8254 0.655283 12.1585 0.938451C12.4917 1.22162 12.5322 1.72124 12.249 2.05437L5.51985 9.97104C5.23224 10.3094 4.72261 10.3451 4.3907 10.05L0.828197 6.88335C0.50141 6.59288 0.471975 6.09249 0.762452 5.7657C1.05293 5.43891 1.55332 5.40948 1.88011 5.69995L4.83765 8.32889L11.0426 1.02893Z' fill='%23FFFFFF'/%3e%3c/svg%3e");
}
.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23FFFFFF'/%3e%3c/svg%3e");
}
.form-check-input[type="checkbox"]:indeterminate {
  background-color: #009ef7;
  border-color: #009ef7;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}
.form-switch {
  padding-right: 3.75rem;
}
.form-switch .form-check-input {
  width: 3.25rem;
  margin-right: -3.75rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: right center;
  border-radius: 3.25rem;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23B5B5C3'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: left center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FFFFFF'/%3e%3c/svg%3e");
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}
.input-group:not(.has-validation)
  > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-right: -1px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn {
  display: inline-block;
  font-weight: 500;
  line-height: 1.5;
  color: #181c32;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 110%;
  border-radius: 0.475rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #181c32;
  text-decoration: none;
}
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 158, 247, 0.25);
}
.btn:active,
.btn.active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:active:focus,
.btn.active:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 158, 247, 0.25),
    inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.6;
  box-shadow: none;
}
.btn-primary {
  color: #000000;
  background-color: #009ef7;
  border-color: #009ef7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-primary:hover {
  color: #000000;
  background-color: #26adf8;
  border-color: #1aa8f8;
}
.btn-primary:focus {
  color: #000000;
  background-color: #26adf8;
  border-color: #1aa8f8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(0, 134, 210, 0.5);
}
.btn-primary:active,
.btn-primary.active {
  color: #000000;
  background-color: #33b1f9;
  border-color: #1aa8f8;
}
.btn-primary:active:focus,
.btn-primary.active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(0, 134, 210, 0.5);
}
.btn-primary:disabled,
.btn-primary.disabled {
  color: #000000;
  background-color: #009ef7;
  border-color: #009ef7;
}
.btn-secondary {
  color: #000000;
  background-color: #e4e6ef;
  border-color: #e4e6ef;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-secondary:hover {
  color: #000000;
  background-color: #e8eaf1;
  border-color: #e7e9f1;
}
.btn-secondary:focus {
  color: #000000;
  background-color: #e8eaf1;
  border-color: #e7e9f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(194, 196, 203, 0.5);
}
.btn-secondary:active,
.btn-secondary.active {
  color: #000000;
  background-color: #e9ebf2;
  border-color: #e7e9f1;
}
.btn-secondary:active:focus,
.btn-secondary.active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(194, 196, 203, 0.5);
}
.btn-secondary:disabled,
.btn-secondary.disabled {
  color: #000000;
  background-color: #e4e6ef;
  border-color: #e4e6ef;
}
.collapse:not(.show) {
  display: none;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-right: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #009ef7;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover,
.nav-link:focus {
  color: #006dab;
  text-decoration: none;
}
.nav-link.disabled {
  color: #7e8299;
  pointer-events: none;
  cursor: default;
}
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-right: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-left: 0;
  padding-right: 0;
}
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.075rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.475rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid #eff2f5;
  border-radius: 0.475rem;
  box-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.02);
}
.card > hr {
  margin-left: 0;
  margin-right: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-right-radius: calc(0.475rem - 1px);
  border-top-left-radius: calc(0.475rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-left-radius: calc(0.475rem - 1px);
  border-bottom-right-radius: calc(0.475rem - 1px);
}
.card > .card-header + .list-group {
  border-top: 0;
}
.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}
.card-title {
  margin-bottom: 0.5rem;
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eff2f5;
}
.card-header:first-child {
  border-radius: calc(0.475rem - 1px) calc(0.475rem - 1px) 0 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}
.badge {
  display: inline-block;
  padding: 0.5em 0.85em;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.475rem;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.475rem;
}
@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.list-group {
  display: flex;
  flex-direction: column;
  padding-right: 0;
  margin-bottom: 0;
  border-radius: 0.475rem;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #181c32;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-right-radius: inherit;
  border-top-left-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}
.list-group-item.disabled,
.list-group-item:disabled {
  color: #7e8299;
  pointer-events: none;
  background-color: #ffffff;
}
.list-group-item.active {
  z-index: 2;
  color: #ffffff;
  background-color: #009ef7;
  border-color: #009ef7;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.show .modal-dialog {
  transform: none;
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.2);
  border-radius: 0.475rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  outline: 0;
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.75rem;
  border-bottom: 1px solid #eff2f5;
  border-top-right-radius: 0.475rem;
  border-top-left-radius: 0.475rem;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1.75rem;
}
.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  border-top: 1px solid #eff2f5;
  border-bottom-left-radius: 0.475rem;
  border-bottom-right-radius: 0.475rem;
}
.modal-footer > * {
  margin: 0.25rem;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-content {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}
.carousel-item {
  position: relative;
  display: none;
  float: right;
  width: 100%;
  margin-left: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}
.carousel-item.active {
  display: block;
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #ffffff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.carousel-control-prev {
  right: 0;
}
.carousel-control-next {
  left: 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-indicators {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-left: 15%;
  margin-bottom: 1rem;
  margin-right: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-left: 3px;
  margin-right: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.opacity-75 {
  opacity: 0.75 !important;
}
.d-flex {
  display: flex !important;
}
.d-none {
  display: none !important;
}
.shadow {
  box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-sm {
  box-shadow: 0 0.1rem 1rem 0.25rem rgba(0, 0, 0, 0.05) !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.border {
  border: 1px solid #eff2f5 !important;
}
.border-top {
  border-top: 1px solid #eff2f5 !important;
}
.border-bottom {
  border-bottom: 1px solid #eff2f5 !important;
}
.w-100 {
  width: 100% !important;
}
.w-30px {
  width: 30px !important;
}
.w-40px {
  width: 40px !important;
}
.h-100 {
  height: 100% !important;
}
.h-20px {
  height: 20px !important;
}
.h-30px {
  height: 30px !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
/*.flex-grow-1 {
  flex-grow: 1 !important;
}*/
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-self-center {
  align-self: center !important;
}
.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.me-3 {
  margin-left: 0.75rem !important;
}
.me-4 {
  margin-left: 1rem !important;
}
/*.me-5 {
  margin-left: 1.25rem !important;
}*/
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 0.75rem !important;
}
.mb-4 {
  margin-bottom: 1rem !important;
}
.mb-5 {
  margin-bottom: 1.25rem !important;
}
.mb-12 {
  margin-bottom: 3rem !important;
}
.ms-2 {
  margin-right: 0.5rem !important;
}
.ms-3 {
  margin-right: 0.75rem !important;
}
.ms-n1 {
  margin-right: -0.25rem !important;
}
.p-0 {
  padding: 0 !important;
}
.p-3 {
  padding: 0.75rem !important;
}
.p-5 {
  padding: 1.25rem !important;
}
.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.pt-5 {
  padding-top: 1.25rem !important;
}
.ps-4 {
  padding-right: 1rem !important;
}
.fs-1 {
  font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-2 {
  font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-5 {
  font-size: 115% !important;
}
.fs-7 {
  font-size: 0.95rem !important;
}
.fs-8 {
  font-size: 0.85rem !important;
}
.fw-bold {
  font-weight: 500 !important;
}
.fw-bolder {
  font-weight: 600 !important;
}
.text-center {
  text-align: center !important;
}
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
  --bs-text-opacity: 1;
  color: #a1a5b7 !important;
}
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-bg-opacity)
  ) !important;
}
.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-success-rgb),
    var(--bs-bg-opacity)
  ) !important;
}
.rounded {
  border-radius: 0.475rem !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-bottom {
  border-bottom-left-radius: 0.475rem !important;
  border-bottom-right-radius: 0.475rem !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}
@media (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
/*  .me-md-10 {
    margin-left: 2.5rem !important;
  }*/
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .w-lg-225px {
    width: 225px !important;
  }
  .w-lg-275px {
    width: 275px !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .me-lg-1 {
    margin-left: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .ps-lg-3 {
    padding-right: 0.75rem !important;
  }
}
@media (min-width: 1200px) {
  .mb-xl-8 {
    margin-bottom: 2rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 1.75rem !important;
  }
  .fs-2 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
}
:root {
  --bs-light-primary: #f1faff;
  --bs-active-primary: #0095e8;
  --bs-light-success: #e8fff3;
  --bs-active-success: #47be7d;
  --bs-light-info: #f8f5ff;
  --bs-active-info: #5014d0;
  --bs-light-warning: #fff8dd;
  --bs-active-warning: #f1bc00;
  --bs-light-danger: #fff5f8;
  --bs-active-danger: #d9214e;
  --bs-light-dark: #eff2f5;
  --bs-active-dark: #131628;
  --bs-gray-100: #f5f8fa;
  --bs-gray-200: #eff2f5;
  --bs-gray-300: #e4e6ef;
  --bs-gray-400: #b5b5c3;
  --bs-gray-500: #a1a5b7;
  --bs-gray-600: #7e8299;
  --bs-gray-700: #5e6278;
  --bs-gray-800: #3f4254;
  --bs-gray-900: #181c32;
  --bs-xs: 0;
  --bs-sm: 576px;
  --bs-md: 768px;
  --bs-lg: 992px;
  --bs-xl: 1200px;
  --bs-xxl: 1400px;
}
.bg-primary {
  --bg-color: 0, 158, 247;
}
.bg-success {
  --bg-color: 80, 205, 137;
}
.rounded-circle {
  border-radius: 50% !important;
}
.flex-root {
  flex: 1;
}
.flex-column-fluid {
  flex: 1 0 auto;
}
.flex-row-fluid {
  flex: 1 auto;
  min-width: 0;
}
.flex-stack {
  justify-content: space-between;
  align-items: center;
}
.text-white {
  color: #ffffff !important;
}
.text-hover-primary {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-primary i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-primary:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009ef7 !important;
}
.text-hover-primary:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009ef7 !important;
}
.text-muted {
  color: #a1a5b7 !important;
}
.text-gray-600 {
  color: #7e8299 !important;
}
i {
  line-height: 1;
  font-size: 1rem;
  color: #a1a5b7;
}
a {
  transition: color 0.2s ease, background-color 0.2s ease;
}
a:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.animation {
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes animationSlideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes animationSlideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes animationFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes animationFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes animationBlink {
  to {
    visibility: hidden;
  }
}
.separator {
  display: block;
  height: 0;
  border-bottom: 1px solid #eff2f5;
}
.menu {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.menu-sub {
  display: none;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-direction: column;
}
.menu-item {
  display: block;
  padding: 0;
}
.menu-item .menu-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  flex: 0 0 100%;
  padding: 0.65rem 1rem;
  transition: none;
  outline: none !important;
}
.menu-item .menu-link .menu-title {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.menu-item .menu-content {
  padding: 0.65rem 1rem;
}
.menu-column {
  flex-direction: column;
  width: 100%;
}
.menu-rounded-0 .menu-link {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .menu-sub-lg-dropdown {
    display: none;
    border-radius: 0.475rem;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.1);
    z-index: 105;
  }
  .menu-sub-lg-dropdown.menu.show {
    display: flex;
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1,
      menu-sub-dropdown-animation-move-up 0.3s ease 1;
  }
  .menu-lg-row {
    flex-direction: row;
  }
  .menu-lg-row > .menu-item {
    display: flex;
    align-items: center;
  }
  .menu-lg-rounded .menu-link {
    border-radius: 0.475rem;
  }
}
@media (max-width: 991.98px) {
  .menu-sub-lg-down-accordion {
    display: none;
  }
  .show:not(.menu-dropdown) > .menu-sub-lg-down-accordion,
  .menu-sub-lg-down-accordion.show {
    display: flex;
  }
}
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-link {
  padding-right: calc(1rem + 1rem);
}
.menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-content,
.menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-link {
  padding-right: calc(2rem + 1rem);
}
.menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-content,
.menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-link {
  padding-right: calc(3rem + 1rem);
}
.menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-content,
.menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-sub:not([data-popper-placement])
  > .menu-item
  > .menu-link {
  padding-right: calc(4rem + 1rem);
}
@keyframes menu-sub-dropdown-animation-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes menu-sub-dropdown-animation-move-up {
  from {
    margin-top: 0.75rem;
  }
  to {
    margin-top: 0;
  }
}
@keyframes menu-sub-dropdown-animation-move-down {
  from {
    margin-bottom: 0.75rem;
  }
  to {
    margin-bottom: 0;
  }
}
.menu-title-gray-700 .menu-item .menu-link {
  color: #5e6278;
}
.menu-title-gray-700 .menu-item .menu-link .menu-title {
  color: #5e6278;
}
.menu-state-bg .menu-item.hover > .menu-link:not(.disabled):not(.active),
.menu-state-bg .menu-item .menu-link:hover:not(.disabled):not(.active) {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: rgba(245, 248, 250, 0.8);
}
.menu-state-bg .menu-item.here > .menu-link,
.menu-state-bg .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: rgba(245, 248, 250, 0.8);
}
.menu-state-bg .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: rgba(245, 248, 250, 0.8);
}
.menu-state-icon-primary
  .menu-item.hover
  > .menu-link:not(.disabled):not(.active),
.menu-state-icon-primary
  .menu-item
  .menu-link:hover:not(.disabled):not(.active) {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-icon-primary .menu-item.here > .menu-link,
.menu-state-icon-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-icon-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-bullet-primary
  .menu-item.hover
  > .menu-link:not(.disabled):not(.active),
.menu-state-bullet-primary
  .menu-item
  .menu-link:hover:not(.disabled):not(.active) {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-bullet-primary .menu-item.here > .menu-link,
.menu-state-bullet-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-bullet-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.anchor {
  display: flex;
  align-items: center;
}
.anchor a {
  position: relative;
  display: none;
  align-items: center;
  justify-content: flex-start;
  height: 1em;
  width: 1.25em;
  margin-right: -1.25em;
  font-weight: 500;
  font-size: 0.8em;
  color: #a1a5b7;
  transition: all 0.2s ease;
}
.anchor a:before {
  content: "#";
}
.anchor:hover a {
  display: flex;
}
.anchor:hover a:hover {
  color: #009ef7;
  transition: all 0.2s ease;
}
.card {
  border: 0;
  box-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.02);
}
.card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  min-height: 70px;
  padding: 0 2.25rem;
  background-color: transparent;
}
.card .card-header .card-title {
  display: flex;
  align-items: center;
  margin: 0.5rem;
  margin-right: 0;
}
.card .card-header .card-title.flex-column {
  align-items: flex-start;
  justify-content: center;
}
.card .card-header .card-title .card-icon {
  margin-left: 0.75rem;
  line-height: 0;
}
.card .card-header .card-title .card-icon i {
  font-size: 1.25rem;
  color: #7e8299;
  line-height: 0;
}
.card .card-header .card-title .card-icon i:after,
.card .card-header .card-title .card-icon i:before {
  line-height: 0;
}
.card .card-header .card-title,
.card .card-header .card-title .card-label {
  font-weight: 500;
  font-size: 1.275rem;
  color: #181c32;
}
.card .card-header .card-title .card-label {
  margin: 0 0 0 0.75rem;
  flex-wrap: wrap;
}
.card .card-header .card-title h1,
.card .card-header .card-title .h1,
.card .card-header .card-title h2,
.card .card-header .card-title .h2,
.card .card-header .card-title h3,
.card .card-header .card-title .h3,
.card .card-header .card-title h4,
.card .card-header .card-title .h4 {
  margin-bottom: 0;
}
.card .card-body {
  padding: 2rem 2.25rem;
}
@media (min-width: 1400px) {
  .card.card-xxl-stretch {
    height: calc(100% - var(--bs-gutter-y));
  }
}
@media (max-width: 767.98px) {
  .card > .card-header:not(.flex-nowrap) {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  background-color: transparent;
  padding: 0;
  margin: 0;
}
.btn {
  outline: none !important;
}
.btn:not(.btn-shadow):not(.shadow):not(.shadow-sm):not(.shadow-lg) {
  box-shadow: none !important;
}
.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(
    .border-active
  ):not(.btn-flush):not(.btn-icon) {
  border: 0;
  padding: calc(0.75rem + 1px) calc(1.5rem + 1px);
}
.btn i {
  display: inline-flex;
  font-size: 1rem;
  padding-left: 0.35rem;
  vertical-align: middle;
  line-height: 0;
}
.btn.btn-primary {
  color: #ffffff;
  border-color: #009ef7;
  background-color: #009ef7;
}
.btn.btn-primary i {
  color: #ffffff;
}
.btn.btn-primary:focus:not(.btn-active),
.btn.btn-primary:hover:not(.btn-active),
.btn.btn-primary:active:not(.btn-active),
.btn.btn-primary.active,
.btn.btn-primary.show,
.show > .btn.btn-primary {
  color: #ffffff;
  border-color: #0095e8;
  background-color: #0095e8 !important;
}
.btn.btn-primary:focus:not(.btn-active) i,
.btn.btn-primary:hover:not(.btn-active) i,
.btn.btn-primary:active:not(.btn-active) i,
.btn.btn-primary.active i,
.btn.btn-primary.show i,
.show > .btn.btn-primary i {
  color: #ffffff;
}
.btn.btn-secondary {
  color: #3f4254;
  border-color: #e4e6ef;
  background-color: #e4e6ef;
}
.btn.btn-secondary i {
  color: #3f4254;
}
.btn.btn-secondary:focus:not(.btn-active),
.btn.btn-secondary:hover:not(.btn-active),
.btn.btn-secondary:active:not(.btn-active),
.btn.btn-secondary.active,
.btn.btn-secondary.show,
.show > .btn.btn-secondary {
  color: #3f4254;
  border-color: #b5b5c3;
  background-color: #b5b5c3 !important;
}
.btn.btn-secondary:focus:not(.btn-active) i,
.btn.btn-secondary:hover:not(.btn-active) i,
.btn.btn-secondary:active:not(.btn-active) i,
.btn.btn-secondary.active i,
.btn.btn-secondary.show i,
.show > .btn.btn-secondary i {
  color: #3f4254;
}
code:not([class*="language-"]) {
  font-weight: 400;
  color: #b93993;
  line-height: inherit;
  font-size: inherit;
  background-color: #f1f3f8;
  padding: 0.1rem 0.4rem;
  margin: 0 0.5rem;
  box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.08);
  border-radius: 0.3rem;
}
.form-control {
  box-shadow: none !important;
}
.form-control[readonly] {
  background-color: #ffffff;
}
.form-check .form-check-label {
  cursor: pointer;
}
.form-check .form-check-input {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-check.form-check-custom {
  display: flex;
  align-items: center;
  padding-right: 0;
  margin: 0;
}
.form-check.form-check-custom .form-check-input {
  margin: 0;
  float: none;
  flex-shrink: 0;
}
.form-check.form-check-custom .form-check-label {
  margin-right: 0.55rem;
}
.form-check:not(.form-switch) .form-check-input[type="checkbox"] {
  background-size: 60% 60%;
}
.form-check.form-check-solid .form-check-input {
  border: 0;
  background-color: #eff2f5;
}
.form-check.form-check-solid .form-check-input:active,
.form-check.form-check-solid .form-check-input:focus {
  filter: none;
  background-color: #eff2f5;
}
.form-check.form-check-solid .form-check-input:checked {
  background-color: #009ef7;
}
.form-switch.form-check-solid .form-check-input {
  height: 2.25rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
  border-radius: 3.25rem;
}
.form-switch.form-check-solid .form-check-input:checked {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FFFFFF'/%3e%3c/svg%3e");
}
.required:after {
  content: "*";
  position: relative;
  font-size: inherit;
  color: #f1416c;
  padding-right: 0.25rem;
  font-weight: bold;
}
.modal .modal-header {
  align-items: center;
  justify-content: space-between;
}
.modal .modal-header h1,
.modal .modal-header .h1,
.modal .modal-header h2,
.modal .modal-header .h2,
.modal .modal-header h3,
.modal .modal-header .h3,
.modal .modal-header h4,
.modal .modal-header .h4 {
  margin-bottom: 0;
}
.modal .modal-dialog {
  outline: none !important;
}
.table {
  width: 100%;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: inherit;
}
.table tr,
.table th,
.table td {
  border-color: inherit;
  border-width: inherit;
  border-style: inherit;
  text-transform: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  height: inherit;
  min-height: inherit;
}
.table tr:first-child,
.table th:first-child,
.table td:first-child {
  padding-right: 0;
}
.table tr:last-child,
.table th:last-child,
.table td:last-child {
  padding-left: 0;
}
.table tbody tr:last-child {
  border-bottom: 0 !important;
}
.table tbody tr:last-child th,
.table tbody tr:last-child td {
  border-bottom: 0 !important;
}
.symbol {
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  border-radius: 0.475rem;
}
.symbol > img {
  width: 100%;
  flex-shrink: 0;
  display: inline-block;
  border-radius: 0.475rem;
}
.symbol.symbol-circle,
.symbol.symbol-circle > img {
  border-radius: 50%;
}
.symbol > img {
  width: 50px;
  height: 50px;
}
.symbol.symbol-20px > img {
  width: 20px;
  height: 20px;
}
.symbol.symbol-50px > img {
  width: 50px;
  height: 50px;
}
.symbol.symbol-70px > img {
  width: 70px;
  height: 70px;
}
.pulse {
  position: relative;
}
.pulse.pulse-success .pulse-ring {
  border-color: #50cd89;
}
.pulse-ring {
  display: block;
  border-radius: 40px;
  height: 40px;
  width: 40px;
  position: absolute;
  animation: animation-pulse 3.5s ease-out;
  animation-iteration-count: infinite;
  opacity: 0;
  border-width: 3px;
  border-style: solid;
  border-color: #a1a5b7;
}
@keyframes animation-pulse {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  65% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes animation-scrolltop {
  from {
    margin-bottom: -15px;
  }
  to {
    margin-bottom: 0;
  }
}
[data-kt-drawer="true"] {
  display: none;
}
@keyframes animation-drawer-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  body[data-kt-drawer="on"] {
    overflow: hidden;
  }
}
.badge-light-success {
  color: #50cd89;
  background-color: #e8fff3;
}
.rotate {
  display: inline-flex;
  align-items: center;
}
@media (min-width: 992px) {
  span,
  ol,
  ul,
  pre,
  div {
    scrollbar-width: thin;
    scrollbar-color: #eff2f5 transparent;
  }
  span::-webkit-scrollbar,
  ol::-webkit-scrollbar,
  ul::-webkit-scrollbar,
  pre::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 0.4rem;
    height: 0.4rem;
  }
  span::-webkit-scrollbar-thumb,
  ol::-webkit-scrollbar-thumb,
  ul::-webkit-scrollbar-thumb,
  pre::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    background-color: #eff2f5;
  }
  span:hover,
  ol:hover,
  ul:hover,
  pre:hover,
  div:hover {
    scrollbar-color: #e9edf1 transparent;
  }
  span:hover::-webkit-scrollbar-thumb,
  ol:hover::-webkit-scrollbar-thumb,
  ul:hover::-webkit-scrollbar-thumb,
  pre:hover::-webkit-scrollbar-thumb,
  div:hover::-webkit-scrollbar-thumb {
    background-color: #e9edf1;
  }
}
.scroll {
  overflow: scroll;
  position: relative;
}
@media (max-width: 991.98px) {
  .scroll {
    overflow: auto;
  }
}
@media (min-width: 992px) {
}
@media (min-width: 992px) {
}
@media (min-width: 992px) {
}
.rating {
  display: flex;
  align-items: center;
}
html {
  font-family: sans-serif;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html,
body {
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-weight: 400;
  font-family: Poppins, Helvetica, "sans-serif";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 991.98px) {
  html,
  body {
    font-size: 13px !important;
  }
}
@media (max-width: 767.98px) {
  html,
  body {
    font-size: 12px !important;
  }
}
html a:hover,
html a:active,
html a:focus,
body a:hover,
body a:active,
body a:focus {
  text-decoration: none !important;
}
body {
  display: flex;
  flex-direction: column;
  color: #181c32;
}
body {
  background-color: #f5f8fa;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 350px;
}
@media (min-width: 992px) {
  .container,
  .container-xxl,
  .container-fluid {
    padding: 0 30px;
  }
  .wrapper {
    transition: padding-right ease, margin-left ease;
  }
}
@media (max-width: 991.98px) {
  body {
    background-size: 100% 200px;
  }
  .container,
  .container-xxl,
  .container-fluid {
    max-width: none;
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    z-index: 2;
    height: 80px;
    transition: right ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .header-logo {
    padding: 0;
    display: flex;
    align-items: center;
  }
  .header .header-menu {
    display: flex;
  }
  body:not([data-kt-sticky-header="on"])
    .header
    .header-menu
    .menu
    > .menu-item
    > .menu-link {
    color: #fff;
  }
  body:not([data-kt-sticky-header="on"])
    .header
    .header-menu
    .menu
    > .menu-item
    > .menu-link
    .menu-title {
    color: #fff;
  }
  body:not([data-kt-sticky-header="on"])
    .header
    .header-menu
    .menu
    > .menu-item.hover
    > .menu-link:not(.disabled):not(.active),
  body:not([data-kt-sticky-header="on"])
    .header
    .header-menu
    .menu
    > .menu-item
    > .menu-link:hover:not(.disabled):not(.active) {
    transition: color 0.2s ease, background-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }
  body:not([data-kt-sticky-header="on"])
    .header
    .header-menu
    .menu
    > .menu-item.hover
    > .menu-link:not(.disabled):not(.active)
    .menu-title,
  body:not([data-kt-sticky-header="on"])
    .header
    .header-menu
    .menu
    > .menu-item
    > .menu-link:hover:not(.disabled):not(.active)
    .menu-title {
    color: #ffffff;
  }
  body:not([data-kt-sticky-header="on"])
    .header
    .header-menu
    .menu
    > .menu-item.here
    > .menu-link,
  body:not([data-kt-sticky-header="on"])
    .header
    .header-menu
    .menu
    > .menu-item.show
    > .menu-link {
    transition: color 0.2s ease, background-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }
  body:not([data-kt-sticky-header="on"])
    .header
    .header-menu
    .menu
    > .menu-item.here
    > .menu-link
    .menu-title,
  body:not([data-kt-sticky-header="on"])
    .header
    .header-menu
    .menu
    > .menu-item.show
    > .menu-link
    .menu-title {
    color: #ffffff;
  }
  body:not([data-kt-sticky-header="on"])
    .header
    .header-menu
    .menu
    > .menu-item
    > .menu-link.active {
    transition: color 0.2s ease, background-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }
  body:not([data-kt-sticky-header="on"])
    .header
    .header-menu
    .menu
    > .menu-item
    > .menu-link.active
    .menu-title {
    color: #ffffff;
  }
}
@media (max-width: 991.98px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 65px;
    position: relative;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .header-menu {
    display: none;
    z-index: 96;
  }
}
.toolbar {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .content {
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  .content {
    padding: 15px 0;
  }
}
@media (min-width: 992px) {
  .container,
  .container-fluid,
  .container-xxl {
    padding: 0 30px;
  }
}
@media (max-width: 991.98px) {
  .container,
  .container-fluid,
  .container-xxl {
    max-width: none;
    padding: 0 15px;
  }
}











/* ==================================================
   BASE
================================================== */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  direction: rtl; /* ברירת מחדל */
}

body.Eng {
  direction: ltr;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
}

/* ==================================================
   MAIN MENU CONTAINER
================================================== */

.main1-menu {
  position: relative;
  z-index: 1000;
  width: 100%;  
}

/* ==================================================
   HAMBURGER
================================================== */

.menu1-hamburger {
  display: none;
  font-size: 26px;
  padding: 10px 15px;
  color: #000000;
  cursor: pointer;
}

/* ==================================================
   ROOT MENU (TOP LEVEL)
================================================== */

.menu1-root {
  display: flex;
  flex-wrap: wrap; /* מאפשר כמה שורות */
  align-items: center;
   padding: 0 5px; /* מאפשר מקום קטן מצדדים */
}

/* ==================================================
   TOP ITEM
================================================== */

.menu1-item {
  position: relative;
}

.menu1-title {
	position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
   padding: 6px 12px;   
  color: #000000; /* תמיד שחור */
  white-space: nowrap;
  background-color: #ffffff; /* תמיד לבן */
  position: relative; /* כדי שהoutline יישאר מעל */
  z-index: 10; /* מעל אלמנטים אחרים */
  line-height: 1.2;
}

@media (max-width: 991.98px)
{
.menu1-title {
   padding: 4px 14px;   
    line-height: 1.2;
}
}
/* מוסיף את זה כדי שהפריט שבפוקוס תמיד יהיה מעל השאר */
.menu1-item:focus-within,
.menu1-item.active {
  z-index: 1001; /* ערך גבוה יותר מה-z-index של ה-container */
}



/* ==================================================
   ARROW
================================================== */

.arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
  margin-right: auto; /* RTL ברירת מחדל */
}

body.Eng .arrow {
  margin-left: auto; /* LTR */
  margin-right: 0;
}

/* Rotate when open */
.menu1-item.active .arrow {
  transform: rotate(180deg);
}

/* ==================================================
   SUB MENU
================================================== */

.submenu1 {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
display: none;
  background-color: #ffffff;
  color: #000000;
  min-width: 200px;

  overflow-y: auto;
  overflow-x: hidden;

  max-height: 0;
  opacity: 0;

  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    box-shadow 0.35s ease;

  z-index: 2000;
}
.submenu1 button {
  display: block;
  width: 100%;
  text-align: right;
  padding: 12px 16px;   /* הרווח הפנימי */
  background: #ffffff;
  border: none;
  cursor: pointer;
}
.submenu1 li {
  border-bottom: 1px solid #e0e0e0;
}

.submenu1 li:last-child {
  border-bottom: none;
}
/* LTR */
body.Eng .submenu1 {
  left: 0;
  right: auto;
}

/* Open */
.menu1-item.active > .submenu1 {
  max-height: 80vh;   /* במקום 500px */
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: block;
}

.submenu1 li {
  width: 100%;
}

.submenu1 button {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* Hover / Focus */
.menu1-title:focus-visible,
.submenu1 button:focus-visible,
.menu1-hamburger:focus-visible,
.menu1-title:hover,
.menu1-title:focus,
.submenu1 button:hover,
.submenu1 button:focus {
  outline: 3px dashed #0051C2;
  outline-offset: -3px;
  background-color: #f7fbff;
}
.justify-content-between
{
	padding-left:0.5rem;
	padding-right:0.5rem;	
}
/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {

  .menu1-hamburger {
    display: block;
  }

  .menu1-root {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    background: #ffffff; /* לבן */
    width: 260px;
	align-items: stretch; /* גורם לפריטים למלא את כל הרוחב */
  }

  /* RTL */
  .menu1-root {
    right: 0;
    left: auto;
  }

  /* LTR */
  body.Eng .menu1-root {
    left: 0;
    right: auto;
  }

  .main1-menu.open .menu1-root {
    display: flex;
  }

  /* Submenu mobile */
  .submenu1 {
    position: relative;
    min-width: 100%;
  }

  /* Title mobile */
  .menu1-title {
    width: 100%;
    justify-content: flex-start; /* מצמיד את התוכן להתחלה (ימין ב-RTL) */
	text-align: right; /* לביטחון */
  }
  
  body.Eng .menu1-title {
    text-align: left;
    justify-content: flex-start; /* ב-LTR ההתחלה היא שמאל */
  }

}


.AddPadding {
  padding-left: 5px;
  padding-right: 5px;
}
/* מצב חשוך – מופעל כשעל ה-body יש drkmode */
body.drkmode {
    background-color: #121212;
    color: #e0e0e0;
}

/* כותרות */
body.drkmode h1,
body.drkmode h2,
body.drkmode h3,
body.drkmode h4,
body.drkmode h5,
body.drkmode h6 {
    color: #ffffff;
}

/* קישורים */
body.drkmode a {
    color: #80cbc4;
}
body.drkmode a:hover {
    color: #4db6ac;
}

/* כפתורים */
body.drkmode .btn,
body.drkmode button {
    background-color: #1f1f1f;
    color: #e0e0e0;
    border: 1px solid #333;
}
body.drkmode .btn:hover,
body.drkmode button:hover {
    background-color: #333;
}

/* כרטיסים / קופסאות */
body.drkmode .card,
body.drkmode .loginBoxCenter,
body.drkmode .toolbar,
body.drkmode .footer {
    background-color: #1e1e1e;
    color: #e0e0e0;
    border-color: #333;
}

/* טפסים ושדות קלט */
body.drkmode input,
body.drkmode select,
body.drkmode textarea {
    background-color: #2c2c2c;
    color: #e0e0e0;
    border: 1px solid #555;
}

/* תפריטים */
body.drkmode .menu-sub,
body.drkmode .header-menu-left,
body.drkmode .menu-item {
    background-color: #1b1b1b;
    color: #e0e0e0;
}

/* טפסים מיוחדים */
body.drkmode .modal-content {
    background-color: #1e1e1e;
    color: #e0e0e0;
}

/* Breadcrumb */
body.drkmode .breadcrumb .bcc {
    color: #b0b0b0 !important;
}

/* אייקונים – אם יש צורך */
body.drkmode .fa,
body.drkmode .fab {
    color: #e0e0e0;
}

body.drkmode .area-two {
    
    background: #1e1e1e;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: white; /* חשוב כדי שלא יהיה שקוף */
}

.Eng .submenu1 button{text-align:left}

.breadcrumb li + li::before {
    content: "" !important;;
}