@charset "UTF-8";

/* Root variables */
:root {
  --bs-blue: #0d6efd;
  --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-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-font-sans-serif: 'Rubik', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --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));
}

/* Base elements */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Rubik', sans-serif;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Container */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;

}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}

/* Grid system */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

/* Responsive columns */
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Table */
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}

.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Forms */
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-floating {
  position: relative;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}

.form-floating > label {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 100% 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-right: 1.5em;
  margin-bottom: 0.125rem;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
}

.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}

.form-check-input[type=radio] {
  border-radius: 50%;
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}


/* Navbar */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-left: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-right: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Additional navbar classes */
.navbar-toggleable-sm .navbar-toggler {
  display: none;
}

@media (max-width: 575.98px) {
  .navbar-toggleable-sm .navbar-toggler {
    display: block;
  }
  
  .navbar-toggleable-sm .navbar-collapse {
    display: none !important;
  }
  
  .navbar-toggleable-sm .navbar-collapse.show {
    display: block !important;
  }
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.start-navs {
  display: flex;
  align-items: center;
}

/* Nav */
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-right: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.nav-link:hover, .nav-link:focus {
  color: #0a58ca;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-item {
  margin-bottom: 0;
}

/* Utilities */
.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-sm-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
  
  .d-md-none {
    display: none !important;
  }
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.w-100 {
  width: 100% !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !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: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-auto {
  margin-right: auto !important;
}

.me-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: left !important;
}

.text-start {
  text-align: right !important;
}

.text-primary {
  color: #0d6efd !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-dark {
  color: #212529 !important;
}

.bg-primary {
  background-color: #0d6efd !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

/* Waves effect - custom */
.waves-effect {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.waves-themed {
  background-color: transparent;
}



/* Buttons */
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    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;
}

    .btn:hover {
        color: #212529;
    }

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

    .btn-secondary:hover {
        color: #fff;
        background-color: #5c636a;
        border-color: #565e64;
    }

.btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

    .btn-danger:hover {
        color: #fff;
        background-color: #bb2d3b;
        border-color: #b02a37;
    }

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

.btn-sm, .btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}

.btn-lg, .btn-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-link {
    font-weight: 400;
    color: #0d6efd;
    text-decoration: underline;
}

    .btn-link:hover {
        color: #0a58ca;
    }

.btn-group {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

    .btn-group > .btn {
        position: relative;
        flex: 1 1 auto;
    }

.btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
:root {
    --color-bar-5: hsl(147deg 100% 35%);
    --color-bar-4: hsl(89deg 100% 50%);
    --color-bar-3: hsl(45deg 100% 50%);
    --color-bar-2: hsl(24deg 100% 50%);
    --color-bar-1: hsl(0deg 100% 50%);
    --box-border: 1px solid rgba(211, 211, 211, 0.3);
    --box-3d: 0.2em;
    --depth-pd: 2rem;
    --color-back: #FCFCFF;
    --color-primary: #EF5DA8;
    --color-head: #8081e5;
    --color-primary-light: #f8cce5;
    --color-primary-dark: #d13284;
    --color-accent: #8081e5;
    --color-accent-light: #f7f7fe;
    --color-link: #EF5DA8;
    --color-border: #D3D5FF;
    --color-scrollbar-thumb: rgba(239, 93, 168, 0.25);
    --color-scrollbar-track: #E2E2E2;
    --color-metro: #eaeaff;
    --metro-width: 4px;
    --color-warning: #ffc107;
}

html, body {
    background: var(--color-back);
    font-family: 'Rubik', sans-serif;
    margin:0;
    padding:0;
}

    html .readable_font {
        font-family: 'Rubik', sans-serif !important;
    }

    main{
        width:100%;
    }

header {
    margin-bottom: 1rem;
    min-height: 3.6rem;
}

    .container-fluid > nav,
    header > nav {
        /*background: var(--color-back);*/
        padding: .5rem 1rem;
    }



.container-fluid > nav {
    position: relative;
}

.container-fluid .navbar-nav {
    gap: 5px;
    margin-top:0;
}

/*#region z-index */
.split-view .tables thead,
.publishVariant.btn-success:hover:after,
.clearSrc {
    z-index: 1;
}

.loader-overlay {
    z-index:100;
}
/*#endregion */

/*#region core */
.fl-c, .n-1 {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.fl-c {
    gap: .5rem;
}

.n-1 > :first-child {
    flex: 1;
}

.fl-c > *,
.n-1 > * {
    margin: 0;
}
/*#endregion */

/*#region accessibility */
body .btn_accessibility {
    width: 45px;
    margin-left: -10px;
    top: 20vh;
    box-shadow: 0px 0px 5px 0px #0000004f;
}

body .btn_accessibility_action {
    box-shadow: 0px 0px 5px 0px #0000004f;
}
body .accessibility_component{
    z-index:1 !important;
}
.btn_accessibility span.accessibility_component {
    display: none;
}
/*#endregion */

/*#region footer */
.footer {
    background: var(--color-head);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem;
    z-index: 0;
    color: white;
    flex-wrap: wrap;
    position: relative;
}

.footer__container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 3em;
}

.footer__block {
    display: flex;
    flex-direction: column;
}

    .footer__block > * {
        font-style: normal;
        font-weight: 400;
        white-space: normal;
        min-width: 10rem;
        color: #FFFFFF;
        text-decoration: none;
        letter-spacing: 0.5px;
        margin-bottom: .5rem;
        transition: color 0.2s ease-in-out;
    }

    .footer__block > a :hover {
        color: #000000;
    }

.footer__block_right {
    position: relative;
     width: 171px; 
}

.footer__block_center {
    border-width: 0 1px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer__block_center a {
    display: flex;
    align-items: center;
}

.social-links{
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a{
    color: white;
}

.social-links a i.fab {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.social-links a:hover i.fa-facebook-f {
    color: #1877f2 !important;
    transform: scale(1.2);
}

.social-links a:hover i.fa-instagram {
    color: #e4405f;
    transform: scale(1.2);
}

.footer__block_center a:hover i.fa-tiktok {
    color: #00f2ea;
    transform: scale(1.2);
}
.footer__block_center a i.fab {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.footer__block_center a:hover i.fab {
    transform: scale(1.2);
}

.footer__block_left {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 1;
    padding-top: 7px;
    z-index: 1;
}

.footer #disclaimer{
    font-size:12px;
    text-align:right;
    width:100%;
    display:flex;
    gap: 4px;
    align-items: baseline;
}

.ai {
    font-size: 10px;
    background: var(--color-accent);
    color: white !important;
    display:inline-flex;
    min-width: 1.5em;
    height: 1.3em;
    text-decoration: none;
    line-height: 1;
    font-family: monospace;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    cursor:pointer;
}

    .ai.light {
        background: #ededff;
        color: var(--color-accent) !important;
    }

    .footer .ai {
        color: var(--color-accent) !important;
        background: white;
    }

.what-think form {
    background: white;
    padding: 1rem;
    margin-bottom: -5rem;
    border-radius: 5px;
    box-shadow: -3px 0rem 8px rgba(0, 0, 0, .3);
    width: 20rem;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.what-think h3 {
    font-size: 1.3rem;
    text-align: center;
}

.what-think .custom-radio {
    display: flex;
    align-items: center;
    line-height: 1.7;
}

.what-think.sent [name],
.what-think.sent .btn,
.what-think.what .qs,
.what-think:not(.what) .what {
    display: none;
}

.what-think.what {
    text-align: center;
    background: #ececff;
}

.what-think.what textarea {
    margin: 1rem 0
}

.what-think .btn {
    padding: 5px;
    width: 5rem;
}

.like-switch {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: center;
    margin-top: 1rem;
}

.like-switch > div {
    border: 1px solid #d9d9ed;
    width: 8rem;
    display: inline-flex;
    flex-direction: column;
    padding: .5rem;
    border-radius: 5px;
    align-items: center;
    text-align: center;
    gap: .5rem;
    cursor: pointer;
}

.like-switch > div i {
    font-size: 40px;
    color: var(--color-primary);
}

.like-switch > div i.fa-thumbs-up {
    transform: scaleX(-1);
}

.like-switch > div label {
    font-size: 0.9rem;
    line-height: 1.1;
}
/*#endregion */

[lang="he"] {
    direction: rtl;
}

body > div {
    display: flex;
    width: calc(100% - 0px);
}

semi {
    font-weight: 500;
}

amain {
    flex: 1;
    position: relative;
    background-color: var(--color-bg-secondary);
}

amain > .container-fluid {
    min-height: 97vh;
    max-width: 100vw;
}

.container-fluid:not(.thin) .breadcrumb,
.wide-thin,
amain > .container-fluid.thin {
    max-width: 1280px;
    margin: 0 auto;
    padding: 7px 1rem 0;
    margin-block: 0;
    padding-inline-start: 0;
}

amain > .container-fluid + footer{
    margin-top: 4rem;
}

.container-fluid.thin .breadcrumb {
    padding: 0;
    margin: 0 0 1rem;
}

.container-fluid.thin > nav {
    padding: 0;
}

.breadcrumb{

    flex-wrap:nowrap;
    align-items: center;
    padding-bottom: 0.5rem !important;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
    padding-right: 0.5rem;
}

    .breadcrumb-item + .breadcrumb-item::before {
        float: right;
        padding-left: 0.5rem;
        color: #6c757d;
        content: var(--bs-breadcrumb-divider, "/");
    }

.breadcrumb-item.active {
    color: #6c757d;
}



.breadcrumb-item {
    font-size: 0.9em;
    line-height: initial !important;
    white-space: nowrap;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #cfcfcf;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: gray;
}

.spin-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: white; */
    width: 100%;
    height: 100%;
    max-height: 100vh;
}

.loader-overlay {
    position: absolute;
    background: black;
    opacity: 0.3;
    inset: 0;
}
/*#region H titles */


h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 1.5rem;
    margin: 0;
}

h2 {
    font-size: 1.5rem;
}


h1, .h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 2.5rem;
    }
}

h2, .h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    h2, .h2 {
        font-size: 2rem;
    }
}

h3, .h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    h3, .h3 {
        font-size: 1.75rem;
    }
}

h4, .h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    h4, .h4 {
        font-size: 1.5rem;
    }
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}


/*#endregion */

.help-text {
    color: gray;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    margin: 0;
    position:relative;
}

a.navbar-brand img {
    height: 1.4em;
    width: auto;
    font-size: 17px;
    margin: 0;
    filter: brightness(1000%);
}

.navbar-brand::after {
    content: "BETA";
    font-size: 10px;
    position: absolute;
    right: -11px;
    font-weight: 300;
    top: 7px;
    padding: 0px 3px;
    line-height: 1;
    color: white;
}

