@charset "UTF-8";

/* src/styles.scss */
:root {
  --tagify-dd-color-primary: rgb(53,149,246);
  --tagify-dd-text-color: black;
  --tagify-dd-bg-color: white;
  --tagify-dd-item-pad: .3em .5em;
  --tagify-dd-max-height: 300px;
}
.tagify {
  --tags-disabled-bg: #F1F1F1;
  --tags-border-color: #DDD;
  --tags-hover-border-color: #CCC;
  --tags-focus-border-color: #3595f6;
  --tag-border-radius: 3px;
  --tag-bg: #E5E5E5;
  --tag-hover: #D3E2E2;
  --tag-text-color: black;
  --tag-text-color--edit: black;
  --tag-pad: 0.3em 0.5em;
  --tag-inset-shadow-size: 1.1em;
  --tag-invalid-color: #D39494;
  --tag-invalid-bg: rgba(211, 148, 148, 0.5);
  --tag--min-width: 1ch;
  --tag--max-width: 100%;
  --tag-hide-transition: 0.3s;
  --tag-remove-bg: rgba(211, 148, 148, 0.3);
  --tag-remove-btn-color: black;
  --tag-remove-btn-bg: none;
  --tag-remove-btn-bg--hover: #c77777;
  --input-color: inherit;
  --placeholder-color: rgba(0, 0, 0, 0.4);
  --placeholder-color-focus: rgba(0, 0, 0, 0.25);
  --loader-size: .8em;
  --readonly-striped: 1;
  display: inline-flex;
  align-items: flex-start;
  flex-wrap: wrap;
  border: 1px solid var(--tags-border-color);
  padding: 0;
  line-height: 0;
  outline: none;
  position: relative;
  box-sizing: border-box;
  transition: 0.1s;
}
@keyframes tags--bump {
  30% {
    transform: scale(1.2);
  }
}
@keyframes rotateLoader {
  to {
    transform: rotate(1turn);
  }
}
.tagify:has([contenteditable=true]) {
  cursor: text;
}
.tagify:hover:not(.tagify--focus):not(.tagify--invalid) {
  --tags-border-color: var(--tags-hover-border-color);
}
.tagify[disabled] {
  background: var(--tags-disabled-bg);
  filter: saturate(0);
  opacity: 0.5;
  pointer-events: none;
}
.tagify[readonly].tagify--select,
.tagify[disabled].tagify--select {
  pointer-events: none;
}
.tagify[readonly]:not(.tagify--mix):not(.tagify--select),
.tagify[disabled]:not(.tagify--mix):not(.tagify--select) {
  cursor: default;
}
.tagify[readonly]:not(.tagify--mix):not(.tagify--select) > .tagify__input,
.tagify[disabled]:not(.tagify--mix):not(.tagify--select) > .tagify__input {
  visibility: hidden;
  width: 0;
  margin: 5px 0;
}
.tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div,
.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div {
  padding: var(--tag-pad);
}
.tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div::before,
.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div::before {
  animation: readonlyStyles 1s calc(-1s * (var(--readonly-striped) - 1)) paused;
}
@keyframes readonlyStyles {
  0% {
    background:
      linear-gradient(
        45deg,
        var(--tag-bg) 25%,
        transparent 25%,
        transparent 50%,
        var(--tag-bg) 50%,
        var(--tag-bg) 75%,
        transparent 75%,
        transparent) 0/5px 5px;
    box-shadow: none;
    filter: brightness(0.95);
  }
}
.tagify[readonly] .tagify__tag__removeBtn,
.tagify[disabled] .tagify__tag__removeBtn {
  display: none;
}
.tagify--loading .tagify__input > br:last-child {
  display: none;
}
.tagify--loading .tagify__input::before {
  content: none;
}
.tagify--loading .tagify__input::after {
  content: "";
  vertical-align: middle;
  opacity: 1;
  width: 0.7em;
  height: 0.7em;
  width: var(--loader-size);
  height: var(--loader-size);
  min-width: 0;
  border: 3px solid;
  border-color: #EEE #BBB #888 transparent;
  border-radius: 50%;
  animation: rotateLoader 0.4s infinite linear;
  content: "" !important;
  margin: -2px 0 -2px 0.5em;
}
.tagify--loading .tagify__input:empty::after {
  margin-left: 0;
}
.tagify + input,
.tagify + textarea {
  position: absolute !important;
  left: -9999em !important;
  transform: scale(0) !important;
}
.tagify__tag {
  display: inline-flex;
  align-items: center;
  max-width: var(--tag--max-width);
  margin-inline: 5px 0;
  margin-block: 5px;
  position: relative;
  z-index: 1;
  outline: none;
  line-height: normal;
  cursor: default;
  transition: 0.13s ease-out;
}
.tagify__tag > div {
  display: flex;
  flex: 1;
  vertical-align: top;
  box-sizing: border-box;
  max-width: 100%;
  padding: var(--tag-pad);
  color: var(--tag-text-color);
  line-height: inherit;
  border-radius: var(--tag-border-radius);
  white-space: nowrap;
  transition: 0.13s ease-out;
}
.tagify__tag > div > * {
  white-space: pre-wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  min-width: var(--tag--min-width);
  max-width: var(--tag--max-width);
  transition: 0.8s ease, 0.1s color;
}
.tagify__tag > div > *[contenteditable] {
  display: block;
  outline: none;
  -webkit-user-select: text;
  user-select: text;
  cursor: text;
  margin: -2px;
  padding: 2px;
  max-width: 350px;
}
.tagify__tag > div > *:only-child {
  width: 100%;
}
.tagify__tag > div::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: var(--tag-bg-inset, 0);
  z-index: -1;
  pointer-events: none;
  transition: 120ms ease;
  animation: tags--bump 0.3s ease-out 1;
  box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-bg) inset;
}
.tagify__tag:hover:not([readonly]) div::before,
.tagify__tag:focus div::before {
  --tag-bg-inset: -2.5px;
  --tag-bg: var(--tag-hover);
}
.tagify__tag--loading {
  pointer-events: none;
}
.tagify__tag--loading .tagify__tag__removeBtn {
  display: none;
}
.tagify__tag--loading::after {
  --loader-size: .4em;
  content: "";
  vertical-align: middle;
  opacity: 1;
  width: 0.7em;
  height: 0.7em;
  width: var(--loader-size);
  height: var(--loader-size);
  min-width: 0;
  border: 3px solid;
  border-color: #EEE #BBB #888 transparent;
  border-radius: 50%;
  animation: rotateLoader 0.4s infinite linear;
  margin: 0 0.5em 0 -0.1em;
}
.tagify__tag--flash div::before {
  animation: none;
}
.tagify__tag--hide {
  width: 0 !important;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  opacity: 0;
  transform: scale(0);
  transition: var(--tag-hide-transition);
  pointer-events: none;
}
.tagify__tag--hide > div > * {
  white-space: nowrap;
}
.tagify__tag.tagify--noAnim > div::before {
  animation: none;
}
.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div > span {
  opacity: 0.5;
}
.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div::before {
  --tag-bg: var(--tag-invalid-bg);
  transition: 0.2s;
}
.tagify__tag[readonly] .tagify__tag__removeBtn {
  display: none;
}
.tagify__tag[readonly] > div::before {
  animation: readonlyStyles 1s calc(-1s * (var(--readonly-striped) - 1)) paused;
}
@keyframes readonlyStyles {
  0% {
    background:
      linear-gradient(
        45deg,
        var(--tag-bg) 25%,
        transparent 25%,
        transparent 50%,
        var(--tag-bg) 50%,
        var(--tag-bg) 75%,
        transparent 75%,
        transparent) 0/5px 5px;
    box-shadow: none;
    filter: brightness(0.95);
  }
}
.tagify__tag--editable > div {
  color: var(--tag-text-color--edit);
}
.tagify__tag--editable > div::before {
  box-shadow: 0 0 0 2px var(--tag-hover) inset !important;
}
.tagify__tag--editable > .tagify__tag__removeBtn {
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%) translateX(5px);
}
.tagify__tag--editable.tagify--invalid > div::before {
  box-shadow: 0 0 0 2px var(--tag-invalid-color) inset !important;
}
.tagify__tag__removeBtn {
  order: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  font: 14px/1 Arial;
  background: var(--tag-remove-btn-bg);
  color: var(--tag-remove-btn-color);
  width: 14px;
  height: 14px;
  margin-inline: auto 4.6666666667px;
  overflow: hidden;
  transition: 0.2s ease-out;
}
.tagify__tag__removeBtn::after {
  content: "\d7";
  transition: 0.3s, color 0s;
}
.tagify__tag__removeBtn:hover {
  color: white;
  background: var(--tag-remove-btn-bg--hover);
}
.tagify__tag__removeBtn:hover + div > span {
  opacity: 0.5;
}
.tagify__tag__removeBtn:hover + div::before {
  box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-remove-bg, rgba(211, 148, 148, 0.3)) inset !important;
  transition: box-shadow 0.2s;
}
.tagify:not(.tagify--mix) .tagify__input br {
  display: none;
}
.tagify:not(.tagify--mix) .tagify__input * {
  display: inline;
  white-space: nowrap;
}
.tagify__input {
  flex-grow: 1;
  display: inline-block;
  min-width: 110px;
  margin: 5px;
  padding: var(--tag-pad);
  line-height: normal;
  position: relative;
  white-space: pre-wrap;
  color: var(--input-color);
  box-sizing: inherit;
  overflow: hidden;
}
@-moz-document url-prefix() {
}
.tagify__input:focus {
  outline: none;
}
.tagify__input:focus::before {
  transition: 0.2s ease-out;
  opacity: 0;
  transform: translatex(6px);
}
@supports (-ms-ime-align: auto) {
  .tagify__input:focus::before {
    display: none;
  }
}
.tagify__input:focus:empty::before {
  transition: 0.2s ease-out;
  opacity: 1;
  transform: none;
  color: rgba(0, 0, 0, 0.25);
  color: var(--placeholder-color-focus);
}
@-moz-document url-prefix() {
  .tagify__input:focus:empty::after {
    display: none;
  }
}
.tagify__input::before {
  content: attr(data-placeholder);
  width: 100%;
  height: 100%;
  margin: auto 0;
  z-index: 1;
  color: var(--placeholder-color);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  position: absolute;
}
.tagify__input::after {
  content: attr(data-suggest);
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  min-width: calc(100% - 1.5em);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre;
  color: var(--tag-text-color);
  opacity: 0.3;
  pointer-events: none;
  max-width: 100px;
}
.tagify__input .tagify__tag {
  margin: 0 1px;
}
.tagify--mix {
  display: block;
}
.tagify--mix .tagify__input {
  padding: 5px;
  margin: 0;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  display: block;
}
.tagify--mix .tagify__input::before {
  height: auto;
  display: none;
  line-height: inherit;
}
.tagify--mix .tagify__input::after {
  content: none;
}
.tagify--select {
  cursor: default;
}
.tagify--select::after {
  content: ">";
  opacity: 0.5;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  font: 16px monospace;
  line-height: 8px;
  height: 8px;
  pointer-events: none;
  transform: translate(-150%, -50%) scaleX(1.2) rotate(90deg);
  transition: 0.2s ease-in-out;
}
.tagify--select[aria-expanded=true]::after {
  transform: translate(-150%, -50%) rotate(270deg) scaleY(1.2);
}
.tagify--select[aria-expanded=true] .tagify__tag__removeBtn {
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%) translateX(5px);
}
.tagify--select .tagify__tag {
  flex: 1;
  max-width: none;
  margin-inline-end: 2em;
  margin-block: 0;
  padding-block: 5px;
  cursor: text;
}
.tagify--select .tagify__tag div::before {
  display: none;
}
.tagify--select .tagify__tag + .tagify__input {
  display: none;
}
.tagify--empty .tagify__input::before {
  transition: 0.2s ease-out;
  opacity: 1;
  transform: none;
  display: inline-block;
  width: auto;
}
.tagify--mix .tagify--empty .tagify__input::before {
  display: inline-block;
}
.tagify--focus {
  --tags-border-color: var(--tags-focus-border-color);
  transition: 0s;
}
.tagify--invalid {
  --tags-border-color: #D39494;
}
.tagify__dropdown {
  position: absolute;
  z-index: 9999;
  transform: translateY(-1px);
  border-top: 1px solid var(--tagify-dd-color-primary);
  overflow: hidden;
}
.tagify__dropdown[dir=rtl] {
  transform: translate(-100%, -1px);
}
.tagify__dropdown[placement=top] {
  margin-top: 0;
  transform: translateY(-100%);
}
.tagify__dropdown[placement=top] .tagify__dropdown__wrapper {
  border-top-width: 1.1px;
  border-bottom-width: 0;
}
.tagify__dropdown[position=text] {
  box-shadow: 0 0 0 3px rgba(var(--tagify-dd-color-primary), 0.1);
  font-size: 0.9em;
}
.tagify__dropdown[position=text] .tagify__dropdown__wrapper {
  border-width: 1px;
}
.tagify__dropdown__wrapper {
  scroll-behavior: auto;
  max-height: var(--tagify-dd-max-height);
  overflow: hidden;
  overflow-x: hidden;
  color: var(--tagify-dd-text-color);
  background: var(--tagify-dd-bg-color);
  border: 1px solid;
  border-color: var(--tagify-dd-color-primary);
  border-bottom-width: 1.5px;
  border-top-width: 0;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.2);
  transition: 0.3s cubic-bezier(0.5, 0, 0.3, 1), transform 0.15s;
  animation: dd-wrapper-show 0s 0.3s forwards;
}
@keyframes dd-wrapper-show {
  to {
    overflow-y: auto;
  }
}
.tagify__dropdown__header:empty {
  display: none;
}
.tagify__dropdown__footer {
  display: inline-block;
  margin-top: 0.5em;
  padding: var(--tagify-dd-item-pad);
  font-size: 0.7em;
  font-style: italic;
  opacity: 0.5;
}
.tagify__dropdown__footer:empty {
  display: none;
}
.tagify__dropdown--initial .tagify__dropdown__wrapper {
  max-height: 20px;
  transform: translateY(-1em);
}
.tagify__dropdown--initial[placement=top] .tagify__dropdown__wrapper {
  transform: translateY(2em);
}
.tagify__dropdown__item {
  box-sizing: border-box;
  padding: var(--tagify-dd-item-pad);
  margin: 1px;
  white-space: pre-wrap;
  cursor: pointer;
  border-radius: 2px;
  position: relative;
  outline: none;
  max-height: 60px;
  max-width: 100%;
  line-height: normal;
  position: relative;
}
.tagify__dropdown__item--active {
  background: var(--tagify-dd-color-primary);
  color: white;
}
.tagify__dropdown__item:active {
  filter: brightness(105%);
}
.tagify__dropdown__item--hidden {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0 1px;
  pointer-events: none;
  overflow: hidden;
  max-height: 0;
  transition: var(--tagify-dd-item--hidden-duration, 0.3s) !important;
}
.tagify__dropdown__item--hidden > * {
  transform: translateY(-100%);
  opacity: 0;
  transition: inherit;
}
.tagify__dropdown__item--selected::before {
  content: "\2713";
  font-family: monospace;
  position: absolute;
  inset-inline-start: 6px;
  text-indent: 0;
  line-height: 1.1;
}
.tagify__dropdown:has(.tagify__dropdown__item--selected) .tagify__dropdown__item {
  text-indent: 1em;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.btn-sm {
  font-size: 12px !important;
  border-radius: 6px !important;
}
.date {
  width: 236px;
}
[data-pc-theme=dark] .choices[data-type*=select-one] .choices__input {
  color: white !important;
}
.boxes {
  margin: auto;
  margin-top: 18% !important;
  --size: 32px;
  --duration: 800ms;
  height: calc(var(--size) * 2);
  width: calc(var(--size) * 3);
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  margin-top: calc(var(--size) * 1.5 * -1);
  transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}
.boxes .box {
  width: var(--size);
  height: var(--size);
  top: 0;
  left: 0;
  position: absolute;
  transform-style: preserve-3d;
}
.boxes .box:nth-child(1) {
  transform: translate(100%, 0);
  animation: box1 var(--duration) linear infinite;
}
.boxes .box:nth-child(2) {
  transform: translate(0, 100%);
  animation: box2 var(--duration) linear infinite;
}
.boxes .box:nth-child(3) {
  transform: translate(100%, 100%);
  animation: box3 var(--duration) linear infinite;
}
.boxes .box:nth-child(4) {
  transform: translate(200%, 0);
  animation: box4 var(--duration) linear infinite;
}
.boxes .box > div {
  --background: #f88d11;
  --top: auto;
  --right: auto;
  --bottom: auto;
  --left: auto;
  --translateZ: calc(var(--size) / 2);
  --rotateY: 0deg;
  --rotateX: 0deg;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--background);
  top: var(--top);
  right: var(--right);
  bottom: var(--bottom);
  left: var(--left);
  transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
}
.boxes .box > div:nth-child(1) {
  --top: 0;
  --left: 0;
}
.boxes .box > div:nth-child(2) {
  --background: #b76505;
  --right: 0;
  --rotateY: 90deg;
}
.boxes .box > div:nth-child(3) {
  --background: #e98007;
  --rotateX: -90deg;
}
.boxes .box > div:nth-child(4) {
  --background: #DBE3F4;
  --top: 0;
  --left: 0;
  --translateZ: calc(var(--size) * 3 * -1);
}
@keyframes box1 {
  0%, 50% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(200%, 0);
  }
}
@keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@keyframes box3 {
  0%, 50% {
    transform: translate(100%, 100%);
  }
  100% {
    transform: translate(0, 100%);
  }
}
@keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }
  50% {
    transform: translate(200%, 100%);
  }
  100% {
    transform: translate(100%, 100%);
  }
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.274), 0 1px 2px -1px rgb(0 0 0 / .1) !important;
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color) !important;
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),
    var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),
    var(--tw-shadow) !important;
}
.text-shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.247), 0 1px 2px -1px rgb(0 0 0 / .1) !important;
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color) !important;
  text-shadow:
    var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),
    var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),
    var(--tw-shadow) !important;
}
.boxes {
  margin: auto;
  margin-top: 18% !important;
  --size: 32px;
  --duration: 800ms;
  height: calc(var(--size) * 2);
  width: calc(var(--size) * 3);
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  margin-top: calc(var(--size) * 1.5 * -1);
  transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}
