.LoadingAnimation {
  position: relative;
}

.LoadingAnimation_Overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}

.fillContainer {
  position: absolute;
  width: 100%;
  height: 100%;
}
.fillContainer .LoadingAnimation_Overlay {
  position: relative;
}

.LoadingAnimation_Overlay svg {
  height: 150px;
  left: 50%;
  position: relative;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 150px;
}

.LoadingAnimation_Overlay svg .circle,
.LoadingAnimation_Overlay svg .text {
  -webkit-animation: fadeIn 6s infinite linear;
  animation: fadeIn 6s infinite linear;
}

.LoadingAnimation_Overlay svg .pointer {
  -webkit-animation: fadeInPointer 6s infinite linear;
  animation: fadeInPointer 6s infinite linear;
  -webkit-transform-origin: 50% 40%;
  -ms-transform-origin: 50% 40%;
  transform-origin: 50% 40%;
}

.LoadingAnimation_Overlay svg .lines {
  -webkit-animation: fadeInLines 6s infinite linear;
  animation: fadeInLines 6s infinite linear;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInPointer {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0.5;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  80% {
    opacity: 1;
  }
  85% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  90% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  85% {
    opacity: 1;
  }
  90% {
    opacity: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInPointer {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0.5;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  80% {
    opacity: 1;
  }
  85% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  90% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  85% {
    opacity: 1;
  }
  90% {
    opacity: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInLines {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0.5;
  }
  60% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInLines {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0.5;
  }
  60% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* TODO */
div.error_Popup_Wrapper {
  position: fixed;
  top: -2px;
  height: 0px;
  text-align: center;
  width: 100%;
  font-size: 16px;
  margin-bottom: 25px;
  margin-top: 124px;
  z-index: 5000;
}

div.popup-wrapper-message {
  white-space: pre-wrap;
  text-align: left;
  justify-self: center;
}

div.error-banner {
  position: fixed;
  margin-top: 124px;
  height: 0;
  z-index: 1100;
  left: 0;
  top: -2px;
  text-align: center;
  width: 100%;
}
div.error-banner .alert {
  min-width: auto;
  max-width: 700px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
}
div.error-banner .alert .autofit-col {
  align-self: center;
}
div.error-banner .alert .error-messages-container {
  text-align: left;
  padding: 0 0.5rem;
}
div.error-banner .alert .close {
  top: 50%;
  transform: translateY(-50%);
}

.has-error .form-control[readonly] {
  border-color: #f48989;
}
.has-error .date-picker .input-group {
  outline-color: #f48989;
}
.has-error .date-picker .input-group:hover {
  outline-color: #f48989 !important;
}

.font-size-12 {
  font-size: 12px;
}

.font-size-13 {
  font-size: 13px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-24 {
  font-size: 24px;
}

.custom-control-input {
  margin: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.has-error .custom-control-label::before {
  border-color: unset;
}

.input-group .input-group-inset, .input-group .input-group-inset-item {
  background-color: white;
  color: var(--secondary);
}
.input-group .input-group-inset-item-after {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.input-disabled {
  border: none;
  font-weight: 700;
  padding-left: 0;
  cursor: default !important;
}

.privacy-container .privacy-checkbox-container p {
  margin-bottom: 0.125rem;
  line-height: 1.5rem;
}
.privacy-container .privacy-checkbox-container p a, .privacy-container .privacy-checkbox-container p a.text-primary:hover, .privacy-container .privacy-checkbox-container p a.text-primary:focus {
  color: var(--primary) !important;
  text-decoration: underline;
}
.privacy-container .privacy-checkbox-container-autocheck {
  margin-bottom: 1rem;
  line-height: 1;
}

.dropdown-icon-input {
  position: absolute;
  right: 12px;
  top: 55%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--secondary);
  z-index: 3;
}

.btn-outline-borderless:hover {
  color: inherit !important;
  background: none !important;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: thin solid var(primary);
  transition: all 0.4s ease-in;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: thin solid #fff;
  transition: all 0.2s ease-in;
}
.btn-outline-white:hover {
  background: transparent;
  color: #fff;
  border: thin solid #fff;
  transition: all 0.4s ease-in;
}

.btn-secondary {
  background: transparent !important;
  color: var(--secondary) !important;
}

.card-container {
  max-width: 400px;
}
.card-container .card-spacer {
  margin-top: 40px;
  transition: all 0.4s ease-in;
}
.card-container .card-spacer.card-spacer-closed {
  margin-top: 0;
}
.card-container .custom-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
}
.card-container .custom-card.card-accordion {
  min-height: 550px;
}
.card-container .custom-card.card-accordion-expanded {
  min-height: 800px;
}
.card-container .card-selected {
  background: linear-gradient(180deg, #04672c 0%, #25bb61 100%);
  transition: all 0.4s ease-in;
  border: thin solid #25bb61 !important;
  box-shadow: 0 0 5px 1px rgba(0, 103, 41, 0.5) !important;
}
.card-container .card-selected.card-accordion {
  min-height: 600px;
}
.card-container .card-selected.card-accordion-expanded {
  min-height: 850px;
}

.input-group-inset-item-after {
  background-color: white !important;
}

.form-control,
.input-group .input-group-inset-item,
.dropdown-menu,
.list-group-item {
  border-color: #cdced9;
  color: var(--secondary);
}

.date-picker-date:active,
.date-picker-date.active {
  background-color: var(--primary);
}

div:has(> .date-picker) > div:nth-child(2) .dropdown-menu-select.dropdown-menu .dropdown-item {
  padding: 0.325rem 0;
  text-align: center;
}

.date-picker .input-group {
  outline: 1px solid #cdced9;
  border-radius: 0.25rem;
  display: flex;
  overflow: hidden;
}
.date-picker .input-group:focus-visible {
  outline-color: var(--primary);
}
.date-picker .input-group:focus-within {
  outline-color: var(--primary);
}
.date-picker .input-group:focus {
  outline-color: var(--primary);
}
.date-picker .input-group:hover {
  outline-color: var(--primary);
}
.date-picker .input-group:hover .input-group-item,
.date-picker .input-group:hover .input-group-inset,
.date-picker .input-group:hover .input-group-inset-item,
.date-picker .input-group:hover .date-picker-dropdown-toggle {
  border-color: var(--primary);
}
.date-picker .input-group .input-group-item {
  border: none !important;
  flex: 1;
}
.date-picker .input-group .input-group-item .input-group-inset,
.date-picker .input-group .input-group-item .input-group-inset-item {
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
}
.date-picker .input-group .input-group-item input {
  border: none !important;
  outline: none;
}
.date-picker .input-group .date-picker-dropdown-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
}

.form-control:focus-visible, .input-group-item-focusable:focus-within:has(input:focus),
.has-error .form-control:focus-visible, .form-control[readonly]:focus-visible,
.has-error .form-control[readonly]:focus-visible,
.input-group-inset:focus-visible ~ .input-group-inset-item,
.has-error .input-group-item .input-group-inset:focus ~ .input-group-inset-item {
  box-shadow: none;
  border-color: var(--primary);
}

.toggle-switch-check:checked ~ .toggle-switch-bar::before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1250px;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-content {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.slider-item {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.slider-arrow {
  font-size: 24px;
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.3s;
}
.slider-arrow:hover {
  color: var(--primary);
}
.slider-arrow.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.slider-indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.slider-indicators .indicator-dot {
  width: 10px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: #ccc !important;
  margin: 0 5px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
}
.slider-indicators .indicator-dot.active {
  background-color: var(--primary) !important;
}
.slider-indicators .indicator-dot:hover {
  background-color: var(--primary) !important;
}

.filler-no-content {
  width: 100%;
  height: 60vh;
}

.fs-0-8 {
  font-size: 0.875rem;
}

.tooltip-inner {
  text-align: start;
  font-size: 10px;
  background-color: var(--primary) !important;
  color: white !important;
  border-radius: 5px !important;
}

.clay-tooltip-top .arrow::before,
.clay-tooltip-top-left .arrow::before,
.clay-tooltip-top-right .arrow::before {
  border-top-color: var(--primary) !important;
}

.overflow-visible {
  overflow: visible !important;
}

.sticky-search-select {
  position: sticky !important;
  z-index: 400;
  top: 0;
  left: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.list-group-item-action:hover {
  background-color: #e4eee8;
}

.list-group-item-action:focus {
  background-color: #cbe0d3;
}

.transition-section {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-out;
}
.transition-section.open {
  max-height: 1000px;
}
.transition-section.closed {
  max-height: 0;
}

.map-container {
  width: 100%;
  height: auto;
  max-height: 400px;
  min-height: 400px;
}

.marker-popup {
  display: flex;
  flex-direction: column;
}
.marker-popup .marker-popup-location {
  margin-top: 0.5rem;
}
.marker-popup .marker-popup-phone {
  margin-top: 1rem;
}
.marker-popup .marker-popup-mail {
  margin-bottom: 0.5rem;
}

.agency-list-container {
  width: 100%;
  height: auto;
  max-height: 400px;
  min-height: 400px;
}
.agency-list-container.loading {
  position: absolute;
  right: 0;
}
.agency-list-container .simplebar-mask {
  margin-right: var(--spacer-3) !important;
}

.pac-container {
  z-index: 1200;
}

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:after,
.simplebar-content:before {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: #000;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tooltip-container {
  cursor: pointer;
}

.tippy-content {
  white-space: pre-line;
}

.input-tooltip {
  height: 21px;
}

.tippy-box[data-theme~=hdi] {
  background-color: var(--primary);
  color: white;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 12px;
}

/* svg arrow */
.tippy-box[data-theme~=hdi] > .tippy-svg-arrow {
  fill: var(--primary);
}

/* end svg arrow */
/* css arrow */
.tippy-box[data-theme~=hdi][data-placement^=top] > .tippy-arrow::before {
  border-top-color: var(--primary);
}

.tippy-box[data-theme~=hdi][data-placement^=bottom] > .tippy-arrow::before {
  border-bottom-color: var(--primary);
}

.tippy-box[data-theme~=hdi][data-placement^=left] > .tippy-arrow::before {
  border-left-color: var(--primary);
}

.tippy-box[data-theme~=hdi][data-placement^=right] > .tippy-arrow::before {
  border-right-color: var(--primary);
}

/* end css arrow */
/* base arrow */
.tippy-box[data-placement^=top] > .tippy-svg-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-svg-arrow:after,
.tippy-box[data-placement^=top] > .tippy-svg-arrow > svg {
  top: 16px;
  transform: rotate(180deg);
}

.tippy-box[data-placement^=bottom] > .tippy-svg-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-svg-arrow > svg {
  bottom: 16px;
}

.tippy-box[data-placement^=left] > .tippy-svg-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-svg-arrow:after,
.tippy-box[data-placement^=left] > .tippy-svg-arrow > svg {
  transform: rotate(90deg);
  top: calc(50% - 3px);
  left: 11px;
}

.tippy-box[data-placement^=right] > .tippy-svg-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-svg-arrow:after,
.tippy-box[data-placement^=right] > .tippy-svg-arrow > svg {
  transform: rotate(-90deg);
  top: calc(50% - 3px);
  right: 11px;
}

.tippy-svg-arrow {
  width: 16px;
  height: 16px;
  fill: #333;
  text-align: initial;
}

.tippy-svg-arrow,
.tippy-svg-arrow > svg {
  position: absolute;
}

/* end base arrow */