.navbar-light .navbar-toggler {
    border: none !important;
    color: black;
    padding: 0 .5rem;
    box-shadow: none;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.linkhover:hover,
.nav-link:hover,
.nav-link,
.link,
a {
    color: var(--color-link);
    cursor: pointer;
}

.linkhover {
    color: initial;
}

[read-more] {
    color: var(--color-link) !important;
    text-decoration: none;
    cursor: pointer;
}

ul, li {
    list-style: none;
    padding: 0;
}

ol {
    padding-right: 0;
}

.hid {
    display: none;
}

.abs-end {
    position: absolute;
    top: 0;
    left: 0;
}

.circle {
    background: #8081E5;
    width: 1.6em;
    height: 1.6em;
    line-height: 0.6;
    color: white;
    text-align: center;
    font-size: 9px;
    padding: 0;
    border-radius: 100%;
}

.fa.circle {
    line-height: 1.6;
}

.circle.fa-check {
    padding-top: 1px;
}

.green {
    color: green;
}


.orange {
    color: orange;
}

.back-green,
.circle.green {
    background: green;
    color: white;
}
.back-orange {
    background: orange;
    color: white;
}
.back-orange,
.back-green {
    padding: 1px 3px;
    font-size: 14px;
}

    .error,
    .red {
        color: #dc3545;
    }

.gray{
    color: gray;
}

.circle.red {
    background: #dc3545;
    color:white;
    padding-top: .5px;
}

body .badge.bg-danger {
    background-color: var(--color-primary) !important;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.middle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}



b,
strong {
    font-weight: bold;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

html {
    position: relative;
    min-height: 100%;
}

body > .container-fluid {
    padding: 1rem 2rem;
}

[dir=rtl] input[type=number] {
    direction: rtl;
}

[dir=rtl] .editor {
    direction: rtl !important;
    text-align: right !important;
}

.custom-checkbox label {
    margin: 0 .5rem;
}

pre {
    direction: inherit;
    margin: unset;
    line-break: anywhere;
    white-space: pre-line;
    font-family: inherit;
    font-size: initial;
    unicode-bidi: unset;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.expandable{
    position:relative;
}

.altr-name {
    display: inline-flex;
    gap: 0 5px;
    flex-wrap: wrap;
}

.altr-variant {
    font-weight: normal;
}

.alter-sku {
    color: gray;
    text-transform:uppercase;
    font-size:0.9em;
    flex:1 1 100%;
}

/* Table sticky styles */
.table-wrapper.table-sticky table thead th:first-child {
    right: 0;
    z-index: 6;
}

.table-sticky.first-col-sticky table tbody td:nth-child(2) {
    right: 0;
    top: unset;
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
}

.table-sticky.first-col-sticky table th:first-child,
.table-sticky.first-col-sticky table td:first-child {
    right: 0;
    position: -webkit-sticky;
    position: sticky;
    border-left: 1px solid #d9d9d9;
}

.table-sticky.first-col-sticky table td:first-child {
    z-index: 3 !important;
    background-color: white;
}

.table-sticky.first-col-sticky table th:first-child {
    z-index: 4 !important;
}

.table-sticky {
    max-height: 60vh;
    overflow: auto;
}

.table-sticky table {
    position: relative;
}

.table-sticky table thead {
    position: -webkit-sticky;
    position: sticky;
    top: -2px;
    z-index: 2;
    background-color: var(--color-back);
}

.table-sticky table tfoot,
.table-sticky table tfoot th,
.table-sticky table tfoot td {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 4;
    box-shadow: -2px 0px 5px 2px #bbb;
}

/* Legend styles */
/*#region alter-dyn-value */

.alter-dynval {
    position: relative;
}

    .alter-dynval .pin-btn {
        font-size: .9rem;
    }

        .alter-dynval .pin-btn:not(.on) {
            color: lightgray;
        }

    .alter-dynval label {
        display: none;
    }

#board-table:not(.showTech) .no-pin {
    display: none;
}

/*#endregion */
ul.legend {
    position: relative;
    height: 14rem;
    margin: 1.5rem 0;
}

ul.legend:before {
    content: '';
    position: absolute;
    height: 100%;
    margin-left: .5rem;
    width: .5rem;
    border-radius: 1rem;
    background: linear-gradient(0deg, var(--color-bar-1), var(--color-bar-5));
}

ul.legend li {
    margin: 0 .7rem;
    position: absolute;
    height: 1rem;
    display: flex;
    cursor: grab;
    left: unset !important;
    bottom: 0;
}

ul.legend li:active {
    cursor: none;
}

ul.legend li .tick {
    width: 30px;
    height: 100%;
    text-align: center;
    background: #FCDDEC;
    position: relative;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 0 5px;
    font-size: 12px;
}

ul.legend li:focus-within .tick {
    background: var(--color-primary);
    color: white;
}

ul.legend li .tick:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-right: 6px solid #FCDDEC;
    border-bottom: 4px solid transparent;
}

ul.legend li:focus-within .tick:before {
    border-right-color: var(--color-primary);
}

ul.legend li input {
    border: none;
    padding: 0 5px;
    font-size: 14px !important;
    margin: 0 .5rem;
}

ul.legend li .unit {
    font-size: 14px;
    margin-right: .5rem;
}

ul.legend li input:not(:focus):not(:hover) {
    background: none;
    font-size: 0.8em;
}



/* Bottom buttons */
.bottom-buttons {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1rem;
    background: #efcfff;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.15);
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: .5rem;
}

.bottom-buttons > * {
    flex: 1;
}

.bottom-buttons .btn {
    width: 100%;
    white-space: nowrap;
    background: var(--color-head);
    border: none;
    color: white;
}

.container-fluid .nav-item.selected a {
    font-weight: bold;
    color: #673AB7 !important;
}

@media (min-width : 667px) {
    .bottom-buttons > * {
        max-width: 13rem;
    }

    .nav-item .btn.rounded-circle,
    .container-fluid .navbar-nav a,
    .container-fluid .navbar-nav .btn {
        color: white !important;
        border-color: white;
    }
}

@media only screen and (max-width : 667px ) {
    html {
        font-size: 18px;
    }

    .container-fluid:not(.thin) .breadcrumb {
        padding: 0;
        overflow: hidden;
        gap: 0.3rem 0;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        padding-left: 3px;
        float: none;
    }
    .breadcrumb-item {
        font-size: 14px;
    }
    .breadcrumb-item + .breadcrumb-item {
        padding-right: 3px;
        
    }
    .navbar-light .navbar-toggler {
        color: white;
    }

    body > .container-fluid {
        padding: 1rem;
    }

    header .container-fluid {
        padding: 0;
    }

    .footer__block_center {
        padding: 0;
    }

    .footer__block_left {
        text-align: right;
        margin-top: 1rem;
        font-size: 0.9em;
    }

    .footer__block_left a {
        text-align: right;
        font-size: 14px;
    }

    .footer__block_right {
        margin-bottom: 2rem;
    }

    .side-menu {
        position: fixed !important;
        /* margin: 0; */
        right: -100%;
        overflow: auto;
        top: 57px;
        bottom: 0;
        z-index: 20;
        inset: 0;
        width: 90%;
        transition: 0.3s;
        background: rgb(255 255 255);
        box-shadow: 0 2px 5px 1px rgb(0 0 0 / 16%);
    }

    .container-fluid > nav{
        padding: .5rem .5rem 0;
    }
}

.board-views a {
    display: block;
    padding: 0.1rem 0;
}

.start-navs {
    display: flex;
    align-items: center;
}

@media (max-width: 576px) {
    a .navbar-brand {
        padding: 0;
        display: flex;
        align-items: center;
    }

    a.navbar-brand img {
        font-size: 17px;
        margin: 0;
        filter: brightness(1000%);
    }

    .navbar .container-fluid .navbar-collapse {
        background: white;
        padding: .5rem 1rem;
        position: absolute;
        margin: 0;
        right: -0.75rem;
        left: 0;
        top: 2.2rem;
        width: 100vw;
        z-index: 2000;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    }

    .navbar .container-fluid .navbar-collapse .navbar-nav {
        flex-direction: column;
        margin: 0.5rem 0;
        gap: .5rem;
    }

    .navbar .container-fluid .navbar-collapse li {
        width: 100%;
        flex: 1 1 100%;
        justify-content: space-between;
    }

    .navbar .container-fluid .navbar-collapse .navbar-nav .btn {
        border: none;
        padding: 0;
        display: block;
        width: 100%;
        text-align: right;
    }

    .start-navs {
        width: 100%;
        justify-content: space-between;
    }
}


.box {
    display: flex;
    gap: .5rem;
}

    .box.fs > :nth-child(1), /*fill start*/
    .box.fe > :nth-child(2) /*fill end*/ {
        -ms-flex: 1;
        -webkit-flex: 1;
        flex: 1;
    }

    .box.mid {
        -webkit-align-items: center;
        align-items: center;
    }

.card-menu {
    cursor:pointer;
}
.card-menu > i {
    font-size: 12px;
    color: #6b6b6b;
}

.card-menu > ul {
    display: none;
    position: absolute;
    top: 19px;
    line-height: 1.7;
    left: 1.2rem;
    width: 200px;
    border-radius: 4px;
    padding: 5px 0;
    background-color: #FFFFFF;
    z-index: 11;
    box-shadow: 0 0 15px 0 #bbb;
    -moz-box-shadow: 0 0 15px 0 #bbb;
    -webkit-box-shadow: 0 0 15px 0 #bbb;
}

    .card-menu > ul li {
        padding: 5px 5px;
        color: #000000;
        display: flex;
        cursor: pointer;
        margin: 1px;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

        .card-menu > ul li:hover{
            background-color: #f5f5f5;

        }

        .card-menu > ul li > * {
            display: inline-flex;
            width: 100%;
            text-decoration: none;
            flex: 1 1 100%;
            cursor: pointer;
            align-items: center;
            font-size: 16px;
            padding: 0px 5px;
            gap: 0.5em;
            color:initial;
        }

            .card-menu > ul > hr{
                margin: 3px 0;
                color: var(--color-border);
            }

            .card-menu > ul li > * i {
                text-align: center;
                width: 1rem;
                font-size: 0.9em;
            }

.recomand + .card-menu > i {
    color: white;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.card-body
{
    padding:1rem;
}

.quiz-medal {
    margin: 0;
}

.quiz-medal {
    position: relative;
    font-size: 1em;
    width: 2em;
    gap: 0 0px;
    display: flex;
    /* margin-bottom: 16px; */
    flex-wrap: wrap;
    justify-content: center;
}

.quiz-medal__circle {
    /* font-family: "Roboto", sans-serif; */
    font-size: 1em;
    /* font-weight: 500; */
    width: 2em;
    height: 2em;
    flex: 1 1 100%;
    border-radius: 100%;
    /* color: white; */
    /* text-align: center; */
    /* line-height: 46px; */
    /* vertical-align: middle; */
    display: flex;
    position: relative;
    border-width: 0.2em;
    border-style: solid;
    z-index: 1;
    box-shadow: inset 0 0 0 #a7b2b8, 2px 2px 0 rgba(0, 0, 0, 0.08);
    border-color: #edeff1;
    text-shadow: 2px 2px 0 #98a6ad;
    background: linear-gradient(to bottom right, #d1d7da 50%, #c3cbcf 50%);
    align-items: center;
    justify-content: center;
}

    .quiz-medal__circle.quiz-medal__circle--gold {
        box-shadow: inset 0 0 0 #b67d05, 2px 2px 0 rgba(0, 0, 0, 0.08);
        border-color: #fadd40;
        text-shadow: 0 0 4px #9d6c04;
        background: linear-gradient(to bottom right, #f9ad0e 50%, #e89f06 50%);
    }

    .quiz-medal__circle.quiz-medal__circle--silver {
        box-shadow: inset 0 0 0 #a7b2b8, 2px 2px 0 rgba(0, 0, 0, 0.08);
        border-color: #edeff1;
        text-shadow: 0px 0px 4px #98a6ad;
        background: linear-gradient(to bottom right, #d1d7da 50%, #c3cbcf 50%);
    }

    .quiz-medal__circle.quiz-medal__circle--bronze {
        box-shadow: inset 0 0 0 #955405, 2px 2px 0 rgba(0, 0, 0, 0.08);
        border-color: #f7bb23;
        text-shadow: 0 0 4px #7d4604;
        background: linear-gradient(to bottom right, #df7e08 50%, #c67007 50%);
    }

.quiz-medal__ribbon {
    content: "";
    display: block;
    /* position: absolute; */
    border-style: solid;
    border-width: 0.3em 0.4em;
    width: 0;
    height: 0.6em;
    top: 2rem;
}

.quiz-medal__ribbon--left {
    border-color: #fc402d #fc402d transparent #fc402d;
    left: 0;
    transform: rotate(20deg) translateZ(-32px);
}

.quiz-medal__ribbon--right {
    left: 19px;
    border-color: #f31903 #f31903 transparent #f31903;
    transform: rotate(-20deg) translateZ(-48px);
}


.modal {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1060;
    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.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    transform: none;
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem);
}

    .modal-dialog-scrollable .modal-content {
        max-height: 100%;
        overflow: hidden;
    }

    .modal-dialog-scrollable .modal-body {
        overflow-y: auto;
    }

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

    .modal-backdrop.fade {
        opacity: 0;
    }

    .modal-backdrop.show {
        opacity: 0.5;
    }

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-right-radius: calc(0.3rem - 1px);
    border-top-left-radius: calc(0.3rem - 1px);
}

    .modal-header .btn-close {
        padding: 0.5rem 0.5rem;
        margin: -0.5rem auto -0.5rem -0.5rem;
    }

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-left-radius: calc(0.3rem - 1px);
    border-bottom-right-radius: calc(0.3rem - 1px);
}

    .modal-footer > * {
        margin: 0.25rem;
    }

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

    .modal-fullscreen .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen .modal-footer {
        border-radius: 0;
    }

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-sm-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-sm-down .modal-header {
            border-radius: 0;
        }

        .modal-fullscreen-sm-down .modal-body {
            overflow-y: auto;
        }

        .modal-fullscreen-sm-down .modal-footer {
            border-radius: 0;
        }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-md-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-md-down .modal-header {
            border-radius: 0;
        }

        .modal-fullscreen-md-down .modal-body {
            overflow-y: auto;
        }

        .modal-fullscreen-md-down .modal-footer {
            border-radius: 0;
        }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-lg-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-lg-down .modal-header {
            border-radius: 0;
        }

        .modal-fullscreen-lg-down .modal-body {
            overflow-y: auto;
        }

        .modal-fullscreen-lg-down .modal-footer {
            border-radius: 0;
        }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-xl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-xl-down .modal-header {
            border-radius: 0;
        }

        .modal-fullscreen-xl-down .modal-body {
            overflow-y: auto;
        }

        .modal-fullscreen-xl-down .modal-footer {
            border-radius: 0;
        }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-xxl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-xxl-down .modal-header {
            border-radius: 0;
        }

        .modal-fullscreen-xxl-down .modal-body {
            overflow-y: auto;
        }

        .modal-fullscreen-xxl-down .modal-footer {
            border-radius: 0;
        }
}



.active .answer + .answer {
    /* margin-top: .5rem !important; */
}


.answer {
    line-height: 1;
    min-width: 7rem;
}

    .answer p {
        color: #757575;
        margin: 0;
    }

/*#region qs */

.qs {
    display: flex;
    flex-wrap: wrap;
    /* margin: 0 -.5rem; */
    /* justify-content: center; */
}

    .qs > li:not(.msg) {
        flex: 1 1 100%;
        padding: 0.7rem 0.7rem;
        margin: 0.3rem 0;
        /* min-height: 6rem; */
        border-radius: 7px;
        cursor: pointer;
        background: white;
        border: 1px solid var(--color-border);
        border: none;
        box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    }

/* Override for starter-gemini-container - modern design */
.starter-gemini-container .qs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;  /* Reduced gap on mobile */
    max-width: unset;
}

/* Restore larger gap on tablet+ */
@media (min-width: 768px) {
    .starter-gemini-container .qs {
        gap: 1rem;
        max-width: unset;
        width: 100%;
    }
}

.starter-gemini-container .qs > li:not(.msg) {
    flex: 1 1 100%;
    padding: 1rem 0.75rem;  /* Reduced top/bottom padding on mobile */
    margin: 0;
    border-radius: var(--radius-xl);
    cursor: pointer;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

/* Restore full padding on tablet+ */
@media (min-width: 768px) {
    .starter-gemini-container .qs > li:not(.msg) {
        padding: 1.5rem;
    }
}

.starter-gemini-container .qs > li:not(.msg):hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.starter-gemini-container .qs > li:not(.msg).active {
    background: var(--color-bg-primary);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

    .qs li > div:first-child label {
        margin-left: 3px;
    }

    .qs li > div:first-child .info label {
        /* font-size: 1.1em; */
        font-weight: bold;
        margin: 5px 0;
        position: relative;
        white-space: nowrap;
        line-height: 1;
    }

.open,
.msg-grp,
.qs {
    max-width: 36rem;
    /* margin: 0 auto; */
}

    .qs li.active .question-wrap .question {
        display: block;
    }

    .qs li > * {
        width: 100%;
        display: block !important;
    }
    /*.qs > li:not(.active) .btns button.selected {
    background: none;
    color: var(--color-primary) !important;
    border: none;
    padding: 0;
    padding: 0  !important;
    margin: 0;
    text-align: left;
}
*/
    .qs > li:not(.active) .btns button.never.selected {
        color: #b5b5b5 !important;
    }

    .qs li:not(.msg).active {
        /* padding: 0.8rem 0.7rem; */
        background: white !important;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    }

    .qs li .question .info {
        flex: 1;
        line-height: 1.2;
    }

    .qs li .question .content > p {
        /* background: #F5F5FF; */
        /* padding: 0.4rem .5rem; */
        margin-top: .5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

/* Override for starter-gemini-container */
.starter-gemini-container .qs li .question .content > p {
    font-family: 'Rubik', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    /* background: var(--color-primary-50); */
    /* padding: 0.75rem 1rem; */
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    /* font-size: var(--text-lg); */      /* 18px on mobile - responsive sizing */
    font-weight: var(--font-normal);
    line-height: var(--leading-snug);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
}

@media (min-width: 768px) {
    .starter-gemini-container .qs li .question .content > p {
        font-size: var(--text-xl);  /* 20px on tablet */
    }
}

@media (min-width: 1024px) {
    .starter-gemini-container .qs li .question .content > p {
        font-size: var(--text-2xl);  /* 24px on desktop */
    }
}

    .qs li .info > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .qs li > div:first-child label, .side-menu .factor-legend .custom-checkbox label {
        font-size: 1rem;
    }

    .qs li.active .ans-label {
        display: none;
        /* visibility: hidden; */
        /* transition: 1s; */
    }

/* Override for starter-gemini-container - show ans-label when not active */
.starter-gemini-container .qs li:not(.active) .ans-label {
    display: inline-block;
    visibility: visible;
}

.starter-gemini-container .qs li.active .ans-label {
    display: none;
    visibility: hidden;
}
    /*make .content slide down on active */
    .qs li .content {
        transition: .8s;
        max-height: 0; /* Collapsed by default */
        overflow: hidden; /* Hide overflowing content */
    }

/* Override for starter-gemini-container - accordion behavior */
.starter-gemini-container .qs li .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.starter-gemini-container .qs li.active .content {
    max-height: 2000px;
    overflow: visible;
    transition: max-height 0.5s ease-in;
}
.link.ans-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 35vw;
    line-height: 1;
}


    .qs li:not(.active) .answers .answer label {
        /* color: var(--color-link); */
        margin-top: 5px;
    }

    .qs li .content a.helpme {
        /* display: block; */

        white-space: nowrap;
        /* font-size: 15px; */
        /* margin-right: 3px; */
    }



        .qs li .content > p {
            line-height: 1.3;
            margin: 0;
            /*white-space: pre-line;*/
        }


.optional .info + p{
    font-size:0.9em;
    line-height: 1.2;
    margin:0;
    color:gray;
}
/*.qs li .answer p {
    display: inline-block;
    color: gray;
   
    margin-right: 8px;
    flex: unset;
    margin-bottom: 0;
}
*/
/*#endregion */
/*#region answers */
.question-wrap li.active .answers {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.question-wrap .qs .answers .answer {
    border: none;
    margin: 0;
    padding: 0;
}

    .question-wrap .qs .answers .answer > div:first-child label {
        font-weight: normal;
        /* font-size: 1rem; */
        margin: 0;
    }


li.active .btns {
    margin: 1rem 0 0.3rem;
    /* border-top: 1px solid #d3d5ff47; */
    /* padding-top: 1rem; */
    /* max-width: 23rem; */
}



li .btns {
    display: flex;
    justify-content: center;
    max-width: 25rem;
}

/* Override for starter-gemini-container */
.starter-gemini-container li .btns {
    display: flex;
    justify-content: flex-start;
    max-width: 100%;
    margin-top: 1rem;
}

    li .btns .form-group {
        margin: 0;
        padding: 0;
        line-height: 1;
        /* margin-left:1rem; */
    }

    li .btns button {
        /* font-size: 1rem !important; */
        /* padding: 0.4rem 0.95rem !important; */
    }

        li .btns button.never {
            border-color: #b5b5b5;
            color: #979797;
            margin: 0;
        }

/* Override for starter-gemini-container */
.starter-gemini-container li .btns button.never {
    border-color: var(--color-gray-300);
    color: var(--color-text-secondary);
    background: var(--color-gray-100);
}

.starter-gemini-container li .btns button.never:hover {
    background: var(--color-gray-200);
    border-color: var(--color-gray-400);
}

li .byImportance .btns button {
    /* line-height: 1.2; */
    margin-right: 0 !important;
    /* padding: .25rem 0.85rem !important; */
}

li .btns button.selected:not(:hover) {
    background: var(--color-primary);
    color: white !important;
    border-color: var(--color-primary) !important;
}

li .btns button.selected.never {
    background: #b5b5b5;
    color: white !important;
    border-color: #b5b5b5;
}

/* Override for starter-gemini-container */
.starter-gemini-container li .btns button.selected:not(:hover) {
    background: var(--color-primary);
    color: var(--color-text-inverse) !important;
    border-color: var(--color-primary) !important;
    box-shadow: var(--shadow-sm);
}

.starter-gemini-container li .btns button.selected.never {
    background: var(--color-gray-400);
    color: var(--color-text-inverse) !important;
    border-color: var(--color-gray-400);
}

.qs li .form-fields {
    margin: 0.7rem .5rem 0.3rem;
    max-width: 13rem;
}

    .qs li .form-fields.full {
        max-width: 100%;
    }

/*#endregion */
/*#region q-footer */
.q-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    border-top: 1px solid #d3d5ff47;
    padding-top: .75rem;
}

    .q-footer button {
        margin: 0;
    }

        .q-footer button.btn-outline-secondary {
            border-color: #c5c5ff;
        }

/* Override for starter-gemini-container */
.starter-gemini-container .q-footer {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--color-border-light);
    padding-top: 1rem;
    flex-wrap: wrap;
}

.starter-gemini-container .q-footer button {
    margin: 0;
}

/*#endregion */

/*#region tips */

.tip {
    background: #fffed0;
    padding: .5rem;
    border-radius: 7px;
    margin: 0.75rem 0 0;
    display: flex;
    /*max-width: 23rem;*/
    font-size: 0.9em;
    gap: 5px;
    align-items: baseline;
}

    .tip i {
        font-size: 14px !important;
        min-width: 1.5em;
    }

/* Override for starter-gemini-container */
.starter-gemini-container .tip {
    background: var(--color-primary-50);
    padding: 1rem;
    border-radius: var(--radius-lg);
    margin: 1rem 0 0;
    display: flex;
    font-size: var(--text-sm);
    gap: 0.5rem;
    align-items: baseline;
    border-right: 3px solid var(--color-primary);
}
    /*#endregion */
    /*#region msg */
    .msg {
        background: #eee9f6;
        margin: 0.5rem 0;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 7px;
        display: inline-block;
        /* flex: 1 1 100%; */
        margin: 0.5rem 0;
        max-width: 26rem;
    }

    .msg b {
        font-weight: 500;
        /* display: block; */
    }

/* Override for starter-gemini-container */
.starter-gemini-container .msg {
    background: var(--color-primary-50);
    margin: 0.5rem 0;
    padding: 1rem;
    font-size: var(--text-base);
    border-radius: var(--radius-lg);
    display: block;
    max-width: 100%;
    color: var(--color-text-primary);
}

.starter-gemini-container .msg b {
    font-weight: var(--font-semibold);
    color: var(--color-primary);
}
    /*#endregion */


    /*#region msg alter */

    .msg .alter {
        display: flex;
        background: white;
        padding: .5rem;
        gap: .5rem;
        border-radius: 7px;
    }

        .msg .alter img {
            width: 3rem;
        }

        .msg > div:first-child + .alter,
        .msg .alter + * {
            margin-top: .5rem;
        }

        .msg .alter .altr-variant {
            color: gray;
            flex: 1 1 100%;
        }
/*#endregion */
@media only screen and (min-width: 1024px) {
    .qs li .form-fields .short {
        flex: 0 0 9rem;
    }
}




@media only screen and (max-width: 667px) {

    #toFactors .qs > li,
    .usages:not(.weights) .qs li {
        flex: 1 1 100%;
        min-height: unset;
    }

    li.active .btns {
        margin: 0.7rem 0 0.3rem;
    }
}


.score-box {
    vertical-align: bottom;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

    .score-box label,
    .score-box .val {
        font-size: 0.9em;
        margin-top: 0.4rem;
    }

    .score-box label {
        /* margin-right: .5rem; */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        /* max-width: 10rem; */
        line-height: 1;
        text-align: center;
        flex: 1 1 100%;
        /* display: none; */
        display: flex;
        align-items: baseline;
        justify-content: center;
    }

        .score-box label > span:first-child {
            white-space: nowrap;
            display: inline-block;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 8rem;
        }

    /*tr:not(.isParent) .score-box label
 {
    flex: 1;
}*/
    .score-box .outer {
        display: inline-block;
        position: relative;
        vertical-align: bottom;
        margin-top: 16px;
        /* border: 1px solid rgb(211 211 211 / 10%); */
        width: 1em;
        height: 2em;
    }

        .score-box .outer .inner:before,
        .score-box .outer:before {
            content: "";
            position: absolute;
            height: 100%;
            opacity: 0.25;
            -moz-transform: skewY(45deg);
            -o-transform: skewY(45deg);
            -webkit-transform: skewY(45deg);
            transform: skewY(45deg);
        }



        .score-box .outer .inner:after,
        .score-box .outer:after {
            content: "";
            position: absolute;
            width: 100%;
            opacity: 0.45;
            -moz-transform: skewX(45deg);
            -o-transform: skewX(45deg);
            -webkit-transform: skewX(45deg);
            transform: skewX(45deg);
        }

    .score-box:not(.ball) .outer:before,
    .score-box:not(.ball) .outer:after {
        /*border: var(--box-border);*/
        background-color: inherit;
        opacity: .5;
    }

    .score-box .outer .inner {
        position: absolute;
        bottom: 0;
        width: 100%;
    }


    .score-box .outer:before,
    .score-box .inner:before {
        left: calc(-1*var(--box-3d));
        bottom: calc(var(--box-3d)/2);
        width: var(--box-3d);
    }

    .score-box .outer:after,
    .score-box .inner:after {
        top: calc(-1*var(--box-3d));
        left: calc(var(--box-3d)/-2);
        height: var(--box-3d);
    }

    .score-box .outer [data-rank] {
        color: white;
    }



    .score-box .outer .inner:before,
    .score-box .outer .inner:after {
        background-color: inherit;
    }

    .score-box .slider-wrapper {
        display: none;
        position: absolute;
        bottom: 0;
        right: -1.5rem;
        top: 1rem;
    }

    .score-box .outer small {
        font-size: 10px;
    }

    /*#region score ball */
    .score-box.ball {
        margin: 0;
    }


    .score-box.ball {
        justify-content: center;
    }

        /*   .score-box.ball > div {
        width:4em;
    }
*/
        .score-box.ball .outer {
            height: 1em;
            border-radius: 100%;
            opacity: 1;
            margin: 0;
            line-height: 1em;
            box-shadow: inset 1px -3px 7px 5px rgb(0 0 0 / 12%);
        }

        .score-box.ball .val {
            font-size: 0.4em;
            margin: 0;
            text-align: center;
            color: white;
            text-shadow: 0px 0px 5px rgb(0 0 0 / 90%);
            /*opacity:.8;*/
        }

    .score-box.rect .outer {
        border-radius: 3px;
        font-size: 2em !important;
        line-height: 1.2;
        height: 1.2em;
        width: 1.2em;
        align-items: center;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .score-box.rect .val {
        /* text-shadow: unset; */
        /*font-weight:normal;*/
        /* color:
        black; */
    }
        .score b:after, .score-box.rect .val:after {
            content: 'התאמה';
            display: block;
            font-size: 9px;
        }


.score b {
    display:flex !important;
    align-items: flex-end;
    width: 5.6em;
    gap: 2px;
    justify-content: center;
}
.split-view
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}
    .split-view > .slim {
        flex: 1 1 20rem;
    }
    .split-view > .content {
        flex: 1 1 100%;
    }

/* typical phone screen resolution */
@media only screen and (max-width : 1024px) {
    .split-view {
        display: block !important;
        gap: 1rem;
    }

        .split-view .slim {
            /*flex:1 1 100% !important;*/
            max-height: unset !important;
        }
}

.toast-top-right {
    bottom: 0;
    top: unset !important;
    position: fixed;
    justify-content: CENTER;
    text-align: center;
    margin: 1rem auto;
    z-index: 1061;
}

    .toast-top-right > .toast {
        opacity: 1 !important;
        width: 15rem;
        padding: 0.5rem 1rem;
    }

.toast.toast-success {
    background-color: #51a351;
    color: #fff;
  
}

.toast.toast-error {
    background-color: #bd362f;
    color: #fff;
}

/*toast toast-warning*/
.toast.toast-warning {
    background-color: #f89406;
    color: #fff;
}



.weight-bars:empty {
    display: none;
}

.weight-bars {
    display: flex;
    gap: 1px;
    /* height: 1.5rem; */
    font-size: 18px;
    height: 0.9em;
    width: 0.9em;
    /* max-width: 1em; */
    background: white;
    border-radius: 3px;
    border: 1px solid var(--color-border);
    padding: 1px;
    /* margin-left: 5px; */
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
}

 /*   .weight-bars div {
        flex: 0 0 20%;
        background: #e1e1fd;
        height: 0.4rem;
        cursor: pointer;
    }*/

    .weight-bars > * {
        background: var(--color-accent);
        display: inline-block;
        height: calc( 33% - 1px);
        flex: 0 1 33%;
        border-radius: 3px;
        width: 100%;
    }

   

        .weight-bars div.on {
            background: var(--color-primary);
        }

            .weight-bars div.on:last-child {
                border-left: 1px solid white;
            }

      /*  .weight-bars div:hover {
            background: #9f2c67;
        }*/


.weight-bars.big{
    font-size: 40px !important;
    padding: 1px;
    max-width?: 1;
}
 /*   .weight-bars.big > * {
        width: 0.16em;
    }*/
button.btn {
    text-decoration: none;
}

.btn.rounded-circle {
    width: 2em;
    height: 2em;
    display: flex;
    max-width: 2em;
    padding: 0;
    text-decoration: none;
    text-align: center;
    align-items: center;
    justify-content: center;
}

    .btn.rounded-circle i {
        margin: 0 !important;
    }

.btn-link.primary,
.btn-primary {
    color: white;
    background-color: var(--color-primary);
    border-color: transparent;
    /*  width:1.5em;
    height:1.5em;
    line-height:1.5em;
    padding:0;*/
}

.btn[disabled]{
color: lightgray;
}

.btn.btn-primary[disabled] ,
    .btn-primary.disabled, 
    .btn-primary:disabled {
        opacity: 0.5;
        background-color: var(--color-primary) !important;
        border: none;
    }



.btn-secondary:not(:disabled) {
    color: #fff;
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-warning:not(:disabled) {
    background-color: var(--color-warning);
    border-color: var(--color-warning);
}

.btn-danger:not(:disabled) {
    background-color: var(--bs-danger);
    border-color: var(--bs-danger);
}


.btn-link {
    /* text-decoration: none; */
    color: var(--color-link);
}


    .btn-link > i {
        margin-left: 5px;
        font-size: 15px;
    }

.btn i + * {
    margin-right: 5px;
}

[dir="ltr"] .btn-icon i + * {
    margin-left: 0.5rem;
    margin-right: 0;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-outline-primary:not(:disabled) {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

    .btn-outline-primary:disabled, .btn-outline-primary.disabled {
        color: gray !important;
        background: lightgray;
        border-color: lightgray;
    }

.btn-outline-secondary {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-outline-gray {
    border: 1px solid #ced4da;
    color: #414141;
}

.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle,
.btn:hover:not([disabled]) {
    background: var(--color-primary-dark);
    color: white !important;
    border-color: var(--color-primary-dark) !important;
}

.btn-group > button {
    margin: 0;
}

.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
    box-shadow: none;
}

.badge {
    font-size: 9px;
}

.btn .badge {
    position: absolute;
    bottom: .8rem;
    right: .8rem;
    padding: 2px 4px;
    text-align: center;
    top: unset;
    font-weight: normal;
}


button.selected:not(:hover) {
    background: var(--color-primary);
    color: white !important;
    border-color: var(--color-primary);
}

/*all classes that start with 'btn-group-icon' */
[class^="btn-group-icon"].btn-group button {
    border-radius: 0.2rem !important;
    color: var(--color-accent);
    border-color: #c5c5ff;
    font-size: 1rem !important;
}


    [class^="btn-group-icon"].btn-group button.selected:not(:hover) .weight-bars div {
        background: var(--color-primary) !important;
    }


/* button with icon and text- verical*/
.btn-group.btn-group-icon {
    /* margin-right: 0.9rem; */
    gap: .5rem;
    width: 100%;
}

    .btn-group.btn-group-icon button {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0.7rem 1rem;
        gap: .3rem;
        max-width: 8rem;
    }

/* button with icon, then text with desc*/
.btn-group-icon-text {
    flex-direction: column;
    gap: .5rem;
    width: 100%;
}

.btn-group.btn-group-icon-text button {
    display: flex;
    gap: .5rem;
    flex-direction: row;
    align-items: center;
    padding: .75rem;
}

    /*Icon*/
    .btn-group.btn-group-icon-text button > *:first-child {
        flex: 0 0 0.9em;
    }
    /*Text*/
    .btn-group.btn-group-icon-text button div:last-child {
        text-align: right;
        line-height: 1;
    }

    .btn-group.btn-group-icon-text button div span {
        /* font-size: 18px !important; */
    }

    .btn-group.btn-group-icon-text button div p {
        margin-top: 3px;
        font-size: 15px !important;
        line-height: 1.1;
        margin-bottom: 0;
    }

    .btn-group.btn-group-icon-text button:not(.selected):not(:hover) div p {
        color: #888888;
    }


@media only screen and (max-width: 667px) {
    .btn-group.btn-group-icon button {
        padding: 0.7rem 5px;
        line-height: 1;
        gap: .5rem;
    }

        .btn-group.btn-group-icon button span {
            font-size: 16px;
            text-align: center;
        }
}

.custom-checkbox {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}



input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox label {
    cursor: pointer;
    position: relative;
    line-height: 1.2;
}

    .custom-checkbox label::before {
        content: '';
        display: inline-block;
        margin-left: 5px;
        height: 13px;
        width: 13px;
        margin-bottom: -2px;
        background-color: white;
        border: 1px solid var(--color-primary);
        border-radius: 3px;
    }

.custom-checkbox input:checked + label::before {
    background-color: var(--color-primary);
}
.custom-checkbox input[disabled] + label::before {
    border-color: lightgray;
}

.custom-checkbox input[disabled]:checked + label::before {
    background-color: lightgray;
}

/* Style the checkmark/indicator */
.custom-checkbox input:checked + label::after {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    color: white;
    font-size: 9px;
    right: 0;
    text-align: center;
    width: 13px;
    top: 3.6px;
    /* top: calc(50% - -1px); */
    /* transform: translateY(-50%); */
}

/* Indeterminate state - shows dash/minus when partially selected */
.custom-checkbox input:indeterminate + label::before {
    background-color: var(--color-primary);
}

.custom-checkbox input:indeterminate + label::after {
    content: "\f068";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    color: white;
    font-size: 9px;
    right: 0;
    text-align: center;
    width: 13px;
    top: 3.6px;
}


[dir='ltr'] .custom-checkbox input:checked + label::after {
    left: 0;
    right: auto;
}

[dir='ltr'] .custom-checkbox label::before {
    margin-right: 5px;
    margin-left: 0;
}




    .custom-checkbox .help-block {
        flex: 1 1 100%;
        font-weight: normal;
        margin-right: 18px;
        line-height: 1;
        font-size: 0.9em;
    }

i.help,
.custom-switch i,
.custom-checkbox i {
    margin: 0 5px;
    background: #b8b8ff;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5;
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 9px;
    border-radius: 100%;
}

/*#region Linear */

.linear .custom-checkbox label::before {
    border-radius: 100%;
    height: 15px;
    width: 15px;
    margin-bottom: -2px;
}

.linear .custom-checkbox input:checked + label::after {
    width: 15px;
}

.linear .custom-checkbox {
    position: relative;
}

/*.linear [data-checked='true']:not(:first-child) .custom-checkbox:after {
    content: '';
    width: 3px;
    height: 15px;
    background-color: var(--color-primary);
    right: 14px;
    position: absolute;
    top: -8px;
}*/
/*#endregion */

/* typical phone screen resolution */
@media only screen and (max-width : 667px) {
    .custom-checkbox input:checked + label::after {
        top: 5.4px;
    }
}

/*css for icons*/

.fa.round {
    border-radius: 50%;
    padding: 0;
    font-size:10px;
    height: 1.5em;
    width: 1.5em;
    line-height: 1.5em;
    text-align: center;
    color: white;
    background-color: #e8e8ff;
}


.fa.round.primary{
    background-color: var(--color-primary);
}

.fa.round.secondary{
    background-color: #6c757d;
}

.fa.round.success{
    background-color: #28a745;
}

.fa.round.warning{
    background-color: #ffc107;
}

.fa.round.danger{
    background-color: #dc3545;
}

.fa.round.info{
    background-color: #17a2b8;
}

.fa.round.light{
    background-color: #f8f9fa;
}

.fa.round.dark{
    background-color: #343a40;
}

.fa.round.gray{
    background-color: #6c757d;
}




.modal-body {
    max-width: 90vw;
    max-height: 80vh;
    overflow: auto;
    min-height: 10rem;
}

    .modal-body > i {
        right: 50%;
        top: 40%;
        position: absolute;
    }

.modal-fullscreen {
    width: 90vw;
    height: 90vh;
    margin: 2.5vh auto;
}

.modal-footer {
    justify-content: center;
}

.modal-backdrop ~ .modal {
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.5);
    z-index: 1063;
}

    .modal-backdrop ~ .modal + .modal-backdrop {
        z-index: 1062;
    }


@media (max-width: 768px) {
    .modal-header {
        padding: .5rem;
    }

    .modal-body {
        max-width: 100%;
    }
}

.custom-radio {
    display: flex;
    align-items: baseline;
}

    .custom-radio input {
        margin: 0rem 0.4rem;
    }

        .custom-radio input + span{
            /* margin-top: -4px; */
            display:inline-block;
        }

        .custom-radio label {
            cursor: pointer;
            font-size: 1.1rem;
        }

        .custom-radio label p {
            font-size: 14px;
            line-height: 1.2;
            margin-right: 27px;
        }

.custom-control-input {
    appearance: none;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    width: 1em;
    height: 1em;
    min-width: 1em;
    position: relative;
    cursor: pointer;
    outline: none;
}
    
    .custom-control-input:checked::before {
        content: "";
        position: absolute;
        top: 50%;
        font-size: 9px;
        left: 50%;
        width: 1em;
        height: 1em;
        border-radius: 50%;
        background-color: var(--color-primary);
        transform: translate(-50%, -50%);
        z-index: 0;
    }


.custom-radio-list li + li{
    margin-top: .5rem;
}

    .custom-radio-list li label {
        display: flex;
        align-items: flex-start;
        gap: 5px;
        cursor: pointer;
    }

        .custom-radio-list li label span {
            line-height: 1em;
            margin-top:-1px;
        }

.price-range{
    flex-direction:column;
    display: flex;
    max-width: 400px;
    width: 100%;
    align-items: center;
}
.price-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin: 0 30px; */
    width: 100%;
}

/*label {
    font-size: 12px;
    font-weight: 500;
}*/

/*p {
    font-size: 16px;
    font-weight: 600;
}*/

.range-slider {
    width: 100%;
    max-width: 400px;
    position: relative;
    margin: 15px 0 1rem 0;
    /* padding-right: 1rem; */
}

    .range-slider input[type=range] {
        -webkit-appearance: none;
        width: 100%;
        background: transparent;
        position: absolute;
        left: 0;
    }

    .range-slider input[type=range]::-webkit-slider-thumb {
  /*      -webkit-appearance: none;
        height: 15px;
        width: 15px;
        border-radius: 50%;
        
        cursor: pointer;*/

        margin-top: -2px;
        position: relative;
        z-index: 1;
    }

.min-price::-webkit-slider-thumb {
    border-radius:30% 100% 100% 30% !important;
}
.max-price::-webkit-slider-thumb {
    border-radius: 100% 30% 30% 100% !important;
}

.range-slider input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: #e8e8e8;
    border-radius: 3px;
    border: none;
}

.current-content{
    display: inline-flex;
    font-weight:bold;
    margin-top: .5rem;
    gap:.5rem;
    justify-content: center;
    align-items: center;
}

.current-content > *{
    padding: 0.5rem 1px;
}

.current-content input{
    max-width: 4.9em;
    font-size: 14px;
    line-height: 1;
    text-align: center !important;
}

@media (min-width: 768px) {
    .current-content input {
        font-size: 18px;
    }

    .price-range .btn-sm{
        padding: 0.5rem 1rem;
    }

    .price-range input{
        padding: 0.5rem 0.75rem;
    }
}


app-select{
    display:block;
    width:100%;
}

.select-wrap {
    position: relative;
}
/*    .select-wrap:after {
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        content: "\f107";
        position: absolute;
        top: 0;
        left: 0;
        margin: .5rem;
    }*/


.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.select2-container--default {
    --border-radius: 0.25rem;
    --shadow-intensity: 0.75;
    --select2-caret-width: calc(calc(2.4375rem + 2px) - 2px);
    --select2-height: calc(2.4375rem + 2px);
    --select2-line-height: 1.5;
    --select2-padding-x: 1rem;
    --select2-padding-y: 0.5625rem;
    --select2-font-size: 0.875rem;
    --select2-multiple-padding: 0.2rem;
    --select2-choice-padding-x: 0.5rem;
    width: 100% !important;
    --select2-choice-padding-y: 0;
    --select2-choice-line-height: 1.7;
    display: block;
    direction: rtl;
    text-align: right;
    /*------------------------------------*\
      #COMMON STYLES
    \*------------------------------------*/
    /**
   * Adjust Select2's choices hover and selected styles to match
   * Bootstrap 4's default dropdown styles.
   *
   * @see http://getbootstrap.com/components/#dropdowns
   */
    /*------------------------------------*\
      #DROPDOWN
  \*------------------------------------*/
    /*------------------------------------*\
      #SINGLE SELECT2
    \*------------------------------------*/
    /*------------------------------------*\
    #MULTIPLE SELECT2
    \*------------------------------------*/
    /*------------------------------------*\
      Smartstore specific styles
	\*------------------------------------*/
    /*------------------------------------*\
    #RTL SUPPORT
    \*------------------------------------*/
}

    .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
        display: none !important;
    }

    .select2-container--default .select2-selection {
        box-shadow: none;
        background-color: #fff;
        border: 1px solid #dee2e6;
        border-radius: var(--border-radius);
        color: #596167;
        font-size: var(--select2-font-size);
        outline: 0;
    }

        .select2-container--default .select2-selection.input-sm, .form-control-sm + .select2-container--default .select2-selection, .input-group-sm .select2-container--default .select2-selection {
            --border-radius: 0.2rem;
            --select2-caret-width: calc(calc(1.96875rem + 2px) - 2px);
            --select2-padding-x: 0.75rem;
            --select2-padding-y: 0.375rem;
            --select2-height: calc(1.96875rem + 2px);
            --select2-line-height: 1.5;
            --select2-font-size: 0.8125rem;
            --select2-multiple-padding: 0.125rem;
            --select2-choice-padding-x: 0.375rem;
            --select2-choice-line-height: inherit;
        }

        .select2-container--default .select2-selection.input-lg, .form-control-lg + .select2-container--default .select2-selection, .input-group-lg .select2-container--default .select2-selection {
            --border-radius: 0.4rem;
            --select2-caret-width: calc(calc(3rem + 2px) - 2px);
            --select2-padding-x: 1.5rem;
            --select2-padding-y: 0.75rem;
            --select2-height: calc(3rem + 2px);
            --select2-line-height: 1.5;
            --select2-font-size: 1rem;
            --select2-choice-padding-x: 0.75rem;
        }

    .select2-container--default .select2-search--dropdown .select2-search__field {
        box-shadow: none;
        background-color: #fff;
        border: 1px solid #dee2e6;
        border-radius: var(--border-radius);
        color: #596167;
        font-size: var(--select2-font-size);
        border-radius: 0.2rem;
    }

    .select2-container--default .select2-search__field {
        outline: 0;
        /* Firefox 18- */
        /**
     * Firefox 19+
     *
     * @see http://stackoverflow.com/questions/24236240/color-for-styled-placeholder-text-is-muted-in-firefox
     */
    }

        .select2-container--default .select2-search__field:focus {
            border-color: #689de8;
        }

        .select2-container--default .select2-search__field::-webkit-input-placeholder {
            color: #8d9ba9;
        }

        .select2-container--default .select2-search__field:-moz-placeholder {
            color: #8d9ba9;
        }

        .select2-container--default .select2-search__field::-moz-placeholder {
            color: #8d9ba9;
            opacity: 1;
        }

        .select2-container--default .select2-search__field:-ms-input-placeholder {
            color: #8d9ba9;
        }


    .select2-container--default .select2-results__option > div{
        display:flex;
        direction:rtl;
        gap:.5rem;
        font-size:14px;
        align-items: baseline;
    }

        .select2-container--default .select2-results__option > div span{
            line-height: 1.1;
            display: inline-block;
        }

        .select2-container--default .select2-results__option {
            --select2-option-indent: 1;
            --select2-option-padding-x-start: 1rem;
            --select2-option-padding-x-end: 1rem;
            --select2-option-padding-y: 0.5625rem;
            padding-left: calc(var(--select2-option-padding-x-start) * var(--select2-option-indent));
            padding-right: var(--select2-option-padding-x-end);
            padding-top: var(--select2-option-padding-y);
            padding-bottom: var(--select2-option-padding-y);
        }


        .select2-container--default .select2-results__option .info{
            line-height:1;
            font-size: 0.9em;
            font-weight:normal;
            color:gray;
        }

    .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable .info {
        color:white;
    }

    .select2-container--default .select2-results__option[role=group] {
        padding: 0 !important;
        padding-top: 0.75em !important;
    }

        .select2-container--default .select2-results__option[aria-disabled=true] {
            color: #aab5bf;
            cursor: not-allowed;
        }

        .select2-container--default .select2-results__option[aria-selected=true] {
            color: #393f46;
            font-weight: 600;
        }

    .select2-container--default .select2-results__option--highlighted[aria-selected] {
        background-color: #f8f9fa;
        color: #393f46;
    }

    .select2-container--default .select2-results__option .select2-results__option {
        --select2-option-indent: 2;
    }



    .select2-container--default .select2-results__group {
        color: inherit;
        display: block;
        padding: 0.5625rem 1rem;
        white-space: nowrap;
        font-weight: 600;
    }

        .select2-container--default .select2-results__group .select2-option {
            font-size: 0.875rem;
            line-height: 1.5;
        }

    .select2-container--default.select2-container--focus .select2-selection {
        border-color: #689de8;
        /* height: 1.8rem; */
    }

    .select2-container--default.select2-container--open .select2-selection {
        --shadow-yoffset: 0.175;
        box-shadow: 0 calc(10px * var(--shadow-yoffset, 1)) 40px -4px rgba(var(--shadow-colorbase-rgb), calc(var(--shadow-intensity) * 0.14)), 0 calc(12px * var(--shadow-yoffset, 1)) 28px -12px rgba(var(--shadow-color-rgb), calc(var(--shadow-intensity) * 0.2));
        border-color: #e9ecef;
        clip-path: inset(-200px -200px 0 -200px);
    }

        .select2-container--default.select2-container--open .select2-selection .select2-selection__arrow b:after {
            content: '\f077';
        }

    .select2-container--default.select2-container--open.select2-container--below .select2-selection {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-color: transparent;
    }

    .select2-container--default.select2-container--open.select2-container--above .select2-selection {
        --shadow-yoffset: 0.175;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-top-color: transparent;
        clip-path: inset(0 -200px -200px -200px);
    }

    .select2-container--default .select2-selection__clear {
        color: #8d9ba9;
        cursor: pointer;
        float: right;
        font-weight: bold;
    }

        .select2-container--default .select2-selection__clear:hover {
            color: #393f46;
        }

    .select2-container--default.select2-container--disabled .select2-selection {
        border-color: #dee2e6;
        box-shadow: none;
    }

    .select2-container--default.select2-container--disabled .select2-selection,
    .select2-container--default.select2-container--disabled .select2-search__field {
        cursor: not-allowed;
    }

    .select2-container--default.select2-container--disabled .select2-selection,
    .select2-container--default.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
        background-color: #f8f9fa;
    }

    .select2-container--default.select2-container--disabled .select2-selection__clear,
    .select2-container--default.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove {
        display: none;
    }

    .select2-container--default .select2-dropdown {
        box-shadow: 0 calc(10px * var(--shadow-yoffset, 1)) 40px -4px rgba(var(--shadow-colorbase-rgb), calc(var(--shadow-intensity) * 0.14)), 0 calc(12px * var(--shadow-yoffset, 1)) 28px -12px rgba(var(--shadow-color-rgb), calc(var(--shadow-intensity) * 0.2));
        clip-path: inset(0 -200px -200px -200px);
        border-color: #e9ecef;
        overflow-x: hidden;
        margin-top: -1px;
        z-index: 1060;
    }

    .select2-container--default .select2-dropdown--above {
        clip-path: inset(-200px -200px 0 -200px);
        margin-top: 1px;
    }

    .select2-container--default .select2-results > .select2-results__options {
        max-height: 320px;
        overflow-y: auto;
    }

    .select2-container--default .select2-selection--single {
        border-radius: var(--border-radius);
        height: var(--select2-height);
        line-height: var(--select2-line-height);
        padding: var(--select2-padding-y) var(--select2-padding-x);
        padding-left: calc(var(--select2-caret-width) + calc(var(--select2-padding-x) / 2));
        font-size: var(--select2-font-size);
        line-height: var(--select2-line-height);
        height: var(--select2-height);
    }

        .select2-container--default .select2-selection--single .select2-selection__clear {
            margin-top: -2px;
            margin-right: 4px;
        }

        .select2-container--default .select2-selection--single .select2-selection__arrow {
            position: absolute;
            top: 50% !important;
            transform: translateY(-50%);
            height: 95%;
            bottom: 1px;
            right: unset !important;
            left: 5px;
            /* border: 0 solid #dee2e6; */
            border-left-width: 1px;
            width: var(
            --select2-caret-width);
            border-radius: var(
            --border-radius);
            background-color: #f8f9fa;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .select2-container--default .select2-selection--single .select2-selection__arrow b {
                width: 7px;
                height: 7px;
                color: inherit;
                top: unset;
                position: relative;
                padding: 0;
                left: unset;
                transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
            }

                .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
                    position: absolute;
                    display: inline-block;
                    font-style: normal;
                    font-variant: normal;
                    text-rendering: auto;
                    -webkit-font-smoothing: antialiased;
                    line-height: 1;
                    font-size: 10px;
                    font-weight: 900;
                    font-family: "Font Awesome 5 Free";
                    content: "";
                }

        .select2-container--default .select2-selection--single .select2-selection__rendered {
            color: #596167;
            display: none;
            padding: 0;
        }

        .select2-container--default .select2-selection--single .select2-selection__placeholder {
            color: #8d9ba9;
        }

    .select2-container--default.select2-container--open .select2-selection,
    .select2-container--default.select2-container--open .select2-selection__arrow {
        background-color: #fff;
    }

    .select2-container--default.select2-container--open .select2-selection__arrow {
        border-color: transparent;
    }

    .select2-container--default .select2-results {
        background: #fff;
    }

    .select2-container--default .select2-results__option {
        position: relative;
        padding: 5px .5rem;
    }

        .select2-container--default .select2-results__option > .select2-option,
        .select2-container--default .select2-results__option > .select2-item-description {
            display: block;
            font-size: 0.8125rem;
            padding-right: 10px;
        }

            .select2-container--default .select2-results__option > .select2-option:after {
                position: absolute;
                right: 8px;
                display: inline-block;
                font-style: normal;
                font-variant: normal;
                text-rendering: auto;
                -webkit-font-smoothing: antialiased;
                line-height: 1;
                font-size: inherit;
                font-weight: 900;
                font-family: "Font Awesome 5 Free";
                content: "";
                color: #009e74;
                text-align: right;
                width: 18px;
                line-height: 1.5;
                visibility: hidden;
            }

        .select2-container--default .select2-results__option > .select2-item-description {
            font-weight: normal;
        }

        .select2-container--default .select2-results__option[aria-selected=true] > .select2-option:after {
            visibility: visible;
        }

        .select2-container--default .select2-results__option .select2-item-btn {
            position: relative;
            top: -3px;
            right: 6px;
            opacity: 0.0;
            transition: opacity 0.05s linear;
        }

            .select2-container--default .select2-results__option .select2-item-btn > a.btn {
                color: unset;
                width: 25px;
                height: 25px;
            }

                .select2-container--default .select2-results__option .select2-item-btn > a.btn > i {
                    width: unset;
                }

        .select2-container--default .select2-results__option:hover .select2-item-btn {
            opacity: 1;
        }

        .select2-container--default .select2-results__option .select2-item-link {
            font-weight: 600;
            font-size: 0.875rem;
            line-height: 1.5;
        }

    .select2-container--default .select2-dropdown--below .select2-results {
        border-top: 1px solid #e9ecef;
    }

    .select2-container--default .select2-dropdown--above .select2-results {
        border-bottom: 1px solid #e9ecef;
    }

    .select2-container--default .select2-search--dropdown {
        padding: 0 1rem 0.5rem 1rem;
        background-color: #fff;
    }

    .select2-container--default .select2-dropdown--above .select2-search--dropdown {
        padding-bottom: 0.5rem;
        padding-top: 0.5rem;
    }

    .select2-container--default .select2-selection--single.select-customtemplate,
    .select2-container--default .drop-customtemplate .select2-results__option {
        padding-left: 0.5rem;
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .select2-container--default .select2-selection--single.select-customtemplate {
        display: flex;
        align-items: center;
    }

        .select2-container--default .select2-selection--single.select-customtemplate > .select2-selection__rendered {
            width: 100%;
        }

            .select2-container--default .select2-selection--single.select-customtemplate > .select2-selection__rendered > .select2-selection__clear {
                margin-top: 5px;
            }

    .select2-container--default[dir="rtl"] .select2-selection--single {
        padding-right: 1rem;
        padding-left: calc(calc(2.4375rem + 2px) + 0.5rem);
    }

        .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__rendered {
            padding-right: 0;
            padding-left: 0;
            text-align: right;
        }

        .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
            float: left;
            margin-left: 4px;
            margin-right: initial;
        }

        .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
            left: 1px;
            right: auto;
            border-left-width: 0;
            border-right-width: 1px;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            border-top-left-radius: var(--border-radius);
            border-bottom-left-radius: var(--border-radius);
        }




    .select2-container--default > [dir="rtl"] .select2-results__option {
        padding-right: calc(var(--select2-option-padding-x-start) * var(--select2-option-indent));
        padding-left: var(--select2-option-padding-x-end);
    }

        .select2-container--default > [dir="rtl"] .select2-results__option > .select2-option {
            padding-left: 10px;
            padding-right: initial;
        }

            .select2-container--default > [dir="rtl"] .select2-results__option > .select2-option:after {
                left: 8px;
                right: auto;
                text-align: left;
            }

    .select2-container--default .field-img{
        width: 1.5em;
        flex: 0 0 1.5em;
        font-size: 19px;
        height: 1.5em;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .select2-container--default img {
        max-height: 100%;
        max-width: 100%;
        object-fit: cover;
        width: 100%;
    }
    /*#region --muli */
    .select2-selection--multiple .select2-search--inline {
        float: none;
    }


.select2-container--default .select2-selection--multiple .select2-selection__choice {
    font-size: var(--select2-font-size);
    color: #596167;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: calc(var(--border-radius) - 1px);
    cursor: default;
    padding: 0px 0;
    display: inline-flex;
    align-items: center;
    margin: 0.2rem;
    line-height: var(--select2-choice-line-height);
}


.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #8d9ba9;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 0;
    margin-top: -2px;
    border: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: inline;
    list-style: none;
    text-overflow: unset;
    overflow: unset;
    white-space: unset;
    padding: 0;
}