.boxes .box {
  width: var(--size);
  height: var(--size);
  top: 0;
  left: 0;
  position: absolute;
  transform-style: preserve-3d;
}
.boxes .box:nth-child(1) {
  transform: translate(100%, 0);
  animation: box1 var(--duration) linear infinite;
}
.boxes .box:nth-child(2) {
  transform: translate(0, 100%);
  animation: box2 var(--duration) linear infinite;
}
.boxes .box:nth-child(3) {
  transform: translate(100%, 100%);
  animation: box3 var(--duration) linear infinite;
}
.boxes .box:nth-child(4) {
  transform: translate(200%, 0);
  animation: box4 var(--duration) linear infinite;
}
.boxes .box > div {
  --background: #f88d11;
  --top: auto;
  --right: auto;
  --bottom: auto;
  --left: auto;
  --translateZ: calc(var(--size) / 2);
  --rotateY: 0deg;
  --rotateX: 0deg;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--background);
  top: var(--top);
  right: var(--right);
  bottom: var(--bottom);
  left: var(--left);
  transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
}
.boxes .box > div:nth-child(1) {
  --top: 0;
  --left: 0;
}
.boxes .box > div:nth-child(2) {
  --background: #b76505;
  --right: 0;
  --rotateY: 90deg;
}
.boxes .box > div:nth-child(3) {
  --background: #e98007;
  --rotateX: -90deg;
}
.boxes .box > div:nth-child(4) {
  --background: #DBE3F4;
  --top: 0;
  --left: 0;
  --translateZ: calc(var(--size) * 3 * -1);
}
@keyframes box1 {
  0%, 50% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(200%, 0);
  }
}
@keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@keyframes box3 {
  0%, 50% {
    transform: translate(100%, 100%);
  }
  100% {
    transform: translate(0, 100%);
  }
}
@keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }
  50% {
    transform: translate(200%, 100%);
  }
  100% {
    transform: translate(100%, 100%);
  }
}
.cursor-pointer {
  cursor: pointer !important;
}
.offcanvas,
.offcanvas-xxl,
.offcanvas-xl,
.offcanvas-lg,
.offcanvas-md,
.offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 360px;
  --bs-offcanvas-height: 52vh;
  --bs-offcanvas-padding-x: 1.25rem;
  --bs-offcanvas-padding-y: 1.25rem;
  --bs-offcanvas-color: ;
  --bs-offcanvas-bg: #ffffff;
  --bs-offcanvas-border-width: 1px;
  --bs-offcanvas-border-color: rgba(0, 0, 0, 0.2);
  --bs-offcanvas-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  --bs-offcanvas-transition: transform 0.3s ease-in-out;
  --bs-offcanvas-title-line-height: 1.5;
}
.form-search {
  position: relative;
}
.form-search i {
  z-index: 999 !important;
}
.input-group .form-control {
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}
.width-20 {
  width: 20% !important;
}
.width-30 {
  width: 30% !important;
}
.width-32 {
  width: 32% !important;
}
.width-36 {
  width: 36% !important;
}
.width-40 {
  width: 40% !important;
}
.width-90 {
  width: 90% !important;
}
.width-95 {
  width: 95% !important;
}
.width-100 {
  width: 100% !important;
}
.f-right {
  float: right !important;
}
.f-left {
  float: left !important;
}
.dropzone {
  border: 1px dashed grey !important;
}
.asterisk:after {
  content: " *";
  color: #d11b1b;
}
.error-msg {
  color: #d11b1b;
  font-size: 14px;
  font-weight: 400;
}
.bdrb {
  border-bottom: 1px solid #e39c32;
  border-bottom-style: dashed;
  padding: 1px 0px;
}
.bdr-gray {
  border-top: 1px dashed rgba(128, 128, 128, 0.3215686275);
}
button.bootbox-close-button.close {
  display: none !important;
}
.scroll-overflow {
  max-height: 300px;
  overflow-y: scroll;
}
.form-search.input-group {
  z-index: 0;
}
.select-wrapper {
  height: 50px;
  overflow-y: visible;
}
.select {
  width: 100%;
  min-height: 50px;
  border-radius: 25px;
  border-color: #555;
  padding: 10px;
}
.pagination-div {
  width: 100%;
  height: 60px;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 10px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #42484d;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #424b53;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #ff7200 !important;
  border-color: #ff7200 !important;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}
.timeline {
  position: relative;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.timeline:before {
  background-color: #eff2f7;
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  top: 0;
  bottom: 0;
  left: 4px;
}
.timeline-item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2rem;
  margin: 0.5rem 0;
}
.timeline-item:first-child:before,
.timeline-item:last-child:before {
  content: "";
  position: absolute;
  background: #fff;
  width: 1px;
  left: 0.25rem;
}
.timeline-item:first-child {
  margin-top: 0;
}
.timeline-item:first-child:before {
  top: 0;
  height: 0.5rem;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item:last-child:before {
  top: 0.5rem;
  bottom: 0;
}
.timeline-badge {
  position: absolute;
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
  left: 1px;
  top: 0.5rem;
  border-radius: 100%;
  border: 1px solid #fff;
  background: #adb5bd;
}
.timeline-time {
  white-space: nowrap;
  margin-left: auto;
  color: #8f8794;
  font-size: 87.5%;
}
.timeline__item:after {
  background: #fff !important;
}
.timeline__content {
  background-color: #fff;
  border-radius: 10px;
  display: block;
  padding: 1.25rem;
  position: relative;
}
.cbp_tmtimeline {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.cbp_tmtimeline:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e4e6e8;
  left: 20%;
  margin-left: -6px;
}
.cbp_tmtimeline > li {
  position: relative;
}
.cbp_tmtimeline > li:first-child .cbp_tmtime span.large {
  font-size: 17px !important;
  font-weight: 700;
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmtime span:last-child {
  font-size: 13px;
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
  background: #fff;
}
[data-pc-theme=dark] .cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
  background: transparent;
}
[data-pc-theme=dark] .cbp_tmtimeline > li:nth-child(even) .cbp_tmlabel {
  background: transparent;
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
  border-right-color: #ffffff;
}
[data-pc-theme=dark] .cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
  border-right-color: #19212a;
}
[data-pc-theme=dark] .cbp_tmtimeline > li:nth-child(even) .cbp_tmlabel:after {
  border-right-color: #19212a;
}
[data-pc-theme=dark] .text-muted {
  color: #c0c2c5 !important;
}
.cbp_tmtimeline > li .empty span {
  color: rgba(0, 0, 0, 0.5);
}
.cbp_tmtimeline > li .cbp_tmtime {
  display: block;
  width: 21%;
  padding-right: 70px;
  position: absolute;
}
.cbp_tmtimeline > li .cbp_tmtime span {
  display: block;
  text-align: right;
}
.cbp_tmtimeline > li .cbp_tmtime span:first-child {
  font-size: 15px;
  font-weight: 700;
}
.cbp_tmtimeline > li .cbp_tmtime span:last-child {
  font-size: 14px;
}
.cbp_tmtimeline > li .cbp_tmlabel {
  margin: 0 0 30px 25%;
  background: #fff;
  padding: 1.2em;
  position: relative;
  box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15) !important;
}
.cbp_tmtimeline > li .cbp_tmlabel:after {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #ffffff;
  border-width: 10px;
  top: 10px;
}
.cbp_tmtimeline > li .cbp_tmlabel blockquote {
  font-size: 16px;
}
.cbp_tmtimeline > li .cbp_tmlabel .map-checkin {
  border: 5px solid rgba(235, 235, 235, 0.2);
  -moz-box-shadow: 0px 0px 0px 1px #ebebeb;
  -webkit-box-shadow: 0px 0px 0px 1px #ebebeb;
  box-shadow: 0px 0px 0px 1px #ebebeb;
  background: #3d3780 !important;
}
.cbp_tmtimeline > li .cbp_tmlabel h2 {
  margin: 0px;
  padding: 0 0 5px 0;
  line-height: 26px;
  font-size: 18px;
  font-weight: 600;
}
.cbp_tmtimeline > li .cbp_tmlabel h2 a {
  font-size: 20px;
}
.cbp_tmtimeline > li .cbp_tmlabel h2 a:hover {
  text-decoration: none;
}
.cbp_tmtimeline > li .cbp_tmlabel h2 span {
  font-size: 16px;
}
.cbp_tmtimeline > li .cbp_tmlabel p {
  margin-bottom: 0;
}
.cbp_tmtimeline > li .cbp_tmicon {
  width: 24px;
  height: 24px;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 15px;
  line-height: 26px;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #fff;
  background: #46a4da;
  border-radius: 50%;
  text-align: center;
  left: 20%;
  top: 0;
  margin: 0 0 0 -25px;
}
.cbp_tmtimeline .map {
  padding-top: 0 !important;
}
.timelineleft {
  position: relative;
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
.timelineleft:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(152, 166, 173, 0.3);
  left: 31px;
  margin: 0;
  border-radius: 2px;
}
.timelineleft > li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 15px;
}
.timelinelft > li:before,
.timelineleft > li:after {
  content: " ";
  display: table;
}
.timelineleft > .timeleft-label > span {
  font-weight: 600;
  padding: 5px;
  display: inline-block;
  background-color: #1753fc;
  color: #ffffff;
  border-radius: 0px;
}
.timelineleft > li:after {
  clear: both;
}
.timelineleft > li > .timelineleft-item {
  -webkit-box-shadow: 0 1px 1px rgba(107, 122, 144, 0.1);
  box-shadow: 0 2px 17px 2px rgba(208, 201, 243, 0.5);
  margin-top: 0;
  background: #fff;
  color: #444;
  margin-left: 60px;
  margin-right: 15px;
  padding: 0;
  position: relative;
  border-radius: 7px;
}
.timelineleft > li > .timelineleft-item > .time {
  color: #999;
  float: right;
  padding: 12px;
  font-size: 12px;
}
.timelineleft > li > .timelineleft-item > .timelineleft-header {
  margin: 0;
  color: #555;
  border-bottom: 1px solid rgba(107, 122, 144, 0.1);
  padding: 0.75rem 1.25rem;
  font-size: 20px;
  line-height: 1.1;
}
.timelineleft > li > .timelineleft-item > .timelineleft-header > a {
  font-weight: 500;
  font-size: 18px;
}
.timelineleft-body img {
  width: 150px;
  height: 100px;
}
.timelineleft > li > .timelineleft-item > .timelineleft-body,
.timelineleft > li > .timelineleft-item > .timelineleft-footer {
  padding: 0.75rem 1.25rem;
}
.timelineleft-body {
  font-size: 14px;
}
.timelineleft > li > .fa,
.timelineleft > li > .glyphicon,
.timelineleft > li > .ion {
  width: 30px;
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  position: absolute;
  color: #fff;
  background: #1753fc;
  border-radius: 50%;
  text-align: center;
  left: 18px;
  top: 0;
}
.timeline {
  position: relative;
  padding: 4px 0 0 0;
  margin-top: 22px;
  list-style: none;
}
.timeline > li:nth-child(even) {
  position: relative;
  margin-bottom: 50px;
  height: 180px;
  right: -100px;
}
.timeline > li:nth-child(odd) {
  position: relative;
  margin-bottom: 50px;
  height: 180px;
  left: -100px;
}
.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
  min-height: 170px;
}
.timeline > li .timeline-panel {
  position: relative;
  float: left;
  width: 41%;
  padding: 0 20px 20px 30px;
  text-align: right;
}
.timeline > li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li .timeline-image {
  z-index: 10;
  position: absolute;
  left: 50%;
  width: 150px;
  height: 150px;
  margin-left: -80px;
  overflow: hidden;
}
.timeline > li .timeline-image h4 {
  margin-top: 12px;
  font-size: 10px;
  line-height: 14px;
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  padding: 0 30px 20px 20px;
  text-align: left;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li:last-child {
  margin-bottom: 0;
}
.timeline .timeline-heading h4 {
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 0;
  font-weight: 600;
}
.timeline .timeline-heading h4.subheading {
  margin: 0;
  padding: 0;
  text-transform: none;
  font-size: 16px;
  font-weight: 400;
  color: #8492a6;
}
.timeline .timeline-body > p,
.timeline .timeline-body > ul {
  margin-bottom: 0;
  color: #808080;
}
.timeline > li:nth-child(odd) .line:before {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 690px;
  width: 4px;
  height: 340px;
  -ms-transform: rotate(-44deg);
  -webkit-transform: rotate(-44deg);
  transform: rotate(-44deg);
}
.timeline > li:nth-child(even) .line:before {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 450px;
  width: 4px;
  height: 340px;
  -ms-transform: rotate(44deg);
  -webkit-transform: rotate(44deg);
  transform: rotate(44deg);
}
.wrapper {
  position: relative;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
}
.wrapper .tooltip {
  background: #e85c20;
  bottom: 100%;
  color: #fff;
  display: block;
  left: -25px;
  margin-bottom: 15px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  width: 180px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}
.wrapper .tooltip:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}
.wrapper .tooltip:after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid #e85c20 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  left: 16%;
  margin-left: -13px;
  position: absolute;
  width: 0;
}
.wrapper:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.lte8 .wrapper .tooltip {
  display: none;
}
.lte8 .wrapper:hover .tooltip {
  display: block;
}
.cbp_tmtimeline {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.cbp_tmtimeline:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0px;
  width: 3px;
  background: #e4e6e8;
  left: 20%;
  margin-left: -6px;
}
.cbp_tmtimeline > li {
  position: relative;
}
.cbp_tmtimeline > li:first-child .cbp_tmtime span.large {
  font-size: 17px !important;
  font-weight: 700;
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmtime span:last-child {
  font-size: 13px;
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
  background: #fff;
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
  border-right-color: #ffffff;
}
.cbp_tmtimeline > li .empty span {
  color: rgba(0, 0, 0, 0.5);
}
.cbp_tmtimeline > li .cbp_tmtime {
  display: block;
  width: 21%;
  padding-right: 70px;
  position: absolute;
}
.cbp_tmtimeline > li .cbp_tmtime span {
  display: block;
  text-align: right;
}
.cbp_tmtimeline > li .cbp_tmtime span:first-child {
  font-size: 15px;
  font-weight: 700;
}
.cbp_tmtimeline > li .cbp_tmtime span:last-child {
  font-size: 14px;
}
.cbp_tmtimeline > li .cbp_tmlabel {
  margin: 0 0 30px 25%;
  background: #fff;
  padding: 1.2em;
  position: relative;
  box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15) !important;
}
.cbp_tmtimeline > li .cbp_tmlabel:after {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #ffffff;
  border-width: 10px;
  top: 10px;
}
.cbp_tmtimeline > li .cbp_tmlabel blockquote {
  font-size: 16px;
}
.cbp_tmtimeline > li .cbp_tmlabel .map-checkin {
  border: 5px solid rgba(235, 235, 235, 0.2);
  -moz-box-shadow: 0px 0px 0px 1px #ebebeb;
  -webkit-box-shadow: 0px 0px 0px 1px #ebebeb;
  box-shadow: 0px 0px 0px 1px #ebebeb;
  background: #3d3780 !important;
}
.cbp_tmtimeline > li .cbp_tmlabel h2 {
  margin: 0px;
  padding: 0 0 5px 0;
  line-height: 26px;
  font-size: 18px;
  font-weight: 600;
}
.cbp_tmtimeline > li .cbp_tmlabel h2 a {
  font-size: 20px;
}
.cbp_tmtimeline > li .cbp_tmlabel h2 a:hover {
  text-decoration: none;
}
.cbp_tmtimeline > li .cbp_tmlabel h2 span {
  font-size: 16px;
}
.cbp_tmtimeline > li .cbp_tmlabel p {
  margin-bottom: 0;
}
.cbp_tmtimeline > li .cbp_tmicon {
  width: 24px;
  height: 24px;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 15px;
  line-height: 26px;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  left: 20%;
  top: 0;
  margin: 0 0 0 -25px;
}
.cbp_tmtimeline .map {
  padding-top: 0 !important;
}
.timelineleft {
  position: relative;
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
.timelineleft:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(152, 166, 173, 0.3);
  left: 31px;
  margin: 0;
  border-radius: 2px;
}
.timelineleft > li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 15px;
}
.timelinelft > li:before,
.timelineleft > li:after {
  content: " ";
  display: table;
}
.timelineleft > .timeleft-label > span {
  font-weight: 600;
  padding: 5px;
  display: inline-block;
  background-color: #1753fc;
  color: #ffffff;
  border-radius: 0px;
}
.timelineleft > li:after {
  clear: both;
}
.timelineleft > li > .timelineleft-item {
  -webkit-box-shadow: 0 1px 1px rgba(107, 122, 144, 0.1);
  box-shadow: 0 2px 17px 2px rgba(208, 201, 243, 0.5);
  margin-top: 0;
  background: #fff;
  color: #444;
  margin-left: 60px;
  margin-right: 15px;
  padding: 0;
  position: relative;
  border-radius: 7px;
}
.timelineleft > li > .timelineleft-item > .time {
  color: #999;
  float: right;
  padding: 12px;
  font-size: 12px;
}
.timelineleft > li > .timelineleft-item > .timelineleft-header {
  margin: 0;
  color: #555;
  border-bottom: 1px solid rgba(107, 122, 144, 0.1);
  padding: 0.75rem 1.25rem;
  font-size: 20px;
  line-height: 1.1;
}
.timelineleft > li > .timelineleft-item > .timelineleft-header > a {
  font-weight: 500;
  font-size: 18px;
}
.timelineleft-body img {
  width: 150px;
  height: 100px;
}
.timelineleft > li > .timelineleft-item > .timelineleft-body,
.timelineleft > li > .timelineleft-item > .timelineleft-footer {
  padding: 0.75rem 1.25rem;
}
.timelineleft-body {
  font-size: 14px;
}
.timelineleft > li > .fa,
.timelineleft > li > .glyphicon,
.timelineleft > li > .ion {
  width: 30px;
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  position: absolute;
  color: #fff;
  background: #1753fc;
  border-radius: 50%;
  text-align: center;
  left: 18px;
  top: 0;
}
.timeline {
  position: relative;
  padding: 4px 0 0 0;
  margin-top: 22px;
  list-style: none;
}
.timeline > li:nth-child(even) {
  position: relative;
  margin-bottom: 50px;
  height: 180px;
  right: -100px;
}
.timeline > li:nth-child(odd) {
  position: relative;
  margin-bottom: 50px;
  height: 180px;
  left: -100px;
}
.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
  min-height: 170px;
}
.timeline > li .timeline-panel {
  position: relative;
  float: left;
  width: 41%;
  padding: 0 20px 20px 30px;
  text-align: right;
}
.timeline > li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li .timeline-image {
  z-index: 10;
  position: absolute;
  left: 50%;
  width: 150px;
  height: 150px;
  margin-left: -80px;
  overflow: hidden;
}
.timeline > li .timeline-image h4 {
  margin-top: 12px;
  font-size: 10px;
  line-height: 14px;
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  padding: 0 30px 20px 20px;
  text-align: left;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li:last-child {
  margin-bottom: 0;
}
.timeline .timeline-heading h4 {
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 0;
  font-weight: 600;
}
.timeline .timeline-heading h4.subheading {
  margin: 0;
  padding: 0;
  text-transform: none;
  font-size: 16px;
  font-weight: 400;
  color: #8492a6;
}
.timeline .timeline-body > p,
.timeline .timeline-body > ul {
  margin-bottom: 0;
  color: #808080;
}
.timeline > li:nth-child(odd) .line:before {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 690px;
  width: 4px;
  height: 340px;
  -ms-transform: rotate(-44deg);
  -webkit-transform: rotate(-44deg);
  transform: rotate(-44deg);
}
.timeline > li:nth-child(even) .line:before {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 450px;
  width: 4px;
  height: 340px;
  -ms-transform: rotate(44deg);
  -webkit-transform: rotate(44deg);
  transform: rotate(44deg);
}
* {
  scrollbar-width: thin;
}
.choices__list--dropdown {
  z-index: 9999;
}
.btn-select {
  width: 100%;
  height: 44px;
  border-radius: 7px;
  background-color: #fff;
  border: 1px solid #ccc;
}
.btn-select:hover li {
  margin-left: 0px;
}
.btn-select:hover {
  background-color: #F4F3F3;
  border: 1px solid transparent;
  box-shadow: inset 0 0px 0px 1px #ccc;
}
.btn-select:focus {
  outline: none;
}
.vodiapicker {
  display: none;
}
.salt {
  cursor: pointer;
  width: 3.125rem;
  height: 1.75rem;
  border-radius: 0.25rem;
}
.btn-select li {
  list-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  padding-left: 10px;
  justify-content: space-between;
  padding-right: 10px;
}
#a li {
  list-style: none;
  padding-top: 10px;
  display: flex;
  padding-left: 10px;
  justify-content: space-between;
  padding-right: 10px;
  cursor: pointer;
}
.hex {
  margin-top: 15px;
  width: 52px;
  cursor: pointer;
  height: 30px;
  background-color: #555;
  border-color: #555;
  position: relative;
  display: inline-block;
}
.hex:before {
  content: " ";
  width: 0;
  height: 0;
  border-bottom: 15px solid;
  border-color: inherit;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  position: absolute;
  top: -15px;
}
.hex:after {
  content: "";
  width: 0;
  position: absolute;
  bottom: -15px;
  border-top: 15px solid;
  border-color: inherit;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
}
.mapboxgl-canvas {
  width: 100% !important;
}
.table-card .card-body,
.table-body.card-body {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.form-select,
.form-control {
  line-height: 1 !important;
  max-height: 44px;
}
.error-msg {
  color: #d11b1b;
  font-size: 14px;
  font-weight: 400;
}
[data-pc-theme=dark] .card {
  --bs-card-border-color: #303f50;
  --bs-card-bg: #1b232d;
}
[data-pc-theme=dark] .badge.bg-light-primary {
  background: #ff7200;
  color: #ffffff;
  border-color: #ff7200;
}
[data-pc-theme=dark] .bg-light-primary {
  background: #ff7200;
  color: #ffffff;
  border-color: #ff7200;
}
[data-pc-theme=dark] .list-group {
  --bs-list-group-border-color: #303f50;
}
[data-pc-theme=dark] .daterangepicker,
[data-pc-theme=dark] .daterangepicker .calendar-table {
  background-color: #1b232d;
  border: 1px solid #303f50;
}
[data-pc-theme=dark] .daterangepicker td.off,
[data-pc-theme=dark] .daterangepicker td.off.in-range,
[data-pc-theme=dark] .daterangepicker td.off.start-date,
[data-pc-theme=dark] .daterangepicker td.off.end-date {
  background-color: transparent;
  border-color: transparent;
  color: #999;
}
[data-pc-theme=dark] .pagination {
  background-color: transparent !important;
  border: 1px solid #303f50 !important;
}
[data-pc-theme=dark] .pagination li a {
  background-color: transparent !important;
  border: 1px solid #303f50 !important;
}
[data-pc-theme=dark] .pagination > .active > a,
[data-pc-theme=dark] .pagination > .active > span,
[data-pc-theme=dark] .pagination > .active > a:hover,
[data-pc-theme=dark] .pagination > .active > span:hover,
[data-pc-theme=dark] .pagination > .active > a:focus,
[data-pc-theme=dark] .pagination > .active > span:focus {
  background: #ff7200 !important;
  color: #999;
  border-color: #ff7200 !important;
}
[data-pc-theme=dark] .form-select-sm {
  background-color: #263240;
  border-color: #303f50 !important;
  color: #999;
}
.h-100 {
  height: 100% !important;
}
.pc-header .dropdown-user-profile {
  min-width: 284px !important;
  max-width: 100%;
}
.no-arrow-btn {
  display: inline-block !important;
  vertical-align: top !important;
  font-size: 14px !important;
  min-height: 46px !important;
  border-radius: 0% !important;
}
.text-align-last-center {
  text-align-last: center;
}
.border-none {
  border-right: none !important;
  border-left: none !important;
  border-top: none !important;
}
[data-pc-direction=ltr] .start-2 {
  left: 3% !important;
}
[data-pc-direction=ltr] .end-2 {
  right: 2% !important;
}
[data-pc-direction=ltr] .start-5 {
  left: 5% !important;
}
[data-pc-direction=ltr] .end-5 {
  right: 5% !important;
}
.z-index-999 {
  z-index: 999 !important;
}
#spot {
  min-width: 370px !important;
}
#spot .choices__inner {
  min-height: 36px !important;
}
#spot .choices__input {
  display: none !important;
}
.origin,
.destination {
  width: 100%;
}
.origin .choices__inner {
  border-top-right-radius: 0%;
  border-bottom-right-radius: 0%;
  min-height: 60px !important;
  padding: 16.5px 16.5px 3.75px;
}
.destination .choices__inner {
  border-top-left-radius: 0%;
  border-bottom-left-radius: 0%;
  min-height: 60px !important;
  padding: 16.5px 16.5px 3.75px;
}
.containerType .choices__inner {
  min-height: 60px !important;
  padding: 16.5px 16.5px 3.75px;
}
.choices {
  margin-bottom: 0 !important;
}
.choices__inner {
  min-height: 46px !important;
}
button:disabled,
button[disabled],
input:disabled,
input[disabled],
select:disabled,
select[disabled] {
  cursor: not-allowed;
  pointer-events: visible !important;
}
.was-validated .ng-invalid {
  border-color: #d11b1b !important;
  padding-right: calc(1.5em + 1.6rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc2626'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc2626' stroke='none'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.4rem) center;
  background-size: calc(0.75em + 0.8rem) calc(0.75em + 0.8rem);
}
.dropzone .dz-preview .dz-progress {
  background: transparent !important;
}
.ck-placeholder {
  min-height: 82px;
}
[data-pc-theme=dark] .tagify__input::before {
  color: #bec8d0;
}
[data-pc-theme=dark] .tagify__input:focus::before {
  color: #bec8d0;
}
#lanesForm .was-validated .ng-invalid {
  background-image: none !important;
}
#lanesForm.was-validated .ng-invalid {
  background-image: none !important;
}
#lanesForm.was-validated.ng-invalid {
  background-image: none !important;
}
.apexcharts-legend-group-vertical {
  flex-direction: row !important;
}
.w-150 {
  width: 150px !important;
}
.w-200 {
  width: 200px !important;
}
.w-220 {
  width: 220px !important;
}
.w-300 {
  width: 300px !important;
}
.w-350 {
  width: 350px !important;
}
.w-400 {
  width: 400px !important;
}
.tagify {
  height: 5rem;
  max-height: 5rem !important;
  overflow-y: scroll;
  scrollbar-width: none;
}
.toggle-switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  width: 93px;
  padding: 5px;
  background-color: #ccc;
  border-radius: 34px;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}
.toggle-switch.on {
  background-color: #FF7200;
}
.toggle-switch .slider {
  width: 22px;
  height: 22px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  transition: transform 0.4s;
}
.toggle-switch.on .slider {
  transform: translateX(64px);
}
.toggle-switch span {
  flex-grow: 1;
  text-align: center;
  font-size: 14px;
  color: white;
}
#comparePrice {
  height: 84vh !important;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-MLC3RH4W.css.map */