.select2-container .select2-selection--multiple {
    padding: 5px;
}

/*#endregion */

select.form-control {
    appearance: auto;
    /*padding: 1px !important;*/
}
/*Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type='range'] {
        /**/
        width: 80px;
        -webkit-appearance: none;
        background-color: #d6d6ff;
        border-radius: 5px;
        cursor: pointer;
    }

        input[type='range']::-webkit-slider-runnable-track {
            height: 0.6em;
            -webkit-appearance: none;
            /*margin-top: -1px;*/
        }

        input[type='range']::-webkit-slider-thumb {
            transform: translateY(-.25em);
            width: .5em;
            -webkit-appearance: none;
            height: 1em;
            /*cursor: ew-resize;*/
            cursor: pointer;
            background: var(--color-primary);
            box-shadow: 2em 0 0 2em rgb(239 93 168 / 80%);
        }


        input[type='range'].large::-webkit-slider-runnable-track {
            height:.8em;
        }

        input[type='range'].large::-webkit-slider-thumb {
            height: 1.5rem;
            width: 1.5rem !important;
            transform: translateY(-.35rem);
        }



/*
            input[type='range'][value='0']:not(:hover) {
                background-color: #d6d6ff79;
            }

            input[type='range'][value='0']:not(:hover)::-webkit-slider-thumb {
                width: 0em;
            }
*/

            /*       input[type='range']:after{
                content:'';
                width:5em;
                height:1em;
                background:red;
                display:inline-block;
            }
*/
            input[type='range'].rect {
                overflow: hidden;
            }

        input[type='range']:not(.rect)::-webkit-slider-thumb {
            border-radius: 100%;
            box-shadow: none;
            width: 1em;
        }

}
/** FF*/
input[type="range"]::-moz-range-progress {
    background-color: #43e5f7;
}

input[type="range"]::-moz-range-track {
    background-color: #9a905d;
}
/* IE*/
input[type="range"]::-ms-fill-lower {
    background-color: #43e5f7;
}

input[type="range"]::-ms-fill-upper {
    background-color: #9a905d;
}



.range-bars {
    display: flex;
    align-items: center;
}

    .range-bars > * {
        width: 0.9em;
        height: 1em;
        font-size: 10px;
        background:  var(--color-border);
        border-radius: 2px;
    }

        .range-bars > * + * {
            margin-right: 2px;
        }

        .range-bars > *.on {
            background: var(--color-primary);
        }
.custom-switch {
    padding-right: 2.25rem;
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 1.5em;
    padding-left: 1rem;
    font-size:.9rem;
    flex-wrap: nowrap;
    cursor:pointer;
    align-items: center;
}

.custom-switch label::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content:
    "";
    background-color: #fff;
    border: #adb5bd solid 1px;
}




    .custom-switch label::before,
    .custom-switch label {
        transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        line-height: 1.8;
        cursor: pointer;
    }

    .custom-switch label::before {
        right: -2.2rem;
        width: 1.75rem;
        pointer-events: all;
        border-radius: 0.5rem;
    }

.custom-switch input:checked ~  label::before {
    color: #fff;
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}


.custom-switch label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: var(--color-primary);
}

.custom-switch  label::after {
    top: calc(0.25rem + 2px);
    right: calc(-2.1rem + 2px);
    top: 50%;
    transform: translateY(-50%);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #adb5bd;
    border-radius: 0.5rem;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;
    transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;
}

.custom-switch input:checked ~  label::after {
    background-color: #fff;
    -webkit-transform: translateX(0.75rem);
    transform: translateY(-50%) translateX(-0.65rem);
}

    .custom-switch p.help-block{
        flex:1 1 100%;
    }


    .custom-switch.reverse {
        flex-direction: row-reverse; /* This will reverse the order of the elements within the .custom-switch container */
        padding-left: 2.25rem; /* Adjust the padding to ensure spacing works correctly after reversing */
        padding-right: 1rem; /* Adjust padding to match the reverse positioning */
    }

        .custom-switch.reverse label::before {
            left: 0; /* Move the background rectangle to the opposite side */
            right: auto; /* Reset the right property */
        }

        .custom-switch.reverse label::after {
            left: calc(0rem + 3px); /* Move the knob to the opposite side */
            right: auto; /* Reset the right property */
            transform: translateY(-50%) translateX(-0.05rem);
        }

        .custom-switch.reverse input:checked ~ label::after {
            left: calc(1.4rem + 2px);
        }

table,
.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6;
    caption-side: bottom;
    border-collapse: collapse;
}


    .table > :not(caption) > * > * {
        padding: 0.5rem 0.5rem;
        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 > tbody:not(:last-child) > :last-child > * {
        border-bottom-color: currentColor;
    }


th {
    text-align: inherit;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

.table-bordered > :not(caption) > * {
    border-width: 1px 0;
}

    .table-bordered > :not(caption) > * > * {
        border-width: 0 1px;
    }

.table-sticky.first-col-sticky tr > *:first-child {
    right: 0;
    position: -webkit-sticky;
    position: sticky;
    border-left: 1px solid #f7f7ff;
    z-index: 1;
    background: white;
}

[cnt]{
    text-align:center;
}

[brdr] {
    border-left: 1px solid lightgray;
}

[dir=ltr] [brdr] {
    border-left: none;
    border-right: 1px solid lightgray;
    padding-right: 1rem;
}

[dir=ltr] [brdr]  + *{
    padding-left:1rem;
}

.odd{border-color: white;background: rgb(239 239 239 / 25%);}

    .odd ~ tr:not(.odd) {
        border-color: #f4f4f4;
    }


.td-img{
    text-align:center;
}
.td-img img {
    /* max-width: 2rem; */
    max-height: 3rem;
}

.grid.table {
    display: grid;
    margin: 0;
    grid-template-columns: repeat( auto-fit, minmax(10rem, 1fr) );
    grid-gap: 1rem;
}
.grid-items > form{
    display:flex;
    align-items: baseline;
}
.grid.table > .form-group{
    margin:0;
}

.grid-items > form:not(:first-child) .form-group label {
    display: none;
}

    .grid-items > form:first-child{align-items: center;}

    .grid-items > form:first-child .form-group label {
       position:sticky;
       top:0;
       z-index:1;
       background:white;
    }




.grid-item{
    background:white;
    padding:1rem;
    margin-bottom: 5px;
}

    .grid-item .grid {
        grid-template-columns: repeat( auto-fit, minmax(1rem, auto) );
    }

.grid-items .grid-item{
    padding:.5rem 0;
}
.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

body .nav-tabs .nav-link.active,
body .nav-tabs .nav-item.show .nav-link {
    background: linear-gradient(0deg, #fafaff, #e0e0ff 66%);
    border-color: #dee2e6 #dee2e6 #f7f7ff;
    /* font-weight:bold; */
}

.tabs-stacked {
    display: flex;
    gap: 2rem;
}

    .tabs-stacked aside {
        flex: 0 0 15rem;
        background: white;
        padding:1rem;
    }

aside > ul.nav-tabs {
   display: flex;
   flex-direction: column !important;
   gap: 0.5rem;
   border: none;
}
    aside > ul.nav-tabs .nav-link {
        border:none;
        padding: 0.25rem 0.5rem;
    }
        aside > ul.nav-tabs .nav-link.active {
            border: none !important;
            background: #e0e0ff !important;
        }

        aside > ul.nav-tabs .nav-link > i{
            width:1.5rem;
            text-align:center;
        }


        .tabs-stacked .nav-content {
            flex: 1;
            max-width: 100%;
            overflow: auto;
        }
.tabs-stacked .tab-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

    .tabs-stacked  .tab-head > * {
        margin: 0;
    }

.overlay{
    display:none;
}


.tabs-top{
    flex-direction: column;
    gap:1rem;
}
    .tabs-top aside {
        max-width:unset !important;
        flex:unset;
        padding:0;
        background:none;
    }

    .tabs-top aside ul{
        flex-direction: row !important;
    }
    .tabs-top .tab-content h2{
        display:none;

    }
    /* typical phone screen resolution */
    @media only screen and (min-width : 1025px) {
        #closeSideMenu{
        display:none;
    }

}
    @media only screen and (max-width : 1024px) {
      
        h1 {
            font-size: 1.2rem;
        }

        h2 {
            font-size: 1rem;
        }

        main > .tabs-stacked aside {
            transition: 0.3s;
            position: fixed;
            width: 300px;
            top: 0;
            left: -100vw;
            height: 100%;
            z-index: 10;
        }

            .tabs-stacked aside.show {
                left: 0;
            }

        aside #closeSideMenu {
            position: absolute;
            top: 0;
            right: 0;
            margin: .5rem;
            cursor: pointer;
        }

        aside.show ~ .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9;
            display: block;
        }

        #tableID > div:first-child app-select {
            display: none;
        }
    }


@media only screen and (max-width : 768px) {
    .tabs-stacked .tab-head {
        flex-direction: column;
        gap: .5rem;
        align-items: flex-start;
    }
}
/*expaned bnt icon*/
textarea + .btn {
    position: absolute;
    left: 0;
    top: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.2s ease;
}

td:hover textarea + .btn {
    opacity: 1;
}

textarea.expand {
    min-width: 27rem !important;
    min-height: 150px !important;
    transition: min-height 0.2s ease;
}

/*number without spinner*/
input[type="number"].ns::-webkit-inner-spin-button,
input[type="number"].ns::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"].ns {
    -moz-appearance: textfield; /* For Firefox */
}
  
.tooltip {
    /* left: auto !important; */
    /* right: 0 !important; */
    max-width: 200px;
    display: flex;
    z-index: 9999;
    font-size: 12px;
    justify-content: center;
}

/* Header Search Styles - Matching Site Design */
.header-search-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: min(500px, calc(100% - 200px));
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    will-change: auto;
}

.header-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    will-change: auto;
}

.header-search-icon {
    position: absolute;
    right: 1rem;
    color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
}

.header-search-clear {
    position: absolute;
    left: 0.5rem;
    background: none;
    border: none;
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: color 0.2s;
}

.header-search-clear:hover {
    color: var(--color-primary);
}

.header-search-input {
    width: 100%;
    padding: 0.6rem 3rem 0.6rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 0.95rem;
    font-family: 'Rubik', sans-serif;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    direction: rtl;
    text-align: right;
    box-sizing: border-box;
}

.header-search-input:focus {
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(239, 93, 168, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
    opacity: 0.7;
}

.header-search-results {
    position: absolute;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 30px 84px rgba(44, 17, 62, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 15;
    display: none;
    direction: rtl;
    border: 1px solid var(--color-border);
    padding: 0.5rem 0;
    width: 100%;
    box-sizing: border-box;
}

.header-search-results.show {
    display: block;
}

/* Custom scrollbar to match site style */
.header-search-results::-webkit-scrollbar {
    width: 8px;
}

.header-search-results::-webkit-scrollbar-track {
    background: var(--color-scrollbar-track);
    border-radius: 4px;
}

.header-search-results::-webkit-scrollbar-thumb {
    background: var(--color-scrollbar-thumb);
    border-radius: 4px;
}

.header-search-results::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

.search-section {
    padding: 0;
}

/* Search query suggestion section */
.search-query-suggestion {
    /* border-bottom: 2px solid var(--color-border); */
    /* padding-bottom: 0.5rem; */
    /* margin-bottom: 0.5rem; */
}

.search-query-item {
    /* background: var(--color-accent-light); */
    cursor: default;
}

.search-query-item:hover {
    background: var(--color-accent-light) !important;
    padding-right: 1rem !important;
}

.search-query-icon {
    color: var(--color-head);
    font-size: 1rem;
    margin-right: 1rem;
    margin-left: 0;
    width: 20px;
    text-align: center;
}

.search-section-title {
    padding: 0.75rem 1rem 0.5rem;
    font-weight: 600;
    color: var(--color-head);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--color-border);
    margin-bottom: 1rem;
    background: var(--color-accent-light);
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 0.3rem 0.3rem;
    gap: .5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(211, 213, 255, 0.3);
    direction: rtl;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover,
.search-result-item.active {
    background-color: var(--color-accent-light);
    padding-right: 1.25rem;
}

.search-result-item.active {
    background-color: var(--color-primary-light);
    border-right: 3px solid var(--color-primary);
}

.search-result-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 0.4rem;
    margin-left: 0;
    flex-shrink: 0;
    /* border: 1px solid var(--color-border); */
    /* background: #f5f5f5; */
}

.search-result-icon {
    /* width: 48px; */
    font-size: 2rem !important;
    /* height: 48px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    margin-left: 0;
    flex-shrink: 0;
    color: var(--color-head);
    font-size: 1.2rem;
    background: var(--color-accent-light);
    border-radius: 6px;
}

.search-result-content {
    flex: 1;
    min-width: 0;
    text-align: right;
}

.search-result-text {
    font-weight: 500;
    color: #333;
    /* margin-bottom: 0.2rem; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
    font-size: 0.95rem;
}

.search-result-desc {
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.8;
}

.search-category-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.search-category-link {
    font-size: 0.75rem;
    color: var(--color-head);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: var(--color-accent-light);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.search-category-link:hover {
    background: var(--color-head);
    color: #fff;
    text-decoration: none;
}

.search-loading,
.search-error,
.search-no-results {
    padding: 2rem 1.5rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.search-loading {
    color: var(--color-head);
}

.search-error {
    color: #d32f2f;
}

.search-no-results {
    color: #999;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .header-search-wrapper {
        position: static !important;
        left: auto !important;
        transform: none !important;
        max-width: none !important;
        width: 100% !important;
        flex: 1 1 auto;
        min-width: 0;
        margin: 0;
        display: flex;
        align-items: center;
        transition: none;
        will-change: auto;
    }

    /* Full screen mode when focused */
    .header-search-wrapper.mobile-fullscreen {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        z-index: 100000 !important;
        background: #ffffff !important;
        padding: 0.5rem;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        cursor: default;
        transform: none !important;
        will-change: auto;
    }

    .header-search-wrapper.mobile-fullscreen .header-search-input-wrapper {
        margin-top: 0.5rem;
        position: relative;
        width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        box-sizing: border-box;
        transform: none !important;
        will-change: auto;
        display: flex;
    }

    .header-search-wrapper.mobile-fullscreen .header-search-input {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        padding: 0.8rem 3rem 0.8rem 2.5rem !important;
        box-sizing: border-box !important;
        transition: none !important;
        transform: none !important;
    }

    .header-search-wrapper.mobile-fullscreen .header-search-icon {
        right: 1rem !important;
        font-size: 1.2rem !important;
    }

    .header-search-wrapper.mobile-fullscreen .header-search-clear {
        left: 0.5rem !important;
        font-size: 1.2rem !important;
    }

    .header-search-input-wrapper {
        width: 100%;
        max-width: 100%;
        position: relative;
        box-sizing: border-box;
        will-change: auto;
    }

    .header-search-input {
        font-size: 14px;
        padding: 0.2rem 1.4rem 0.2rem 0.6rem;
        width: 100%;
        box-sizing: border-box;
        transition: none;
    }

    .header-search-icon {
        right: 8px;
        font-size: 13px;
    }

    .header-search-clear {
        left: 0.3rem;
    }

    .header-search-results {
        max-height: 50vh;
        width: calc(100vw - 1rem);
        left: 0.5rem;
        right: 0.5rem;
        position: fixed;
        top: calc(2.8rem + 0.5rem);
        padding: 0;
        margin: 0;
        border: none;
        z-index: 100001 !important;
    }

    /* Results in fullscreen mode */
    .header-search-wrapper.mobile-fullscreen .header-search-results {
        position: relative !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        max-height: calc(100vh - 4rem) !important;
        flex: 1;
        margin-top: 0.5rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
        z-index: 100001 !important;
        display: block !important;
    }

    .search-result-item {
        padding: 0 0.5rem 0.8rem;
        flex-wrap: wrap;
        gap: 0 .5rem;
    }

    .search-category-links{
        flex:1 1 100%;
    }

    .search-result-img {
        width: 40px;
        height: 40px;
        margin-left: 0.75rem;
    }

    .search-result-icon{
        margin-right: 0;
    }
}



header .container-fluid {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.start-navs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.end-navs {
    display: flex;
    align-items: center;
}

#toggleSideMenu{
    color:white;
}

@media (max-width: 576px) {
    .end-navs {
        display: none;
    }
    /* Hide login and filter on mobile, show only menu toggle */
    .start-navs > *:not(.navbar-toggler) {
        /* display: none; */
    }
    /* Adjust container layout for mobile - RTL: menu on right, search on left */
    header .container-fluid {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        flex-wrap: nowrap;
        width: 100%;
        flex-direction: row-reverse; /* Reverse order for RTL: menu first (right), search second (left) */
    }
    /* Show navbar-collapse on mobile when toggled */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-head);
        z-index: 1000;
        padding: 0.5rem 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

        .navbar-collapse:not(.show) {
            display: none !important;
        }
    /* Menu toggle on the right (appears first due to row-reverse) */
    .start-navs {
        /* flex-shrink: 0; */
        flex: unset;
    }
    /* Search on the left (wide, takes remaining space) */
    .header-search-wrapper {
        flex: 1 1 100%;
        min-width: 0;
    }
}


.navbar-nav .nav-link > *
{
    padding:.5rem;
    /*font-size:1rem;*/
}

.user-nav{
    display:flex;
    align-items: center;
}

header .navbar {
    background: var(--color-head);
    
}

.nav-item .btn-link{
    color:white;
}

@media (max-width: 576px) {
    header {
        min-height: 2.8rem;
        z-index: 31;
        position: sticky;
        top: 0;
    }

        header .navbar {
            padding: 10px .75rem;
            /*background: var(--color-head);*/
        }
}

@media (min-width: 576px) {
    .nav-item.mobile {
        display: none;
    }

    /* Show navbar-collapse on desktop */
    .navbar-collapse {
        display: flex !important;
        position: static;
        box-shadow: none;
        padding: 0;
        justify-content: flex-end;
    }
}

/*#region validation */
.form-group > label + [data-valmsg-for]{
    margin-right:5px;
    font-size: 0.9em;
}

    .form-group > label + [data-valmsg-for]:empty {
        display: none;
    }
    /*#endregion */
    @media only screen and (min-width : 667px) {
        .form-fields {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
    }


       .form-fields > * {
            flex: 1 1 calc(50% - .5rem);
        }

    .form-label {
        margin-bottom: 5px;
    }

  
}

