/* editor css */
.ux-editor-alert {
  background-color: #310132;
  padding: 15px;
  border-left: 3px solid #524cff;
  position: relative;
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  text-align: left;
  border-radius: 0 3px 3px 0;
  margin: 10px 0px;
  font-size: 14px;
}

.empty-post {
  padding: 20px;
  /* background: #f5f5f5; */
  text-align: center;
  border: dashed 1px #d1d1d1;
}

.ux-editor-alert.ux-alert-info {
  background-color: #f8f5ff;
  color: #0f012d;
  border-left: 3px solid #7239ea;
}

.ux-editor-alert.ux-alert-success {
  border-color: #2563eb;
  background: #0a1a3d;
}

.ux-editor-alert.ux-alert-warning {
  border-left: 3px solid #ffba00;
  background: #fcf9e8;
  color: #4e3902;
}

/* ux facebook review */
.ux-fake-like {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fake-like-btn {
  background: #1877f2;
  color: white;
  font-size: 12px;
  padding: 2px 9px 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 500;
  line-height: 1;
}

.fake-like-btn svg {
  height: 16px;
  vertical-align: middle;
  width: 16px;
}

.ux-fake-like .fake-like-text {
  color: #1c1e21;
  font-size: 12px;
  font-weight: 400;
}

.shortcode-loading {
  position: relative;
}

.shortcode-loading::after {
  display: block;
  content: "";
  background-color: #ffffffb3;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 998;
}

.shortcode-loading::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  border: 6px solid #eaeaea;
  border-bottom-color: #a3a3a3;
  border-radius: 50%;
  box-sizing: border-box;
  animation: loading_rotation 1s linear infinite;
  position: absolute;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  z-index: 999;
}

@keyframes loading_rotation {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

.obelix-single-post-info {
  display: flex;
  align-items: center;
}

.obelix-single-post-info i {
  margin-right: 5px;
  line-height: inherit;
  position: relative;
  top: 1px;
}

.obelix-single-post-info>*::after {
  margin: 0 10px;
}

.obelix-single-post-info.sep_line>*::after {
  content: "/";
}

.obelix-single-post-info.sep_dot>*::after {
  content: ".";
}

.obelix-single-post-info.sep_comma>*::after {
  content: ",";
  margin-left: 0;
  margin-right: 4px;
}

.obelix-single-post-info>*:last-child:after {
  content: none;
}

/* image comparison */
.image-comparison {
  --label-top: 5%;
  --label-side: 5%;
  --label-color: white;
  --label-bg: rgba(255, 255, 255, 0.2);
  --label-font-size: 16px;
  --divider-width: 3px;
  --divider-color: white;
  --handle-bg: transparent;
  --handle-color: white;
}

.image-comparison-horizontal .image-comparison-handle:before, .image-comparison-horizontal .image-comparison-handle:after, .image-comparison-vertical .image-comparison-handle:before, .image-comparison-vertical .image-comparison-handle:after {
  content: " ";
  display: block;
  background-color: var(--divider-color);
  position: absolute;
  z-index: 30;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.image-comparison-horizontal .image-comparison-handle:before, .image-comparison-horizontal .image-comparison-handle:after {
  width: var(--divider-width);
  height: 9999px;
  left: 50%;
  margin-left: calc(-1 * (var(--divider-width) / 2));
}

.image-comparison-vertical .image-comparison-handle:before, .image-comparison-vertical .image-comparison-handle:after {
  width: 9999px;
  height: var(--divider-width);
  top: 50%;
  margin-top: calc(-1 * (var(--divider-width) / 2));
}

.image-comparison-before-label, .image-comparison-after-label, .image-comparison-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.image-comparison-before-label, .image-comparison-after-label, .image-comparison-overlay {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.image-comparison-before-label, .image-comparison-after-label {
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
}

.image-comparison-before-label:before, .image-comparison-after-label:before {
  color: var(--label-color);
  font-size: var(--label-font-size);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.image-comparison-before-label:before, .image-comparison-after-label:before {
  position: absolute;
  background: var(--label-bg);
  line-height: 38px;
  padding: 0 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.image-comparison-horizontal .image-comparison-before-label:before, .image-comparison-horizontal .image-comparison-after-label:before {
  top: var(--label-top);
  transform: translateY(-50%);
}

.ic-label-horizontal-top .image-comparison-horizontal .image-comparison-before-label:before, .ic-label-horizontal-top .image-comparison-horizontal .image-comparison-after-label:before {
  transform: translateY(0);
  top: 10px;
}

.ic-label-horizontal-bottom .image-comparison-horizontal .image-comparison-before-label:before, .ic-label-horizontal-bottom .image-comparison-horizontal .image-comparison-after-label:before {
  bottom: 10px;
  transform: translateY(0);
  top: auto;
}

.image-comparison-vertical .image-comparison-before-label:before, .image-comparison-vertical .image-comparison-after-label:before {
  left: calc(var(--label-side) * 2);
  transform: translateX(-50%);
  text-align: center;
}

.ic-label-vertical-left .image-comparison-vertical .image-comparison-before-label:before, .ic-label-vertical-left .image-comparison-vertical .image-comparison-after-label:before {
  left: 10px;
  transform: translateX(0);
}

.ic-label-vertical-right .image-comparison-vertical .image-comparison-before-label:before, .ic-label-vertical-right .image-comparison-vertical .image-comparison-after-label:before {
  left: auto;
  right: 10px;
  transform: translateX(0);
}

.image-comparison-left-arrow, .image-comparison-right-arrow, .image-comparison-up-arrow, .image-comparison-down-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
}

.image-comparison-left-arrow, .image-comparison-right-arrow {
  top: 50%;
  margin-top: -6px;
}

.image-comparison-up-arrow, .image-comparison-down-arrow {
  left: 50%;
  margin-left: -6px;
}

.image-comparison-container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.image-comparison-container img {
  max-width: 100%;
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
}

.image-comparison-container.active .image-comparison-overlay, .image-comparison-container.active :hover.image-comparison-overlay {
  background: transparent;
}

.image-comparison-container.active .image-comparison-overlay .image-comparison-before-label, .image-comparison-container.active .image-comparison-overlay .image-comparison-after-label, .image-comparison-container.active :hover.image-comparison-overlay .image-comparison-before-label, .image-comparison-container.active :hover.image-comparison-overlay .image-comparison-after-label {
  /*opacity: 0;*/
}

.image-comparison-container * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.image-comparison-before-label {
  /*opacity: 0;*/
}

.image-comparison-before-label:before {
  content: attr(data-content);
}

.image-comparison-after-label {
  /*opacity: 0;*/
}

.image-comparison-after-label:before {
  content: attr(data-content);
}

.image-comparison-horizontal .image-comparison-before-label:before {
  left: var(--label-side);
}

.image-comparison-horizontal .image-comparison-after-label:before {
  right: var(--label-side);
}

.image-comparison-vertical .image-comparison-before-label:before {
  top: calc(var(--label-top) / 2);
}

.image-comparison-vertical .image-comparison-after-label:before {
  bottom: calc(var(--label-top) / 2);
}

.image-comparison-overlay {
  -webkit-transition-property: background;
  -moz-transition-property: background;
  transition-property: background;
  background: transparent;
  z-index: 25;
}

.image-comparison-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.image-comparison-overlay:hover .image-comparison-after-label {
  opacity: 1;
}

.image-comparison-overlay:hover .image-comparison-before-label {
  opacity: 1;
}

.image-comparison-before {
  z-index: 20;
}

.image-comparison-after {
  z-index: 10;
}

.image-comparison-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  background-color: var(--handle-bg);
  border: var(--divider-width) solid var(--divider-color);
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  z-index: 40;
  cursor: pointer;
  backdrop-filter: blur(3px);
}

.image-comparison-horizontal .image-comparison-handle:before {
  bottom: 50%;
  margin-bottom: 19px;
}

.image-comparison-horizontal .image-comparison-handle:after {
  top: 50%;
  margin-top: 19px;
}

.image-comparison-vertical .image-comparison-handle:before {
  left: 50%;
  margin-left: 19px;
}

.image-comparison-vertical .image-comparison-handle:after {
  right: 50%;
  margin-right: 19px;
}

.image-comparison-left-arrow {
  border-right: 6px solid var(--handle-color);
  left: 50%;
  margin-left: -17px;
}

.image-comparison-right-arrow {
  border-left: 6px solid var(--handle-color);
  right: 50%;
  margin-right: -17px;
}

.image-comparison-up-arrow {
  border-bottom: 6px solid var(--handle-color);
  top: 50%;
  margin-top: -17px;
}

.image-comparison-down-arrow {
  border-top: 6px solid var(--handle-color);
  bottom: 50%;
  margin-bottom: -17px;
}

/* table of content */
.toc-contents {
  --toc-position-x: 50%;
  --toc-position-y: 50%;
  --toc-header-box-padding: 20px 20px;
  --box-border-color: #535353;
  --separator-color: #535353;
  --separator-width: 1px;
  --box-min-height: unset;
  --box-border-radius: 3px;
  --box-background-color: white;
  --item-active-color: var(--fs-color-primary);
  --item-text-active-decoration: underline;
  --toc-zindex: 10;
  --toc-list-box-padding: 20px;
}

.toc-contents--collapsed .toc-contents__toggle-button i {
  transform: rotate(180deg);
}

.toc-contents--collapsed .toc-contents__body {
  height: 0;
  opacity: 0;
  visibility: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.toc-contents .toc-contents__wrap {
  --toc-header-box-padding: 20px 20px;
  border: 1px solid;
  border-color: var(--box-border-color, #535353);
  min-height: var(--box-min-height);
  border-radius: var(--box-border-radius, 3px);
  background-color: var(--box-background-color);
  overflow: hidden;
  z-index: 4;
  width: 100%;
}

.toc-contents__header-title-wrapper {
  width: 100%;
  text-align: var(--toc-header-title-align, "left");
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .toc-contents__header-title-wrapper .header-icon{
width: 20px;
height: 20px;
display: inline-block;
color: inherit;
} */
.toc-contents__header-title-wrapper svg.header-icon {
  fill: currentColor;
  width: 20px;
  height: 20px;
  display: inline-block;
  color: inherit;
}

.toc-contents__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: var(--toc-header-box-padding, 20px);
  color: var(--header-color, #000);
  background-color: var(--header-background-color);
  cursor: pointer;
}

.toc-contents .toc-contents__header-title-wrapper .toc-contents__header-title {
  font-size: 18px;
  margin: 0 !important;
  color: var(--header-color);
}

.toc-contents__toggle-button {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 22px;
}

.toc-contents__toggle-button i {
  color: var(--toggle-button-color);
}

.toc-contents__toggle-button i::before {
  line-height: 1;
  position: relative;
  top: -1px;
}

.toc-contents__toggle-button svg {
  height: 1em;
  width: 1em;
}

.toc-contents__spinner-container {
  text-align: center;
}

.toc-contents__spinner {
  font-size: 2em;
}

.toc-contents__body {
  border-top: var(--separator-width, 1px) solid var(--separator-color, #535353);
  padding: var(--toc-list-box-padding, 20px);
  transition: all ease .3s;
}

.toc-contents__list-wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-contents__body>.toc-contents__list-wrapper>li {
  margin-left: 0 !important;
}

.toc-contents__list-item {
  margin-bottom: 0;
  padding-bottom: 0.5em;
}

.toc-contents__list-item.item-active {
  font-weight: 700;
}

.toc-contents__list-item .toc-contents__list-wrapper {
  margin-top: 0.5em;
  margin-left: var(--nested-list-indent, 1em);
}

.toc-contents__list-item-text-wrapper svg {
  -webkit-margin-end: 8px;
  margin-inline-end: 8px; fill: var(--marker-color);
  height: var(--marker-icon-size, 0.5em);
  width: var(--marker-icon-size, 0.5em);
}

.toc-contents__list-item .toc-contents__list-item-text-wrapper .toc-contents__list-item-text {
  color: var(--item-text-color);
}

.toc-contents__list-item .toc-contents__list-item-text-wrapper .toc-contents__list-item-text:hover {
  color: var(--item-text-hover-color);
  -webkit-text-decoration: var(--item-text-hover-decoration);
  text-decoration: var(--item-text-hover-decoration);
}

.toc-contents__list-item .toc-contents__list-item-text-wrapper .toc-contents__list-item-text.item-active {
  color: var(--item-active-color);
  -webkit-text-decoration: var(--item-text-active-decoration);
  text-decoration: var(--item-text-active-decoration);
}

.toc-contents__list-item-text-wrapper {
  /* display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center */
}

.toc-contents__list-item-text-wrapper i, .toc-contents__list-item-text-wrapper:before {
  margin-right: 8px;
  color: var(--marker-color);
}

.toc-contents__list-item-text-wrapper i {
  font-size: var(--marker-icon-size, 0.5em);
}

.toc-contents__list-item-text-wrapper:before {
  font-size: var(--marker-icon-size, 1em);
}

.toc-contents--content-ellipsis .toc-contents__list-item-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toc-contents__list-items--collapsible>.toc-contents__list-wrapper>.toc-contents__list-item>.toc-contents__list-wrapper {
  display: none;
}

.toc-contents__heading-anchor {
  position: absolute;
}

a.toc-contents__list-item-text {
  -webkit-text-decoration: var(--item-text-decoration);
  text-decoration: var(--item-text-decoration);
}

ol.toc-contents__list-wrapper {
  counter-reset: item;
}

ol.toc-contents__list-wrapper .toc-contents__list-item {
  counter-increment: item;
}

ol.toc-contents__list-wrapper .toc-contents__list-item-text-wrapper:before {
  content: counters(item, ".") ". ";
}

/* .toc-contents__expand_btn{
display: none;
} */
@media only screen and (min-width: 1025px) {
  .toc-contents--minimized-on-desktop .toc-contents__body {
      display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .toc-contents--minimized-on-tablet .toc-contents__body {
      display: none;
  }
}

@media only screen and (max-width: 767px) {
  .toc-contents--minimized-on-mobile .toc-contents__body {
      display: none;
  }

  /* .toc-contents__expand_btn{
display: inline-block;
} */
}

/* toc-contents__wrap */
.toc-contents.floating-toc:not(.sticky-toggle) .toc-contents__wrap {
  position: fixed;
  z-index: var(--toc-zindex);
  top: var(--toc-position-y);
}

.toc-contents.floating-toc.sticky-toggle .toc-contents__wrap {
  width: 500px;
}

.toc-contents.custom_position.floating-toc:not(.sticky-toggle) .toc-contents__wrap {
  left: var(--toc-position-x);
}

.toc-contents.sticky-in-place.floating-toc .toc-contents__wrap {
  position: fixed;
}

.toc-contents__scroll-to-top--container {
  position: fixed;
  background-color: #f0f0f0;
  padding: 20px;
  cursor: pointer;
}

.toc-contents.sticky {
  position: sticky;
  background-color: #fff;
  top: 0;
  z-index: 10;
}

.toc-contents__scroll-to-top--container.toc-contents__scroll-to-top--align-right {
  right: var(--toc-scroll-top-position-x);
  bottom: var(--toc-scroll-top-position-y);
}

.toc-contents__scroll-to-top--container.toc-contents__scroll-to-top--align-left {
  left: var(--toc-scroll-top-position-x);
  bottom: var(--toc-scroll-top-position-y);
}

[toc-controls] {
  position: relative;
  display: inline-block;
  width: auto;
  z-index: 1;
}

[toc-controls]::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: calc(100% - 6px);
  width: 100%;
  background-position: left;
  background-size: 0% 100%;
  background-image: linear-gradient(#fcff00, #fcff00);
  background-repeat: no-repeat;
  transition: background-size 1s;
  left: 0;
  top: 4px;
  z-index: -1;
}

.toc-highlight::after {
  background-size: 100% 100%;
}

/* Toggle */
.toc-contents .toc-contents__expand_btn {
  width: 38px;
  height: 38px;
  text-align: center;
  background-color: #ececec;
  border: solid 1px grey;
  padding: 7px;
  border-radius: 4px;
  cursor: pointer;
  transition: all ease 0.3s;
  position: fixed;
  bottom: var(--toc-position-y);
  left: var(--toc-position-x);
  z-index: 9999;
}

.toc-contents .toc-contents__expand_btn svg {
  fill: currentColor;
}

.toc-contents .toc-contents__expand_btn:hover {
  background-color: #dadada;
}

.toc-contents.floating-toc.sticky-toggle .toc-contents__wrap {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.toc-contents.floating-toc.sticky-toggle .toc-contents__wrap.expand-toc {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* .toc-contents__sticky.floating-toc.has-toggle-btn .toc-contents__expand_btn {
display: inline-block;
} */
/* .toc-contents__sticky.floating-toc.has-toggle-btn .toc-contents__wrap {
position: absolute;
transition: all ease 0.3s;
transform: translateX(50px);
top: 0;
display: block;
min-width: 334px;
top: 0;
opacity: 0;
visibility: hidden;
pointer-events: none;
}

.toc-contents__sticky.floating-toc.has-toggle-btn.expand-toc .toc-contents__wrap {
opacity: 1;
visibility: visible;
pointer-events: auto;
} */
/* Toc style */
.toc-contents.toc-style-1 .toc-contents__wrap {
  background-color: #fff;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0 25px 70px -8px rgba(0, 0, 0, .05);
  border: none;
  --item-active-color: #8072fc;
  --item-text-active-decoration: none;
  --item-text-color: #55515d
}

.toc-contents.toc-style-1 .toc-contents__header {
  padding: 20px 24px 20px 28px;
  font-family: poppins, Sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: 0;
  color: #fff;
  background-color: var(--item-active-color);
  border-style: solid;
  border-width: 0;
  border-color: #0201010f;
  border-radius: 5px 5px 0 0;
  position: relative;
}

.toc-contents.toc-style-1 .toc-contents__header::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(244deg, rgba(255, 255, 255, 0.362) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  mix-blend-mode: screen;
  opacity: .7;
  z-index: 0;
}

.toc-contents.toc-style-1 .toc-contents__header-title-wrapper {
  position: relative;
  z-index: 1;
}

.toc-contents.toc-style-1 .toc-contents__body {
  padding: 15px 0;
  margin: 10px 20px 10px 28px;
  border: none;
}

.toc-contents.toc-contents--collapsed.toc-style-1 .toc-contents__body {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.toc-contents.toc-style-1 .toc-contents__body>.toc-contents__list-wrapper>li>div {
  font-weight: 500;
  font-size: 1rem;
}

.toc-contents.toc-style-1 .toc-contents__list-wrapper ul li {
  position: relative;
  font-size: .9rem;
}

.toc-contents.toc-style-1 .toc-contents__list-wrapper ul li::before {
  background-color: #eee;
  content: ' ';
  display: inline-block;
  height: inherit;
  left: -20px;
  margin-top: -1px;
  position: absolute;
  width: 3px;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  height: 100%;
}

.toc-contents.toc-style-1 .toc-contents__list-wrapper ul li.level-2::before {
  width: 2px;
}

.toc-contents.toc-style-1 .toc-contents__list-wrapper ul li.level-3::before {
  width: 1px;
}

.toc-contents.toc-style-1 .toc-contents__list-wrapper ul li:has(.item-active):before {
  background-color: var(--item-active-color);
}

.toc-contents.toc-style-1 .toc-contents__expand_btn {
  background-color: var(--item-active-color);
  color: white;
  border-color: transparent;
}

/* .toc-contents__list-item .toc-contents__list-item-text-wrapper .toc-contents__list-item-text.item-active::before{
background-color: #8072fc;
} */
/* End table of content */
/* time line */
.timeline .timeline-card-title {
  -webkit-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.timeline .timeline-card-title a {
  color: inherit;
}

.timeline-vertical {
  position: relative;
}

.timeline-vertical .timeline-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
}

.timeline-vertical .timeline-item.timeline-item-hidden .timeline-card-wrapper {
  visibility: hidden;
}

.timeline-vertical .timeline-item.bounce-in .timeline-card-wrapper {
  visibility: visible;
  -webkit-animation: 1s bounce-odd;
  animation: 1s bounce-odd;
}

.timeline-vertical .timeline-item:nth-of-type(even).bounce-in .timeline-card-wrapper {
  visibility: visible;
  -webkit-animation: 1s bounce-even;
  animation: 1s bounce-even;
}

.timeline-vertical .timeline-item .timeline-card-wrapper {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.timeline-vertical .timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-vertical .timeline-card-date-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 40px;
  line-height: 40px;
  font-weight: 600;
  color: black;
}

.timeline-vertical .timeline-connector-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
}

.timeline-vertical .timeline-connector {
  position: absolute;
  background: #ccc;
  width: 4px;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.timeline-vertical .timeline-connector-inner {
  background: var(--marker-bg-color, #111);
}

.timeline-vertical .timeline-arrow {
  width: 10px;
  right: 0;
  top: 0;
}

.timeline-vertical .timeline-arrow:after {
  border-bottom: 10px solid transparent;
  border-left: 10px solid currentColor;
}

.timeline-vertical.timeline-left .timeline-connector-wrap {
  left: 0;
}

.timeline-vertical.timeline-left .timeline-marker-wrapper {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.timeline-vertical.timeline-left .timeline-card-wrapper {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-right: 0;
}

.timeline-vertical.timeline-center .timeline-connector-wrap {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.timeline-vertical.timeline-center .timeline-item.timeline-item-right {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.timeline-vertical.timeline-center .timeline-item.timeline-item-right .timeline-card-date-wrapper {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.timeline-vertical.timeline-center .timeline-item.timeline-item-right .timeline-card-wrapper {
  padding-left: 10px;
  padding-right: 0;
}

.timeline-vertical.timeline-center .timeline-card-date {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

.timeline-vertical.timeline-center .timeline-card .timeline-card-date {
  display: none;
}

.timeline-vertical.timeline-center .timeline-card-wrapper {
  padding-left: 0;
}

.timeline-vertical.timeline-center .timeline-card-date-wrapper, .timeline-vertical.timeline-center .timeline-card-wrapper {
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.timeline-vertical.timeline-right .timeline-connector-wrap {
  right: 0;
}

.timeline-vertical.timeline-right .timeline-card-wrapper {
  padding-left: 0;
}

.timeline-vertical.timeline-center .timeline-item.timeline-item-right .timeline-arrow, .timeline-vertical.timeline-left .timeline-arrow {
  left: 0;
  right: auto;
}

.timeline-vertical.timeline-center .timeline-item.timeline-item-right .timeline-arrow:after, .timeline-vertical.timeline-left .timeline-arrow:after {
  border-right: 10px solid currentColor;
  border-left: none;
}

.timeline-vertical.timeline-left .timeline-card-date-wrapper, .timeline-vertical.timeline-right .timeline-card-date-wrapper {
  display: none;
}

.timeline-horizontal {
  margin-top: 20px;
}

.timeline-horizontal .slide-item {
  padding: 0px var(--item-spacing, 10px) !important;
}

.timeline-horizontal .timeline-card-wrapper {
  padding-left: 0;
  padding-right: 0;
}

/* .timeline-horizontal .flickity-slider {
margin: 0 calc(-1 * var(--item-spacing, 10px))!important;
padding-left: 0 !important;
padding-right: 0 !important;
} */
.timeline-horizontal .timeline-items .flickity-slider {
  /* padding-top: 10px!important;
padding-bottom: 20px!important; */
}

.timeline-horizontal .timeline-item {
  margin-top: 12px !important;
  margin-bottom: 20px !important;
}

.timeline-horizontal .flickity-slider .is-selected .timeline-arrow {
  width: 20px;
  height: 20px;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.timeline-horizontal .flickity-slider .is-selected .timeline-arrow:after {
  border-bottom: 10px solid var(--card-bg-color, #f1f1f1);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.timeline-card-wrapper {
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.timeline .flickity-page-dots {
  position: static;
  margin: 0 auto;
}

.timeline .flickity-page-dots .dot {
  background-color: #111;
  opacity: .2;
}

.timeline-arrow {
  color: var(--card-bg-color, #f1f1f1);
  position: absolute;
  height: 40px;
}

.timeline-arrow:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.timeline-arrows-middle .timeline-item {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.timeline-arrows-middle .timeline-arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.timeline-arrows-bottom .timeline-item {
  -ms-flex-align: flex-end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.timeline-arrows-bottom .timeline-arrow {
  top: auto;
  bottom: 0;
}

.timeline-card {
  background: var(--card-bg-color, #f1f1f1);
  padding: 20px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.timeline-card-image img {
  display: inline-block;
  vertical-align: middle;
}

.timeline-marker {
  background-color: var(--marker-bg-color, #111);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  color: #fff;
  padding: 12px;
  /* width: var(--marker-box-size, 40px); */
  position: relative;
  display: -ms-flexbox;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  z-index: 1;
  -webkit-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.timeline-marker .icon {
  -webkit-transition: none;
  transition: none;
  width: 40px;
  height: 40px;
}

.timeline-marker .icon i, .timeline-marker .icon svg {
  width: 100%;
  height: 100%;
  font-size: var(--marker-icon-size, 1em);
  position: relative;
  display: block;
  color: var(--marker-color, white);
}

.timeline-marker .icon svg {
  fill: var(--marker-color, white);
}

.timeline-card-date {
  display: inline-block;
}

.timeline-card-title-wrap {
  -webkit-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.timeline-items {
  position: relative;
}

/* timeline-horizontal */
.timeline-navigation {
  position: relative;
}

.timeline-horizontal .timeline-navigation-wrap:before {
  position: absolute;
  content: "";
  height: 4px;
  width: 100%;
  background: #ccc;
  display: block;
  bottom: 27px;
  top: auto;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

.timeline-navigation .flickity-slider {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.timeline-navigation .timeline-marker-wrapper {
  cursor: pointer;
  text-align: center;
}

.timeline-navigation-wrap {
  position: relative;
}

.timeline-navigation-wrap .slider-arrow {
  /* -webkit-transform: none; */
  /* transform: none; */
  /* top: auto; */
  /* bottom: 22px; */
  padding: 0;
  height: 40px;
  width: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 22px;
  line-height: 22px;
  position: absolute;
  top: calc(50% + 8px);
  width: 1.8182em;
  height: 1.8182em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all .25s linear 0s;
  transition: all .25s linear 0s;
}

.timeline-navigation-wrap .slider-arrow:hover {
  color: white;
  background-color: var(--marker-bg-color, #f1f1f1);
}

.timeline-navigation-wrap .arrow-prev {
  background: #f1f1f1;
  left: -20px;
}

.timeline-navigation-wrap .arrow-next {
  background: #f1f1f1;
  right: -20px;
}

.timeline-item:focus, .timeline-marker-wrapper:focus {
  outline: 0;
}

.timeline-card-content p:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes bounce-even {
  0% {
      opacity: 0;
      -webkit-transform: translateX(-100px);
      transform: translateX(-100px);
  }

  60% {
      opacity: 1;
      -webkit-transform: translateX(10px);
      transform: translateX(10px);
  }

  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
}

@keyframes bounce-even {
  0% {
      opacity: 0;
      -webkit-transform: translateX(-100px);
      transform: translateX(-100px);
  }

  60% {
      opacity: 1;
      -webkit-transform: translateX(10px);
      transform: translateX(10px);
  }

  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
}

@-webkit-keyframes bounce-odd {
  0% {
      opacity: 0;
      -webkit-transform: translateX(100px);
      transform: translateX(100px);
  }

  60% {
      opacity: 1;
      -webkit-transform: translateX(-10px);
      transform: translateX(-10px);
  }

  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
}

@keyframes bounce-odd {
  0% {
      opacity: 0;
      -webkit-transform: translateX(100px);
      transform: translateX(100px);
  }

  60% {
      opacity: 1;
      -webkit-transform: translateX(-10px);
      transform: translateX(-10px);
  }

  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
}

/* larger */
.timeline .large-columns-1 .slide-item {
  flex-basis: 100%;
  max-width: 100%;
}

.timeline .large-columns-2 .slide-item {
  flex-basis: 50%;
  max-width: 50%;
}

.timeline .large-columns-3 .slide-item {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.timeline .large-columns-4 .slide-item {
  flex-basis: 25%;
  max-width: 25%;
}

.timeline .large-columns-5 .slide-item {
  flex-basis: 20%;
  max-width: 20%;
}

.timeline .large-columns-6 .slide-item {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.timeline .large-columns-7 .slide-item {
  flex-basis: 14.2857142857%;
  max-width: 14.2857142857%;
}

.timeline .large-columns-8 .slide-item {
  flex-basis: 12.5%;
  max-width: 12.5%;
}

@media only screen and (max-width: 1024px) {
  .timeline-vertical.timeline-tablet-left .timeline-item:nth-child(even) {
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
  }

  .timeline-vertical.timeline-tablet-left .timeline-connector-wrap {
      left: 0;
      -webkit-transform: none;
      transform: none;
  }

  .timeline-vertical.timeline-tablet-left .timeline-marker-wrapper {
      margin-left: 0 !important;
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
  }

  .timeline-vertical.timeline-tablet-left .timeline-card-wrapper {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      padding-left: 10px;
      padding-right: 0;
  }

  .timeline-vertical.timeline-tablet-left .timeline-card-wrapper {
      -ms-flex-preferred-size: inherit;
      flex-basis: inherit;
  }

  .timeline-vertical.timeline-tablet-center .timeline-arrow {
      left: auto;
      right: 0;
  }

  .timeline-vertical.timeline-tablet-center .timeline-arrow:after {
      border-left: 10px solid currentColor;
      border-right: none;
  }

  .timeline-vertical.timeline-tablet-center .timeline-connector-wrap {
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
  }

  .timeline-vertical.timeline-tablet-center .timeline-item:nth-child(even) {
      -ms-flex-direction: row-reverse;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      flex-direction: row-reverse;
  }

  .timeline-vertical.timeline-tablet-center .timeline-item:nth-child(even) .timeline-card-date-wrapper {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
  }

  .timeline-vertical.timeline-tablet-center .timeline-item:nth-child(even) .timeline-card-wrapper {
      padding-right: 0;
      padding-left: 10px;
  }

  .timeline-vertical.timeline-tablet-center .timeline-item:nth-child(even) .timeline-arrow {
      left: 0;
      right: auto;
  }

  .timeline-vertical.timeline-tablet-center .timeline-item:nth-child(even) .timeline-arrow:after {
      border-right: 10px solid currentColor;
      border-left: none;
  }

  .timeline-vertical.timeline-tablet-center .timeline-card-date {
      display: inline-block;
      margin-left: 10px;
      margin-right: 10px;
  }

  .timeline-vertical.timeline-tablet-center .timeline-card .timeline-card-date {
      display: none;
  }

  .timeline-vertical.timeline-tablet-center .timeline-card-wrapper {
      -webkit-box-ordinal-group: inherit;
      -ms-flex-order: inherit;
      order: inherit;
      padding-left: 0;
      padding-right: 10px;
  }

  .timeline-vertical.timeline-tablet-center .timeline-marker-wrapper {
      -webkit-box-ordinal-group: inherit;
      -ms-flex-order: inherit;
      order: inherit;
  }

  .timeline-vertical.timeline-tablet-center .timeline-card-date-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-ordinal-group: inherit;
      -ms-flex-order: inherit;
      order: inherit;
  }

  .timeline-vertical.timeline-tablet-center .timeline-card-date-wrapper, .timeline-vertical.timeline-tablet-center .timeline-card-wrapper, .timeline-vertical.timeline-tablet-center.timeline-dates .timeline-card-date-wrapper {
      -ms-flex-positive: inherit;
      -webkit-box-flex: inherit;
      flex-grow: inherit;
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
      flex-grow: inherit;
      -ms-flex-negative: inherit;
      flex-shrink: inherit;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
  }

  .timeline-vertical.timeline-tablet-right .timeline-arrow {
      left: auto;
      right: 0;
  }

  .timeline-vertical.timeline-tablet-right .timeline-arrow:after {
      border-left: 10px solid currentColor;
      border-right: none;
  }

  .timeline-vertical.timeline-tablet-right .timeline-item:nth-child(even) {
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
  }

  .timeline-vertical.timeline-tablet-right .timeline-item:nth-child(even) .timeline-card-date-wrapper {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
  }

  .timeline-vertical.timeline-tablet-right .timeline-item:nth-child(even) .timeline-arrow {
      left: auto;
      right: 0;
  }

  .timeline-vertical.timeline-tablet-right .timeline-item:nth-child(even) .timeline-arrow:after {
      border-left: 10px solid currentColor;
      border-right: none;
  }

  .timeline-vertical.timeline-tablet-right .timeline-item:nth-child(even) .timeline-card-wrapper {
      padding-left: 0;
      padding-right: 10px;
  }

  .timeline-vertical.timeline-tablet-right .timeline-connector-wrap {
      left: auto;
      right: 0;
      -webkit-transform: none;
      transform: none;
  }

  .timeline-vertical.timeline-tablet-right .timeline-marker-wrapper {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      margin-right: 0 !important;
  }

  .timeline-vertical.timeline-tablet-right .timeline-card-wrapper {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      padding-left: 0;
      padding-right: 10px;
  }

  .timeline-vertical.timeline-tablet-right .timeline-card-date-wrapper {
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3;
  }

  .timeline-vertical.timeline-tablet-right .timeline-card-date-wrapper, .timeline-vertical.timeline-tablet-right .timeline-card-wrapper {
      -ms-flex-preferred-size: inherit;
      flex-basis: inherit;
  }

  .timeline-vertical.timeline-tablet-left .timeline-card .timeline-card-date, .timeline-vertical.timeline-tablet-right .timeline-card .timeline-card-date {
      display: inline-block;
      margin-left: 0;
      margin-right: 0;
  }

  .timeline-vertical.timeline-tablet-left .timeline-card-date-wrapper, .timeline-vertical.timeline-tablet-right .timeline-card-date-wrapper {
      display: none;
  }

  .timeline-vertical.timeline-tablet-center .timeline-item:nth-child(even) .timeline-arrow, .timeline-vertical.timeline-tablet-left .timeline-arrow {
      left: 0;
      right: auto;
  }

  .timeline-vertical.timeline-tablet-center .timeline-item:nth-child(even) .timeline-arrow:after, .timeline-vertical.timeline-tablet-left .timeline-arrow:after {
      border-right: 10px solid currentColor;
      border-left: none;
  }

  /* medium */
  .timeline .medium-columns-1 .slide-item {
      flex-basis: 100%;
      max-width: 100%;
  }

  .timeline .medium-columns-2 .slide-item {
      flex-basis: 50%;
      max-width: 50%;
  }

  .timeline .medium-columns-3 .slide-item {
      flex-basis: 33.3333333333%;
      max-width: 33.3333333333%;
  }

  .timeline .medium-columns-4 .slide-item {
      flex-basis: 25%;
      max-width: 25%;
  }

  .timeline .medium-columns-5 .slide-item {
      flex-basis: 20%;
      max-width: 20%;
  }

  .timeline .medium-columns-6 .slide-item {
      flex-basis: 16.6666666667%;
      max-width: 16.6666666667%;
  }

  .timeline .medium-columns-7 .slide-item {
      flex-basis: 14.2857142857%;
      max-width: 14.2857142857%;
  }

  .timeline .medium-columns-8 .slide-item {
      flex-basis: 12.5%;
      max-width: 12.5%;
  }
}

@media only screen and (max-width: 767px) {
  .timeline-vertical .timeline-card {
      word-break: break-word;
  }

  .timeline-vertical.timeline-mobile-left .timeline-arrow {
      left: 0;
      right: auto;
  }

  .timeline-vertical.timeline-mobile-left .timeline-arrow:after {
      border-right: 10px solid currentColor;
      border-left: none;
  }

  .timeline-vertical.timeline-mobile-left .timeline-item:nth-child(even) {
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
  }

  .timeline-vertical.timeline-mobile-left .timeline-item:nth-child(even) .timeline-arrow {
      left: 0;
      right: auto;
  }

  .timeline-vertical.timeline-mobile-left .timeline-item:nth-child(even) .timeline-arrow:after {
      border-right: 10px solid currentColor;
      border-left: none;
  }

  .timeline-vertical.timeline-mobile-left .timeline-item:nth-child(even) .timeline-card-wrapper {
      padding-left: 10px;
      padding-right: 0;
  }

  .timeline-vertical.timeline-mobile-left .timeline-connector-wrap {
      left: 0;
      -webkit-transform: none;
      transform: none;
  }

  .timeline-vertical.timeline-mobile-left .timeline-marker-wrapper {
      margin-left: 0 !important;
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
  }

  .timeline-vertical.timeline-mobile-left .timeline-card-wrapper {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      padding-left: 10px;
      padding-right: 0;
  }

  .timeline-vertical.timeline-mobile-left .timeline-card-wrapper {
      -ms-flex-preferred-size: inherit;
      flex-basis: inherit;
  }

  .timeline-vertical.timeline-mobile-center .timeline-arrow {
      left: auto;
      right: 0;
  }

  .timeline-vertical.timeline-mobile-center .timeline-arrow:after {
      border-left: 10px solid currentColor;
      border-right: none;
  }

  .timeline-vertical.timeline-mobile-center .timeline-connector-wrap, .timeline-vertical.timeline-mobile-center.timeline-dates .timeline-connector-wrap {
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
  }

  .timeline-vertical.timeline-mobile-center .timeline-item:nth-child(even) {
      -ms-flex-direction: row-reverse;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      flex-direction: row-reverse;
  }

  .timeline-vertical.timeline-mobile-center .timeline-item:nth-child(even) .timeline-card-date-wrapper {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
  }

  .timeline-vertical.timeline-mobile-center .timeline-item:nth-child(even) .timeline-card-wrapper {
      padding-left: 10px;
      padding-right: 0;
  }

  .timeline-vertical.timeline-mobile-center .timeline-item:nth-child(even) .timeline-arrow {
      left: 0;
      right: auto;
  }

  .timeline-vertical.timeline-mobile-center .timeline-item:nth-child(even) .timeline-arrow:after {
      border-right: 10px solid currentColor;
      border-left: none;
  }

  .timeline-vertical.timeline-mobile-center .timeline-card-date {
      display: inline-block;
      margin-left: 10px;
      margin-right: 10px;
  }

  .timeline-vertical.timeline-mobile-center .timeline-card .timeline-card-date {
      display: none;
  }

  .timeline-vertical.timeline-mobile-center .timeline-card-wrapper {
      -webkit-box-ordinal-group: inherit;
      -ms-flex-order: inherit;
      order: inherit;
      padding-left: 0;
      padding-right: 10px;
  }

  .timeline-vertical.timeline-mobile-center .timeline-card-date-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
  }

  .timeline-vertical.timeline-mobile-center .timeline-card-date-wrapper, .timeline-vertical.timeline-mobile-center .timeline-marker-wrapper, .timeline-vertical.timeline-mobile-center.timeline-dates .timeline-marker-wrapper {
      -webkit-box-ordinal-group: inherit;
      -ms-flex-order: inherit;
      order: inherit;
  }

  .timeline-vertical.timeline-mobile-center .timeline-card-date-wrapper, .timeline-vertical.timeline-mobile-center .timeline-card-wrapper, .timeline-vertical.timeline-mobile-center.timeline-dates .timeline-card-date-wrapper {
      -ms-flex-positive: inherit;
      -webkit-box-flex: inherit;
      flex-grow: inherit;
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
      flex-grow: inherit;
      -ms-flex-negative: inherit;
      flex-shrink: inherit;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
  }

  .timeline-vertical.timeline-mobile-right .timeline-arrow {
      left: auto;
      right: 0;
  }

  .timeline-vertical.timeline-mobile-right .timeline-arrow:after {
      border-left: 10px solid currentColor;
      border-right: none;
  }

  .timeline-vertical.timeline-mobile-right .timeline-item:nth-child(even) {
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
  }

  .timeline-vertical.timeline-mobile-right .timeline-item:nth-child(even) .timeline-card-date-wrapper {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
  }

  .timeline-vertical.timeline-mobile-right .timeline-item:nth-child(even) .timeline-arrow {
      left: auto;
      right: 0;
  }

  .timeline-vertical.timeline-mobile-right .timeline-item:nth-child(even) .timeline-arrow:after {
      border-left: 10px solid currentColor;
      border-right: none;
  }

  .timeline-vertical.timeline-mobile-right .timeline-item:nth-child(even) .timeline-card-wrapper {
      padding-left: 0;
      padding-right: 10px;
  }

  .timeline-vertical.timeline-mobile-right .timeline-connector-wrap {
      left: auto;
      right: 0;
      -webkit-transform: none;
      transform: none;
  }

  .timeline-vertical.timeline-mobile-right .timeline-marker-wrapper {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      margin-right: 0 !important;
  }

  .timeline-vertical.timeline-mobile-right .timeline-card-wrapper {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      padding-left: 0;
      padding-right: 10px;
  }

  .timeline-vertical.timeline-mobile-right .timeline-card-date-wrapper {
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3;
  }

  .timeline-vertical.timeline-mobile-right .timeline-card-date-wrapper, .timeline-vertical.timeline-mobile-right .timeline-card-wrapper {
      -ms-flex-preferred-size: inherit;
      flex-basis: inherit;
  }

  .timeline-vertical.timeline-mobile-left .timeline-card .timeline-card-date, .timeline-vertical.timeline-mobile-right .timeline-card .timeline-card-date {
      display: inline-block;
      margin-left: 0;
      margin-right: 0;
  }

  .timeline-vertical.timeline-mobile-left .timeline-card-date-wrapper, .timeline-vertical.timeline-mobile-right .timeline-card-date-wrapper {
      display: none;
  }

  .timeline-vertical.timeline-mobile-center .timeline-item:nth-child(even) .timeline-arrow, .timeline-vertical.timeline-mobile-left .timeline-arrow {
      left: 0;
      right: auto;
  }

  .timeline-vertical.timeline-mobile-center .timeline-item:nth-child(even) .timeline-arrow:after, .timeline-vertical.timeline-mobile-left .timeline-arrow:after {
      border-right: 10px solid currentColor;
      border-left: none;
  }

  /* small */
  .timeline .small-columns-1 .slide-item {
      flex-basis: 100%;
      max-width: 100%;
  }

  .timeline .small-columns-2 .slide-item {
      flex-basis: 50%;
      max-width: 50%;
  }

  .timeline .small-columns-3 .slide-item {
      flex-basis: 33.3333333333%;
      max-width: 33.3333333333%;
  }

  .timeline .small-columns-4 .slide-item {
      flex-basis: 25%;
      max-width: 25%;
  }

  .timeline .small-columns-5 .slide-item {
      flex-basis: 20%;
      max-width: 20%;
  }

  .timeline .small-columns-6 .slide-item {
      flex-basis: 16.6666666667%;
      max-width: 16.6666666667%;
  }

  .timeline .small-columns-7 .slide-item {
      flex-basis: 14.2857142857%;
      max-width: 14.2857142857%;
  }

  .timeline .small-columns-8 .slide-item {
      flex-basis: 12.5%;
      max-width: 12.5%;
  }
}

.timeline-container, .timeline-wrapper, .timeline-navigation-wrap {
  display: block;
}

/***
Table HTML 
***/
/* .custom-table-html ::-webkit-scrollbar {
width: 6px;
}
.custom-table-html ::-webkit-scrollbar-track {
background: #f1f1f1;
}

.custom-table-html ::-webkit-scrollbar-thumb {
background: #bebebe;
}

.custom-table-html ::-webkit-scrollbar-thumb:hover {
background: #979797;
} */
.custom-table-html .table {
  --table-color: #000;
  --table-radius: .3rem;
  --table-color-type: initial;
  --table-bg-type: initial;
  --table-color-state: initial;
  --table-bg-state: initial;
  --table-color: #222;
  --table-bg: #fff;
  --table-border-color: #e5e5e5;
  --table-accent-bg: transparent;
  --rows-striped-color: #222;
  --rows-striped-bg: rgba(0, 0, 0, 0.02);
  --table-active-color: #222;
  --table-active-bg: rgba(0, 0, 0, 0.1);
  --rows-hover-color: #222;
  --rows-hover-bg: rgba(0, 0, 0, 0.075);
  --table-border-width: 1px;
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--table-border-color);
  caption-side: bottom;
  border-collapse: collapse;
  border-spacing: 2px;
}

.custom-table-html .table-striped>tbody>tr:nth-of-type(odd)>* {
  --table-color-type: var(--rows-striped-color);
  --table-bg-type: var(--rows-striped-bg);
}

.custom-table-html table.table-rounded {
  border-radius: var(--table-radius) var(--table-radius) 0 0;
  border-collapse: separate;
  border-spacing: 0;
}

.custom-table-html table.table-rounded td:not(:last-child), .custom-table-html table.table-rounded th:not(:last-child) {
  border-right: none;
}

.custom-table-html table.table-rounded thead tr th:first-child {
  border-top-left-radius: var(--table-radius);
}

.custom-table-html table.table-rounded thead tr th:last-child {
  border-top-right-radius: var(--table-radius);
}

.custom-table-html table.table-rounded tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--table-radius);
}

.custom-table-html table.table-rounded tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--table-radius);
}

/* .custom-table-html .table:not(.table-bordered).table-rounded{
border-radius: var(--tab_radius, .3rem);
border-spacing: 0;
border-collapse: separate;
}

.custom-table-html .table.table-rounded thead th:first-child{
border-top-left-radius: calc(var(--tab-radius, .3rem) -1px);
}
.custom-table-html .table.table-rounded thead th:last-child{
border-top-right-radius: calc(var(--tab-radius, .3rem) -1px);
} */
.custom-table-html tbody, .custom-table-html td, .custom-table-html tfoot, .custom-table-html th, .custom-table-html thead, .custom-table-html tr {
  border-color: var(--table-border-color);
  border-style: solid;
  border-width: 0;
  letter-spacing: 0;
  color: var(--table-color);
}

.custom-table-html .table-hover>tbody>tr:hover>* {
  --table-color-type: var(--rows-hover-color) !important;
  --table-bg-type: var(--rows-hover-bg) !important;
}

.custom-table-html .table>tbody {
  vertical-align: middle;
}

.custom-table-html .table-bordered>:not(caption)>* {
  border-width: var(--table-border-width) 0;
}

.custom-table-html .table>:not(caption)>*>* {
  padding: .5rem .5rem;
  color: var(--table-color-state, var(--table-color-type, var(--table-color)));
  background-color: var(--table-bg);
  border-bottom-width: var(--table-border-width);
  box-shadow: inset 0 0 0 9999px var(--table-bg-state, var(--table-bg-type, var(--table-accent-bg)));
}

.custom-table-html table td:first-child, .custom-table-html table th:first-child {
  padding-left: .5rem;
}

.custom-table-html table thead {
  --table-bg: #f2f2f2;
}

.custom-table-html .table thead tr th {
  white-space: nowrap;
  font-weight: bold;
  padding-top: 16px;
  padding-bottom: 10px;
}

/* table scroll */
div.dt-scroll-body {
  border-left: 0 !important;
  border-bottom: 0 !important;
}

.dt-scroll-body table thead {
  display: none;
}

.dt-scroll-head table {
  margin-bottom: 0 !important;
}

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

/* .dt-scroll-headInner{
padding-right: 6px!important;
} */
/* datatable */
.dt-layout-row:not(.dt-layout-table) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dt-layout-row:has(.dt-length) {
  margin-bottom: 20px;
}

.custom-table-html .dt-input {
  background-color: #f9f9f9;
  box-shadow: none;
  border-color: #f9f9f9;
  border-radius: 0.2rem;
  transition: color 0.2s ease;
  font-size: 14px;
  margin-bottom: 0;
}

.custom-table-html .dt-input:focus, .custom-table-html .dt-input:active {
  background-color: #f1f1f4;
  border-color: #f1f1f4;
  box-shadow: none;
}

.custom-table-html .dt-search {
  position: relative;
}

.custom-table-html .dt-search label {
  position: absolute;
  font-weight: 300;
  top: 50%;
  left: 12px;
  margin: 0;
  transform: translateY(-50%);
}

.custom-table-html .dt-length {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.custom-table-html .dt-length label {
  margin-bottom: 0;
  margin-left: 12px;
}

.custom-table-html .dt-search .dt-input {
  padding-left: 34px;
  margin-bottom: 0;
}

.custom-table-html .dt-info {
  font-style: italic;
  font-size: 13px;
}

.custom-table-html .dt-empty {
  font-style: italic;
  text-align: center;
}

/* dt-paging */
.custom-table-html .dt-paging .dt-paging-button.previous, .custom-table-html .dt-paging .dt-paging-button .next {
  background: none;
}

.custom-table-html .dt-paging .dt-paging-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.475rem;
  height: auto;
  min-height: 30px;
  min-width: 34px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  padding: 0;
  font-size: 14px;
  margin: 0 6px;
  cursor: initial;
  color: var(--table-color, #222);
  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;
}

.custom-table-html .dt-paging .dt-paging-button.current {
  background: var(--fs-color-primary);
  color: white;
}

.custom-table-html .dt-paging .dt-paging-button:not(.disabled):not(.current) {
  cursor: pointer;
}

.custom-table-html .dt-paging .dt-paging-button:not(.disabled):not(.current):hover {
  background: #f9f9f9;
  color: var(--fs-color-primary);
}

.custom-table-html .dt-paging {
  margin-top: 10px !important;
}

.custom-table-html div.dataTables_length label {
  display: flex;
  align-items: center;
}

.custom-table-html div.dataTables_length label select {
  margin: 0 8px;
  background-color: #f9f9f9;
  box-shadow: none;
  border-color: #f9f9f9;
  border-radius: 0.2rem;
}

.custom-table-html div.dataTables_length label select:focus {
  background-color: #f1f1f4;
  border-color: #f1f1f4;
}

.custom-table-html table thead .sorting, .custom-table-html table thead .sorting_asc, .custom-table-html table thead .sorting_desc {
  position: relative;
  background-image: unset !important;
}

.custom-table-html table thead .sorting::after, .custom-table-html table thead .sorting_asc::after, .custom-table-html table thead .sorting_desc::after {
  font-family: fl-icons !important;
  position: static;
  margin-left: 4px;
}

.custom-table-html table thead .sorting_desc::after {
  content: "\f107";
}

.custom-table-html table thead .sorting_asc::after {
  content: "\f106";
}

/* datatable responsive */
table.dataTable.dtr-inline.collapsed>tbody>tr>td.child, table.dataTable.dtr-inline.collapsed>tbody>tr>th.child, table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty {
  cursor: default !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.child:before, table.dataTable.dtr-inline.collapsed>tbody>tr>th.child:before, table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty:before {
  display: none !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control, table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control {
  cursor: pointer;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
  border: 0 !important;
  height: 1.35rem;
  width: 1.35rem;
  line-height: 1.5;
  text-indent: -999px !important;
  margin-bottom: -.3375rem;
  margin-right: .675rem;
  display: inline-block;
  position: relative;
  font-size: 1.05rem;
  border: 0;
  box-shadow: none;
  mask-size: 85%;
  -webkit-mask-size: 85%;
  content: " ";
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #78829d;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3crect opacity='0.3' x='2' y='2' width='20' height='20' rx='5' fill='%2378829D'/%3e%3crect x='10.8891' y='17.8033' width='12' height='2' rx='1' transform='rotate%28-90 10.8891 17.8033%29' fill='%2378829D'/%3e%3crect x='6.01041' y='10.9247' width='12' height='2' rx='1' fill='%2378829D'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3crect opacity='0.3' x='2' y='2' width='20' height='20' rx='5' fill='%2378829D'/%3e%3crect x='10.8891' y='17.8033' width='12' height='2' rx='1' transform='rotate%28-90 10.8891 17.8033%29' fill='%2378829D'/%3e%3crect x='6.01041' y='10.9247' width='12' height='2' rx='1' fill='%2378829D'/%3e%3c/svg%3e");
}

table.dataTable.dtr-inline.collapsed>tbody>tr.dtr-expanded>td.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr.dtr-expanded>th.dtr-control:before {
  background-color: var(--fs-color-primary)
}

table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td.dtr-control, table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th.dtr-control {
  padding-left: 0.333em;
}

table.dataTable.dtr-column>tbody>tr>td.dtr-control, table.dataTable.dtr-column>tbody>tr>th.dtr-control, table.dataTable.dtr-column>tbody>tr>td.control, table.dataTable.dtr-column>tbody>tr>th.control {
  cursor: pointer;
}

table.dataTable.dtr-column>tbody>tr>td.dtr-control:before, table.dataTable.dtr-column>tbody>tr>th.dtr-control:before, table.dataTable.dtr-column>tbody>tr>td.control:before, table.dataTable.dtr-column>tbody>tr>th.control:before {
  display: inline-block;
  box-sizing: border-box;
  content: "";
  border-top: 5px solid transparent;
  border-left: 10px solid rgba(0, 0, 0, 0.5);
  border-bottom: 5px solid transparent;
  border-right: 0px solid transparent;
}

table.dataTable.dtr-column>tbody>tr>td.dtr-control.arrow-right::before, table.dataTable.dtr-column>tbody>tr>th.dtr-control.arrow-right::before, table.dataTable.dtr-column>tbody>tr>td.control.arrow-right::before, table.dataTable.dtr-column>tbody>tr>th.control.arrow-right::before {
  border-top: 5px solid transparent;
  border-left: 0px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid rgba(0, 0, 0, 0.5);
}

table.dataTable.dtr-column>tbody>tr.dtr-expanded td.dtr-control:before, table.dataTable.dtr-column>tbody>tr.dtr-expanded th.dtr-control:before, table.dataTable.dtr-column>tbody>tr.dtr-expanded td.control:before, table.dataTable.dtr-column>tbody>tr.dtr-expanded th.control:before {
  border-top: 10px solid rgba(0, 0, 0, 0.5);
  border-left: 5px solid transparent;
  border-bottom: 0px solid transparent;
  border-right: 5px solid transparent;
}

table.dataTable>tbody>tr.child {
  padding: 0.5em 1em;
}

table.dataTable>tbody>tr.child:hover {
  background: transparent !important;
}

table.dataTable>tbody>tr.child ul.dtr-details {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

table.dataTable>tbody>tr.child ul.dtr-details>li {
  border-bottom: 1px solid #efefef;
  padding: 0.5em 0;
}

table.dataTable>tbody>tr.child ul.dtr-details>li:first-child {
  padding-top: 0;
}

table.dataTable>tbody>tr.child ul.dtr-details>li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

table.dataTable>tbody>tr.child span.dtr-title {
  display: inline-block;
  min-width: 75px;
  font-weight: bold;
}

div.dtr-modal {
  position: fixed;
  box-sizing: border-box;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  padding: 10em 1em;
}

div.dtr-modal div.dtr-modal-display {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  height: fit-content;
  max-height: 75%;
  overflow: auto;
  margin: auto;
  z-index: 102;
  overflow: auto;
  background-color: #f5f5f7;
  border: 1px solid black;
  border-radius: 0.5em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

div.dtr-modal div.dtr-modal-content {
  position: relative;
  padding: 2.5em;
}

div.dtr-modal div.dtr-modal-content h2 {
  margin-top: 0;
}

div.dtr-modal div.dtr-modal-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  z-index: 12;
}

div.dtr-modal div.dtr-modal-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 767px) {
  div.dtr-modal div.dtr-modal-display {
      width: 95%;
  }

  .custom-table-html table td:first-child, .custom-table-html table th:first-child {
      padding-left: .5rem;
  }

  .dt-layout-row:last-child {
      flex-direction: column;
      gap: 14px;
  }

  .custom-table-html .dt-length label {
      display: none;
  }
}

/* Progress shortcode */
@-webkit-keyframes animateStripe {
  0% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0)
  }

  100% {
      -webkit-transform: translate(35px, 0);
      transform: translate(35px, 0)
  }
}

@keyframes animateStripe {
  0% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0)
  }

  100% {
      -webkit-transform: translate(35px, 0);
      transform: translate(35px, 0)
  }
}

@-webkit-keyframes animateStripeRTL {
  0% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0)
  }

  100% {
      -webkit-transform: translate(-35px, 0);
      transform: translate(-35px, 0)
  }
}

@keyframes animateStripeRTL {
  0% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0)
  }

  100% {
      -webkit-transform: translate(-35px, 0);
      transform: translate(-35px, 0)
  }
}

.ux-progressbar {
  --width: 200px;
  --height: 200px;
  --width-percent: 100%;
  --background: e7e7e7;
  --bar-background: #000;
  --bar-stroke-background: #000;
  --stroke-background: #e7e7e7;
  --title-color: #000;
  --text-color: #000;
  --stroke-width: 12px;
  position: relative;
  height: var(--height);
}

.ux-progressbar-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--title-color);
  width: var(--width);
}

.ux-progressbar-count-wrap * {
  color: var(--text-color)
}

.ux-progressbar-line-container, .ux-progressbar-line-rainbow-container {
  width: var(--width-percent, 100%);
}

.ux-progressbar-line {
  position: relative;
  display: block;
  width: 100%;
  height: var(--height);
  background: var(--background);
}

.ux-progressbar-line .ux-progressbar-count-wrap {
  position: absolute;
  right: 0;
  bottom: calc(100% + 5px);
  font-size: 16px;
  font-weight: 400;
  line-height: 1
}

.ux-progressbar-line-fill {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: var(--height, 20px);
  background: var(--bar-background);
  transform: translateY(-50%);
  transition: width 1500ms linear;
  overflow: hidden;
  color: var(--text-color);
}

.ux-progressbar-circle {
  position: relative;
  width: var(--width);
  height: var(--width)
}

.ux-progressbar-circle .ux-progressbar-title {
  font-size: 16px;
  font-weight: 400
}

.ux-progressbar-circle .ux-progressbar-count-wrap {
  font-size: 28px;
  font-weight: 700
}

.ux-progressbar-circle-shadow {
  width: 220px;
  height: 220px;
  padding: 10px;
  border-radius: 50%
}

.ux-progressbar-circle-pie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 0 50%)
}

.ux-progressbar-circle-inner {
  height: 100%;
  width: 100%;
  border-width: var(--stroke-width, 12px);
  border-style: solid;
  border-color: var(--stroke-background);
  border-radius: 50%;
  background: var(--background);
}

.ux-progressbar-circle-half {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-width: var(--stroke-width, 12px);
  border-style: solid;
  border-color: var(--bar-stroke-background);
  border-radius: 50%;
  clip-path: inset(0 50% 0 0)
}

.ux-progressbar-circle-half-left {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg)
}

.ux-progressbar-circle-half-right {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  visibility: hidden
}

.ux-progressbar-circle-inner-content {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center
}

.ux-progressbar-half-circle {
  position: relative;
  width: var(--width, 200px);
  height: calc(var(--width, 200px) / 2);
  overflow: hidden
}

.ux-progressbar-half-circle .ux-progressbar-circle-pie {
  clip-path: inset(0 0 50% 0)
}

.ux-progressbar-half-circle .ux-progressbar-circle-half {
  clip-path: inset(50% 0 0 0);
  transform: rotate(0deg);
  transition: -webkit-transform 1500ms linear;
  transition: transform 1500ms linear;
  transition: transform 1500ms linear, -webkit-transform 1500ms linear
}

.ux-progressbar-half-circle .ux-progressbar-circle-inner-content {
  transform: translateY(-100%);
}

.ux-progressbar-half-circle .ux-progressbar-title {
  font-size: 16px;
  font-weight: 400
}

.ux-progressbar-half-circle .ux-progressbar-count-wrap {
  font-size: 28px;
  font-weight: 700
}

.ux-progressbar-half-circle-after {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  clear: both
}

.ux-progressbar-postfix-label {
  float: right
}

.ux-progressbar-line-stripe .ux-progressbar-line-fill:after {
  content: "";
  position: absolute;
  top: 0;
  left: -35px;
  width: calc(100% + 70px);
  height: 100%;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 35px 35px
}

.ux-progressbar-line-animate .ux-progressbar-line-fill:after {
  -webkit-animation: animateStripe 2s linear infinite;
  animation: animateStripe 2s linear infinite
}

.ux-progressbar-line-animate-rtl .ux-progressbar-line-fill:after {
  -webkit-animation: animateStripeRTL 2s linear infinite;
  animation: animateStripeRTL 2s linear infinite
}

.ux-progressbar-circle-wrap>div {
  margin: 0 auto
}

.ux-progressbar .pr-image, .ux-progressbar .pr-image>* {
  height: 100%;
  width: 100%;
}

.ux-progressbar .pr-image.image>* {
  object-fit: cover;
  border-radius: 50%;
}

@-webkit-keyframes animateRainbow {
  0% {
      background-position: 0% 50%
  }

  50% {
      background-position: 100% 50%
  }

  100% {
      background-position: 0% 50%
  }
}

@keyframes animateRainbow {
  0% {
      background-position: 0% 50%
  }

  50% {
      background-position: 100% 50%
  }

  100% {
      background-position: 0% 50%
  }
}

.ux-progressbar-line-rainbow .ux-progressbar-line-fill {
  background: -webkit-gradient(linear, right top, left top, from(#9400d3), color-stop(#4b0082), color-stop(#0000ff), color-stop(#00ff00), color-stop(#ffff00), color-stop(#ff7f00), to(#ff0000));
  background: linear-gradient(270deg, #9400d3, #4b0082, #0000ff, #00ff00, #ffff00, #ff7f00, #ff0000);
  background-size: 500% 500%;
  -webkit-animation: animateRainbow 5s ease infinite;
  animation: animateRainbow 5s ease infinite
}

.ux-progressbar-circle-fill .ux-progressbar-circle-half {
  background-color: var(--bar-background);
}

.ux-progressbar-half-circle-fill .ux-progressbar-circle-half {
  background-color: var(--bar-background)
}

/* box type */
.ux-progressbar.ux-progressbar-box {
  background-color: var(--background);
  width: var(--width);
  height: var(--height);
}

.ux-progressbar-box.hide-percent .ux-progressbar-count-wrap {
  display: none;
}

.ux-progressbar.ux-progressbar-box .ux-progressbar-box-fill {
  background-color: var(--bar-background)
}

.ux-progressbar-box .ux-progressbar-box-inner-content {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 9
}

.ux-progressbar-box .ux-progressbar-count-wrap {
  font-size: 28px;
  font-weight: 700
}

.ux-progressbar-box .ux-progressbar-title {
  font-size: 16px;
  font-weight: 400
}

.ux-progressbar-box-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  height: 0;
  background-color: #000;
  -webkit-transition: height 1500ms linear;
  transition: height 1500ms linear
}

/* haft circ fill */
.ux-progressbar-half-circle-fill {
  width: var(--width);
  height: calc(var(--width) / 2);
  overflow: hidden;
}

.ux-progressbar-half-circle-fill-container .ux-progressbar-circle {
  width: var(--width);
  height: var(--width);
  position: relative;
}

.ux-progressbar-half-circle-fill-container .ux-progressbar-circle-inner-content {
  top: 35%;
}

.ux-progressbar-half-circle-fill-container .ux-progressbar-circle-pie {
  clip-path: none;
}

.ux-progressbar-half-circle-fill-container .ux-progressbar-circle-pie {
  transform: rotate(-90deg);
}

.align-lg-center .ux-progressbar {
  margin: 0 auto
}

.align-lg-left .ux-progressbar {
  margin: 0 auto 0 0
}

.align-lg-right .ux-progressbar {
  margin: 0 0 0 auto
}

@media only screen and (max-width: 850px) {
  .align-md-center .ux-progressbar {
      margin: 0 auto
  }

  .align-md-left .ux-progressbar {
      margin: 0 auto 0 0
  }

  .align-md-right .ux-progressbar {
      margin: 0 0 0 auto
  }
}

@media only screen and (max-width: 550px) {
  .align-sm-center .ux-progressbar {
      margin: 0 auto
  }

  .align-sm-left .ux-progressbar {
      margin: 0 auto 0 0
  }

  .align-sm-right .ux-progressbar {
      margin: 0 0 0 auto
  }
}

/* Facebook embed */
.ux-facebook-widget.fb_iframe_widget {
  width: 100% !important;
}

.ux-facebook-widget.fb_iframe_widget span {
  width: 100% !important;
}

.ux-facebook-widget.fb_iframe_widget iframe {
  position: relative;
  width: 100% !important;
}

.ux-facebook-widget.fb-like {
  height: 1px;
}

.ux-widget-facebook-comments iframe {
  width: 100% !important;
}

.ux-facebook-widget.fb_iframe_widget, .ux-facebook-widget.fb_iframe_widget span {
  width: 100% !important;
}

.fb_iframe_widget span {
  display: inline-block;
  position: relative;
  text-align: justify;
}

/* .toc-contents .toc-contents__wrap{
position: fixed;
right: 0;
z-index: 99;
} */
.toc-contents .toc-contents__wrap {
  /* position: fixed;
z-index: 99;
opacity: 1;
visibility: visible; */
}

.toc-contents__wrap {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}

/* single post title */
.single-post-title a:hover {
  color: var(--color-hover, --color) !important;
}

.text-normal {
  font-weight: normal;
}

.text-bold {
  font-weight: bold;
}

.text-semibold {
  font-weight: 600;
}

.text-italic {
  font-style: italic;
}

.text-bold-italic {
  font-weight: bold;
  font-style: italic;
}

.text-semibold-italic {
  font-weight: 600;
  font-style: italic;
}

/* single post content */
.obelix-content {
  --obelix-content-height: 54em;
}

.collapsed-content {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.collapsed-content.hide-content {
  height: var(--obelix-content-height);
}

/* single post tag */
.tag-item {
  padding: 5px;
  margin-right: 5px;
  line-height: 2.19em;
}

.tags-style-underline a {
  text-decoration: underline;
}

.tags-style-button a {
  color: var(--fs-color-primary);
  background-color: transparent;
  border: 2px solid;
}

/* Button style */
.ux-plus-button {
  overflow: hidden;
  width: 100%;
}

.ux-plus-button.w-auto {
  width: auto;
}

.ux-plus-button a {
  color: var(--button-color);
  display: inline-flex;
  width: 100%;
}

.ux-plus-button span {
  position: relative;
  line-height: inherit;
  width: 100%;
}

.ux-plus-button:hover, .ux-plus-button:focus {
  color: var(--color-hover);
  background-color: var(--bg-color-hover);
}

/* style 1 */
.ux-plus-button.style-1 {
  padding: 8px 25px;
  color: var(--button-color);
}

.ux-plus-button.style-1 .icon {
  width: 40px;
  height: 40px;
  margin-left: 20px;
  line-height: 42px;
  text-align: center;
  background-color: var(--icon-bg-color, #FFFBEA);
  flex-shrink: 0;
  font-weight: 300;
  transition: 0.6s;
  font-size: 26px;
  border-radius: 50%;
  z-index: 1;
  color: var(--button-color, #000);
}

.ux-plus-button.style-1 a::before {
  right: 0;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.ux-plus-button.style-1::before {
  content: "";
  position: absolute;
  right: 35px;
  top: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  opacity: 0;
  border-radius: 50%;
  z-index: 0;
  transition: all 0.6s;
}

.ux-plus-button.style-1:hover::before {
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  border-radius: var(--border-radius)px;
  background-color: var(--bg-color-hover);
}

/* style 2 */
.ux-plus-button.style-2 {
  color: var(--button-color, #111);
  background-color: transparent;
  border: 1px solid var(--border-color, #111);
  z-index: 0;
}

.ux-plus-button.style-2:hover * {
  color: var(--color-hover, #fff);
}

.ux-plus-button.style-2:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .5s cubic-bezier(.54, .3, .02, 1.01);
  transform-origin: left;
  transform: scaleX(0);
  background-color: transparent;
  z-index: -1;
}

.ux-plus-button.style-2:hover:after {
  transform: scaleX(1);
  background-color: var(--bg-color-hover, #000000);
}

/* style 3 */
.ux-plus-button.style-3 {
  color: var(--button-color, #111);
  background-color: transparent;
  border: 1px solid var(--border-color, #111);
  z-index: 0;
}

.ux-plus-button.style-3:hover * {
  color: var(--color-hover, #fff);
}

.ux-plus-button.style-3:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .5s cubic-bezier(.54, .3, .02, 1.01);
  transform-origin: center;
  transform: scaleX(0);
  background-color: transparent;
  z-index: -1;
}

.ux-plus-button.style-3:hover:after {
  transform: scaleX(1);
  background-color: var(--bg-color-hover, #000000);
}

/* style 4 */
.ux-plus-button.style-4 {
  color: var(--button-color, #111);
  background-color: var(--bg-color, transparent);
  border: 1px solid var(--border-color, #111);
  z-index: 0;
}

.ux-plus-button.style-4:hover * {
  color: var(--color-hover, #fff) !important;
}

.ux-plus-button.style-4:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all .5s cubic-bezier(.54, .3, .02, 1.01);
  left: 0;
  right: 0;
  transform: skewX(-45deg) scale(0, 1);
  z-index: -1;
}

.ux-plus-button.style-4:hover:after {
  transform: skewX(-45deg) scale(1, 1);
  background-color: var(--bg-color-hover, #000000);
}

/* Product label */
.ux-product-label-custom {
  position: relative;
}

.ux-product-label-custom.absolute-label {
  position: absolute;
}

/* Product add to cart */
.ux-plus-add-to-cart.absolute_icon {
  position: absolute;
}

.ux-plus-add-to-cart .image-tools .icon {
  position: relative;
  font-size: 20px;
}

.ux-plus-add-to-cart .grid-tools {
  display: block;
}

.ux-plus-add-to-cart .grid-tools a {
  opacity: 1;
  position: relative;
  background-color: unset;
}

.ux-plus-add-to-cart a:hover .icon, .ux-plus-add-to-cart a .icon:hover {
  color: var(--icon-color-hover) !important;
}

.ux-plus-add-to-cart .grid-tools a+a {
  border-left: none;
  margin-bottom: 2em;
}

.ux-plus-add-to-cart .grid-tools a .icon {
  padding: 5px;
}

.ux-plus-add-to-cart .quick-view-wrapper {
  position: relative;
}

.ux-plus-add-to-cart .processing:before {
  margin-left: 2rem;
  margin-top: -1.2rem;
}

/* cursor */
/* ------------------------------------------  */
#obelix-magic-mouse {
  position: fixed;
  z-index: 400;
  pointer-events: none;
  top: 0;
  left: 0;
  --mouse-color: rgba(150, 150, 150, 1);
  /* display: none */
}

@media only screen and (max-width: 1200px) {
  #obelix-magic-mouse {
      /* display:none!important */
  }
}

#obelix-magic-mouse .magic-mouse--inner {
  position: absolute;
  width: 5rem;
  height: 5rem;
  left: -2.5rem;
  top: -2.5rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: all .3s ease
}

#obelix-magic-mouse .magic-mouse--inner svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

#obelix-magic-mouse .magic-mouse--inner span {
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

#obelix-magic-mouse.mouse--hide {
  opacity: 0
}

#obelix-magic-mouse .magic-mouse--inner.mouse--active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: .2s
}

/* style */
#obelix-magic-mouse .magic-mouse--default {
  position: absolute;
  left: -4px;
  top: -4px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  transition: all .3s ease;
  box-shadow: 0 10px 20px transparent;
  background-color: var(--mouse-color)
}

#obelix-magic-mouse .magic-mouse--default:after {
  content: '';
  border-style: solid;
  border-width: thin;
  opacity: .4;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: inherit;
  transition: all .3s ease;
  z-index: -1
}

.mixblend-mode {
}

#obelix-magic-mouse.mouse--hover:not(.has-tooltip) .magic-mouse--default:after {
  width: 3.2rem;
  height: 3.2rem;
}

#obelix-magic-mouse.mouse--hover .magic-mouse--default:after {
  width: 3.2rem;
  height: 3.2rem;
}

/* has-tooltip */
#obelix-magic-mouse.mouse--hover.has-tooltip .magic-mouse--default, #obelix-magic-mouse.mouse--hover.mixblend-mode .magic-mouse--default {
  width: 3.2rem;
  height: 3.2rem;
  left: -1.6rem;
  top: -1.6rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
  background-color: white;
  /* mix-blend-mode: normal */
}

#obelix-magic-mouse.mouse--hover.mixblend-mode {
  mix-blend-mode: difference
}

#obelix-magic-mouse.mouse--hover.mixblend-mode .magic-mouse--default {
  box-shadow: none;
}

#obelix-magic-mouse.mouse--hover.has-tooltip .magic-mouse--default:after, #obelix-magic-mouse.mouse--hover.mixblend-mode .magic-mouse--default:after {
  opacity: 0;
}

#obelix-magic-mouse.mouse--hover.link-hover .magic-mouse--default {
  background-color: transparent;
}

#obelix-magic-mouse.mouse--hover.link-hover .magic-mouse--default::after {
  border: none;
  background: transparent;
  -webkit-box-shadow: 0 0 30px rgba(64, 64, 64, 0.8);
  box-shadow: 0 0 30px rgba(64, 64, 64, 0.8);
}

/* Heading animated */
/* ------------------------------------------  */
.splitting span {
  border: none !important;
  margin: unset !important;
  padding: unset !important;
}

.splitting .word, .splitting .char {
  display: inline-block;
}

/* Psuedo-element chars */
.splitting .char {
  position: relative;
}

/**
* Populate the psuedo elements with the character to allow for expanded effects
* Set to `display: none` by default; just add `display: block` when you want
* to use the psuedo elements
*/
.splitting .char::before, .splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  user-select: none;
}

/* Expanded CSS Variables */
.splitting {
  /* The center word index */
  --word-center: calc((var(--word-total) - 1) / 2);
  /* The center character index */
  --char-center: calc((var(--char-total) - 1) / 2);
  /* The center character index */
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  /* Pecent (0-1) of the word's position */
  --word-percent: calc(var(--word-index) / var(--word-total));
  /* Pecent (0-1) of the line's position */
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  /* Percent (0-1) of the char's position */
  --char-percent: calc(var(--char-index) / var(--char-total));
  /* Offset from center, positive & negative */
  --char-offset: calc(var(--char-index) - var(--char-center));
  /* Absolute distance from center, only positive */
  --distance: calc((var(--char-offset) * var(--char-offset)) / var(--char-center));
  /* Distance from center where -1 is the far left, 0 is center, 1 is far right */
  --distance-sine: calc(var(--char-offset) / var(--char-center));
  /* Distance from center where 1 is far left/far right, 0 is center */
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

/* .splitting-animated .char{
-webkit-animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
-webkit-animation-delay: calc(30ms * var(--char-index));
animation-delay: calc(30ms * var(--char-index));
} */
.splitting-animated .char {
  -webkit-animation: fadeInUp2 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInUp2 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

@keyframes fadeInRight {
  0% {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
  }

  to {
      opacity: 1;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
  }
}

@-webkit-keyframes fadeInUp2 {
  0% {
      opacity: 0;
      -webkit-transform: translateY(20px);
      transform: translateY(20px)
  }

  100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }
}

@keyframes fadeInUp2 {
  0% {
      opacity: 0;
      -webkit-transform: translateY(20px);
      transform: translateY(20px)
  }

  100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }
}

/* Progress Track */
/* ------------------------------------------  */
#obelix-progress-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 3px;
  z-index: 1042;
  background-color: white;
  /* display: block; */
}

#obelix-progress-bar .obelix-progress-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: var(--fs-color-primary);
}

#top-link.back-to-top .obelix-progress-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

#top-link.back-to-top .obelix-progress-circle path {
  stroke: var(--fs-color-primary);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  fill: none;
}

.obelix-scroll-track #top-link.back-to-top {
  border: none;
}

/* Fixed Footer */
/* ------------------------------------------  */
body.obelix-absolute-footer #content {
  position: relative;
  background-color: white;
  z-index: 1;
}

body.obelix-absolute-footer #content section:last-child {
  padding-bottom: 0 !important;
}

body.obelix-absolute-footer #footer.footer-wrapper {
  position: fixed;
  bottom: 0;
  z-index: 0;
}

/* Aside Contacts */
/* ------------------------------------------  */
#obelix-sticky-contact {
  position: fixed;
  right: 22px;
  bottom: 40px;
  transition: all ease 0.2s;
  z-index: 1040;
  --item-space: 12px;
  --item-width: 44px;
}

#obelix-sticky-contact.align-left {
  left: 20px;
  right: auto;
}

body.has-sticky-product-cart #obelix-sticky-contact {
  bottom: 100px;
}

body.back-top-top-active #obelix-sticky-contact {
  bottom: 80px;
}

body.has-sticky-product-cart.back-top-top-active .sticky-contacts {
  bottom: 160px;
}

.sticky-contacts>.floating-chat-item {
  width: var(--item-width);
  height: var(--item-width);
  border-radius: 50%;
  display: block;
  text-align: center;
  line-height: var(--item-width);
  position: relative;
  border: none;
}

.sticky-contacts>.floating-chat-item a {
  display: block;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background: var(--sticky-chat-bg);
  border-radius: 50%;
}

#obelix-sticky-contact .floating-chat-item, #obelix-sticky-contact .obelix--sticky-btn {
  transition: transform 100ms ease-in-out;
  cursor: pointer;
}

#obelix-sticky-contact .floating-chat-item:hover, #obelix-sticky-contact .obelix--sticky-btn:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px, rgba(0, 0, 0, 0.2) 0px 4px 16px;
  transform: scale(1.06);
}

.sticky-contacts .floating-chat-item:not(:last-of-type):not(:only-child) {
  margin-bottom: var(--item-space);
}

.sticky-contacts .floating-chat-item svg {
  height: calc(var(--item-width) / 2);
}

.sticky-contacts .floating-chat-item>a svg path {
  fill: var(--sticky-chat-icon);
}

.sticky-contacts .floating-chat-item::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: -2;
  background-color: #474747;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  -webkit-animation: ping 1s ease-in-out infinite both;
  animation: ping 2s ease-in-out infinite both;
}

/* .sticky-contacts .floating-chat-item::after {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
content: "";
z-index: -1;
background-color: #fff;
width: var(--item-width);
height: var(--item-width);
border-radius: 100px;
} */
.sticky-contacts .floating-chat-item>a.phone svg {
  width: calc(var(--item-width) / 2);
}

.sticky-contacts .floating-chat-item>a.zalo-chat svg {
  width: calc(var(--item-width) / 2);
  margin-right: 1px;
}

.sticky-contacts.item-4 {
  right: 16px;
}

.sticky-contacts.item-4 .floating-chat-item>a, .sticky-contacts.item-4 .floating-chat-item>a.phone::after {
  width: 42px;
  height: 42px;
}

.sticky-contacts.item-4 .floating-chat-item>a:not(:last-child):not(:only-child) {
  margin-bottom: 10px;
}

.sticky-contacts.item-4 .floating-chat-item>a svg {
  width: 23px;
}

.sticky-contacts.item-4 .floating-chat-item>a.phone svg {
  width: 20px;
}

.sticky-contacts.item-4 .floating-chat-item>a.zalo-chat svg {
  width: 25px;
}

/* chat collapse */
#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts, #obelix-sticky-contact.obelix--sticky-chat-collap .obelix--sticky-btn {
  position: relative;
  bottom: 0;
  right: 0;
}

.obelix--sticky-chat-collap .obelix--sticky-btn {
  display: inline-block;
  /* padding: 12px; */
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 4px, rgba(0, 0, 0, 0.2) 0px 2px 12px;
  background: black;
  border-radius: 50%;
  height: var(--item-width);
  width: var(--item-width);
  display: flex;
  align-items: center;
  justify-content: center;
}

.obelix--sticky-chat-collap .obelix--chat-laucher {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}

.conversations-visitor-open-icon {
  width: 26px;
}

.obelix--sticky-chat-collap div[direction="right"] svg {
  transition: transform 0.16s linear, opacity 0.06s linear;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.obelix--sticky-chat-collap.active div[direction="right"] svg {
  opacity: 0;
  transform: rotate(-25deg) scale(0.5);
}

.obelix--sticky-chat-collap div[direction="left"] {
  transition: transform 0.16s linear, opacity 0.06s linear;
  opacity: 0;
  transform: rotate(-25deg) scale(0.5);
  line-height: 1;
}

.obelix--sticky-chat-collap.active div[direction="left"] {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: relative;
  margin-bottom: 0;
  transition: all 100ms ease-in-out;
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(-60px);
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item {
  position: absolute;
  transition-property: position, transform;
  transition-duration: 100ms;
  transition-timing-function: ease;
  margin-bottom: 0;
  bottom: 0;
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(1) {
  bottom: calc(-1* var(--item-width));
  transition-delay: 0s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item:nth-child(2) {
  transition-delay: 0.1s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item:nth-child(3) {
  transition-delay: 0.2s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item:nth-child(4) {
  transition-delay: 0.3s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item:nth-child(5) {
  transition-delay: 0.4s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item:nth-child(6) {
  transition-delay: 0.5s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item:nth-child(7) {
  transition-delay: 0.6s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item:nth-child(8) {
  transition-delay: 0.7s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item:nth-child(9) {
  transition-delay: 0.8s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item:nth-child(10) {
  transition-delay: 0.9s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item:nth-child(11) {
  transition-delay: 1s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item:nth-child(12) {
  transition-delay: 1.1s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item:nth-child(13) {
  transition-delay: 1.2s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap .sticky-contacts .floating-chat-item:nth-child(14) {
  transition-delay: 1.3s, 0s;
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(1) {
  bottom: 0;
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(2) {
  bottom: calc(var(--item-width) + var(--item-space));
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(3) {
  bottom: calc(2 * var(--item-width) + var(--item-space) * 2);
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(4) {
  bottom: calc(3 * var(--item-width) + var(--item-space) * 3);
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(5) {
  bottom: calc(4 * var(--item-width) + var(--item-space) * 4);
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(6) {
  bottom: calc(5 * var(--item-width) + var(--item-space) * 5);
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(7) {
  bottom: calc(6 * var(--item-width) + var(--item-space) * 6);
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(8) {
  bottom: calc(7 * var(--item-width) + var(--item-space) * 7);
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(9) {
  bottom: calc(8 * var(--item-width) + var(--item-space) * 8);
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(10) {
  bottom: calc(9 * var(--item-width) + var(--item-space) * 9);
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(11) {
  bottom: calc(10 * var(--item-width) + var(--item-space) * 10);
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(12) {
  bottom: calc(11 * var(--item-width) + var(--item-space) * 11);
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(13) {
  bottom: calc(12 * var(--item-width) + var(--item-space) * 12);
}

#obelix-sticky-contact.obelix--sticky-chat-collap.active .sticky-contacts .floating-chat-item:nth-child(14) {
  bottom: calc(14 * var(--item-width) + var(--item-space) * 14);
}

#obelix-sticky-contact .obelix-float-tooltip {
  position: absolute;
  right: 100%;
  transform: translateY(-50%);
  text-align: right;
  white-space: nowrap;
  background: var(--tooltip-bg-color, rgb(24, 23, 23));
  line-height: 1;
  padding: 8px 10px;
  font-weight: bold;
  font-size: .7rem;
  border-radius: 4px;
  top: 50%;
  z-index: 1;
  color: var(--tooltip-color, white);
  opacity: 0;
  visibility: hidden;
}

#obelix-sticky-contact.align-left .obelix-float-tooltip {
  text-align: left;
  right: auto;
  left: 100%;
}

#obelix-sticky-contact .obelix-float-tooltip::after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border: 8px solid transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all ease .3s;
}

#obelix-sticky-contact.align-right .obelix-float-tooltip::after {
  right: -7px;
  border-left-color: var(--tooltip-bg-color, rgb(24, 23, 23));
  border-right-width: 0px;
}

#obelix-sticky-contact.align-left .obelix-float-tooltip::after {
  left: -7px;
  border-right-color: var(--tooltip-bg-color, rgb(24, 23, 23));
  border-left-width: 0px;
}

#obelix-sticky-contact .floating-chat-item:hover .obelix-float-tooltip {
  right: calc(100% + 10px);
  opacity: 1;
  visibility: visible;
}

#obelix-sticky-contact.align-left .floating-chat-item:hover .obelix-float-tooltip {
  right: auto;
  left: calc(100% + 10px);
}

/* --list-height: 110px;
--item-count: 2; */
@-webkit-keyframes ping {
  0% {
      transform: translate(-50%, -50%) scale(0.5);
      opacity: 1;
  }

  80% {
      transform: translate(-50%, -50%) scale(1.6);
      opacity: 0;
  }

  100% {
      transform: translate(-50%, -50%) scale(2.2);
      opacity: 0;
  }
}

@keyframes ping {
  0% {
      transform: translate(-50%, -50%) scale(0.5);
      opacity: 1;
  }

  80% {
      transform: translate(-50%, -50%) scale(1.6);
      opacity: 0;
  }

  100% {
      transform: translate(-50%, -50%) scale(2.2);
      opacity: 0;
  }
}

/* Creative Slider */
/* ------------------------------------------  */
/* time progress */
.dark .flickity-prev-next-button{
  color: white;
}
.creative-slider .overlays{
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.creative-slider .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.creative-slider .cell-inner {
  z-index: 2;
}
/* .creative-slider .cell-inner{
  position: relative;
  z-index: 1;
} */
#content > .creative-slider.is-simple .cell-inner {
  padding-top: 100px;
}
#content > .creative-slider .slider-progress.is-circle {
  top: 5rem;
}
.creative-slider .slider-progress.is-bar {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  height:.2rem;
  width: 100%;
}
.creative-slider .slider-progress.is-bar .progress{
  height: 100%;
  background-color: white;
}
.creative-slider .slider-progress.is-circle {
  position: absolute;
  right: 2rem;
  top: 2rem;
  z-index: 10;
}
.creative-slider .slider-progress.is-circle .outside {
  stroke: rgba(255, 255, 255, 0.419);
  stroke-width : 1
}

.creative-slider .slider-progress.is-circle .inside {
  stroke: white;
  stroke-width : 2
}


/* style project */
.creative-slider.is-project .cell-inner {
  position: absolute;
  bottom: 2rem;
  left: auto;
  right: 2rem;
  background: rgba(0, 0, 0, 0.1);
  width: 60%;
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  border-radius: .6rem;
  z-index: 1;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  transition: clip-path cubic-bezier(0.79, 0.1, 0.58, 1) .9s;
  transition-delay: .55s;
}

.creative-slider.is-project .is-selected .cell-inner{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}


.slider-cell.prev-slide {
  background-size: 110%;
}

.creative-slider.is-project .slide-bg{
 transform-origin: center center;
}
.creative-slider.is-project .flickity-slider {
  transform: none!important;
}
.creative-slider.is-project .flickity-slider > * {
  left: 0 !important;
  opacity: 1;
}

.creative-slider.is-project .flickity-page-dots, .creative-slider.is-project .flickity-prev-next-button {
  z-index: 3;
}
.creative-slider.is-project .flickity-prev-next-button,.creative-slider.is-project .slider:hover .flickity-prev-next-button{
  bottom: 2rem!important;
  top: auto!important;
  transform: none!important;
  left: 2rem;
  right: auto;
  opacity: 1;
  visibility: visible;
  color: white;
}
.creative-slider.is-project .flickity-prev-next-button.next{
  transform: translateX(3rem)!important;
}
.creative-slider.is-project .flickity-prev-next-button::before{
  font-size: 22px;
}
.creative-slider.is-project .flickity-prev-next-button.next::before{
  content: "\e95f";
}
.creative-slider.is-project .flickity-prev-next-button.previous::before{
  content: "\e95d";
}
@media screen and (max-width: 849px) {
  .creative-slider.is-project .cell-inner {
    bottom: 2rem;
    right: auto;
    left: 2rem;
    width: 72%;
  }
  .creative-slider.is-project .flickity-prev-next-button{
    display: none;
  }
}


.creative-slider {
  --slider-height: 500px;
  --content-pos: 50%;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient( to bottom, rgba(14, 29, 51, 0.8), rgba(14, 29, 51, 0.2) );
  transition: none!important;
}

.creative-slider .slider-wrap {
  width: 100%;
  height: var(--slider-height);
  overflow: hidden;
}

.creative-slider .slider-wrap .slider-cell {
  width: 100%;
  height: 100%;

}

.creative-slider.is-simple .slider-wrap .slider-cell .cell-inner {
  position: relative;
  top: var(--content-pos);
  transform: translateY(-50%);
  color: white;
  text-align: center;
}

.creative-slider.is-simple .cell-inner .cell-subtitle {
  
}

.creative-slider.is-simple .cell-inner .cell-title {
 
}

.creative-slider.is-simple .cell-inner .cell-description {
  max-width: 50%;
  margin: 0 auto 27px;
}

.creative-slider.is-simple  .cell-inner .btn {
  
}

.creative-slider.is-simple .slider-wrap .slider-cell .cell-inner .btn:hover {
  background: #fff;
  color: #000;
}

.creative-slider .slider-wrap.flickity-prev-next-button {
  width: 80px;
  height: 80px;
  background: transparent;
}

.creative-slider .slider-wrap.flickity-prev-next-button:hover {
  background: transparent;
}

.creative-slider .slider-wrap.flickity-prev-next-button .arrow {
  fill: white;
}

.creative-slider .slider-wrap.flickity-page-dots {
  bottom: 30px;
}

.creative-slider .slider-wrap.flickity-page-dots .dot {
  width: 30px;
  height: 4px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 0 solid white;
  border-radius: 0;
}

.creative-slider .slider-cell .cell-inner .cell-title, .creative-slider .cell-inner .cell-subtitle, .creative-slider .cell-inner .cell-description {
  overflow: hidden;
  display: inline-block;
}

.creative-slider .cell-inner .cell-title *, .creative-slider .cell-inner .cell-subtitle *, .creative-slider .cell-inner .cell-description * {
  transform: translateY(105%);
  transition: transform ease 0.5s;
  display: inline-block;
  transition-delay: 0.3s;
  line-height: 1.35;
}

.creative-slider .slider-cell.is-selected .cell-inner .cell-title *, .creative-slider .slider-cell.is-selected .cell-inner .cell-subtitle *, .creative-slider .slider-cell.is-selected .cell-inner .cell-description * {
  transform: translateY(0%);
}

.creative-slider .cell-inner .cell-subtitle * {
  transition-delay: 0.5s;
}

.creative-slider .slider-cell .cell-inner .cell-description * {
  transition-delay: 0.65s;
}

.creative-slider .slider-cell .cell-inner .call-action {
  overflow: hidden;
  display: block;
  gap: 10px;
}

.creative-slider .slider-cell .cell-inner .call-action > .call-action-inner * {
  display: inline-block;
  margin-bottom: 0;
  /* display: inline-flex; */
}

.creative-slider .slider-cell .cell-inner .call-action > .call-action-inner {
  transform: translateY(105%);
  transition: transform ease 0.5s;
  transition-delay: 0.85s;
  display: inline-flex;
  gap: 16px;
}

.creative-slider .slider-cell.is-selected .cell-inner .call-action > .call-action-inner {
  transform: translateY(0%);
}
.creative-slider .cell-inner .cell-title{
  font-size: 3rem;
}
.cell-description  *{
  font-size: 1.2rem!important;
}
/* .creative-slider .slider-cell .cell-inner .cell-title,
.creative-slider .slider-cell .cell-inner .cell-subtitle{
overflow: hidden;
position: relative;
display: inline-flex;
}
.creative-slider .slider-cell .cell-inner .cell-title > span,
.creative-slider .slider-cell .cell-inner .cell-subtitle  > span{
position: relative;
transform: translateY(100%);
transition: all ease 0.5s;
display: inline-block;
}
.creative-slider .slider-cell.is-selected .cell-inner .cell-title > span,
.creative-slider .slider-cell.is-selected .cell-inner .cell-subtitle > span {
transform: translateY(0);
opacity: 1;
}
.creative-slider  .slider-cell.is-selected .cell-inner .cell-subtitle > span {
transition-delay: 0.05s;
} */
/* Recommended styles for Splitting */
.splitting .word, .splitting .char {
  display: inline-block;
}

/* Psuedo-element chars */
.splitting .char {
  position: relative;
}

/**
* Populate the psuedo elements with the character to allow for expanded effects
* Set to `display: none` by default; just add `display: block` when you want
* to use the psuedo elements
*/
.splitting .char::before, .splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  user-select: none;
}

/* Expanded CSS Variables */
.splitting {
  /* The center word index */
  --word-center: calc((var(--word-total) - 1) / 2);
  /* The center character index */
  --char-center: calc((var(--char-total) - 1) / 2);
  /* The center character index */
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  /* Pecent (0-1) of the word's position */
  --word-percent: calc(var(--word-index) / var(--word-total));
  /* Pecent (0-1) of the line's position */
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  /* Percent (0-1) of the char's position */
  --char-percent: calc(var(--char-index) / var(--char-total));
  /* Offset from center, positive & negative */
  --char-offset: calc(var(--char-index) - var(--char-center));
  /* Absolute distance from center, only positive */
  --distance: calc( (var(--char-offset) * var(--char-offset)) / var(--char-center) );
  /* Distance from center where -1 is the far left, 0 is center, 1 is far right */
  --distance-sine: calc(var(--char-offset) / var(--char-center));
  /* Distance from center where 1 is far left/far right, 0 is center */
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

/* .splitting .char {
animation: slide-in 1s cubic-bezier(0.5, 0, 0.5, 1) both;
animation-delay: calc(60ms * var(--char-index));
} */
.is-selected .splitting .char {
  -webkit-animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

@keyframes fadeInRight {
  0% {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
  }

  to {
      opacity: 1;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
  }
}

@keyframes slide-in {
  from {
      transform: translateY(-1em) rotate(-0.5turn) scale(0.5);
      opacity: 0;
  }
}

/* obelix-classic-menu */
@media only screen and (min-width: 1025px) {
  body.obelix-classic-menu .sub-menu.nav-dropdown {
      display: flex;
      flex-direction: column;
  }

  body.obelix-classic-menu .menu-item-has-children > .nav-dropdown.sub-menu {
      transition: transform ease .3s;
  }

  body.obelix-classic-menu .menu-item-has-children::before, body.obelix-classic-menu .menu-item-has-children::after {
      transition: transform ease .3s;
      transition-delay: .5s;
  }

  body.obelix-classic-menu .menu-item-has-children > .nav-dropdown.sub-menu, body.obelix-classic-menu .menu-item-has-children::before, body.obelix-classic-menu .menu-item-has-children::after {
      transform: translateY(1rem);
  }

  body.obelix-classic-menu .menu-item-has-children.current-dropdown > .nav-dropdown.sub-menu, body.obelix-classic-menu .menu-item-has-children.current-dropdown::before, body.obelix-classic-menu .menu-item-has-children.current-dropdown::after {
      transform: translateY(0);
  }

  body.obelix-classic-menu .sub-menu .nav-dropdown li > a, body.obelix-classic-menu .sub-menu li {
      position: relative;
      width: 100%;
  }

  body.obelix-classic-menu .nav-dropdown .menu-item-has-children>a, .nav-dropdown .nav-dropdown-col>a {
      font-weight: normal;
      color: #4d4d4d;
  }

  body.obelix-classic-menu .nav-dropdown li:hover > a, body.obelix-classic-menu .nav-dropdown li.active > a {
      color: var(--fs-color-primary);
  }

  body.obelix-classic-menu .nav-dropdown.sub-menu, body.obelix-classic-menu .nav-dropdown .sub-menu {
      padding: var(--menu-padding-y) 0!important;
      background-color: var(--dropdown-bg, white);
      border-radius: var(--dropdown-border-radius, 0);
      border: 1px solid ;
      border-color: var(--dropdown-border-color, transparent);
  }

  body.obelix-classic-menu.nav-dropdown-has-shadow .sub-menu {
      box-shadow: 0px 0px 50px 0px rgba(0,0,0,.15);
  }

  body.obelix-classic-menu .nav-dropdown.sub-menu li a {
      padding: var(--menu-padding-y) 0;
      margin: 0 var(--menu-padding-x);
      text-transform: none;
      font-size: var(--dropdown-nav-size, .9rem);
  }

  body.obelix-classic-menu .header-top .nav-dropdown.sub-menu li a {
      font-size: .8rem;
  }

  body.obelix-classic-menu .nav-dropdown.dropdown-uppercase.sub-menu li a {
      text-transform: uppercase;
  }

  body.obelix-classic-menu .nav-dropdown li.menu-item-has-children > a::after {
      font-family: fl-icons;
      content: "\f105";
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
  }

  body.obelix-ui.obelix-classic-menu .nav-dropdown li.menu-item-has-children > a::after {
      content: "\e904";
  }

  body.obelix-classic-menu .sub-menu .sub-menu {
      font-size: .92rem;
      position: absolute;
      top: calc(-1 * var(--menu-padding-y));
      left: 100%;
      transform: translateX(-1rem);
      min-width: 180px;
      transition: transform ease .3s;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
  }

  body.obelix-classic-menu .nav-dropdown li.menu-item-has-children:hover > .sub-menu {
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
  }

  /* item hover style */
  body.obelix-classic-menu .nav-dropdown-simple li:hover {
      background-color: rgba(0,0,0,.03);
  }

  body.obelix-classic-menu .nav-dropdown-simple .nav-column li>a:hover, body.obelix-classic-menu .nav-dropdown.nav-dropdown-simple>li>a:hover {
      background-color: transparent;
  }

  body.obelix-classic-menu .nav-dropdown.nav-dropdown-bold li a {
      color: #4d4d4d!important;
  }

  body.obelix-classic-menu .nav-dropdown.nav-dropdown-bold li a:hover {
      background-color: transparent;
      color: #ffffff!important;
  }

  body.obelix-classic-menu .nav-dropdown.nav-dropdown-bold li > a::before {
      content: "";
      display: block;
      position: absolute;
      width: calc(100% - 4px);
      height: calc(100% - 4px);
      left: 2px;
      top: 2px;
      z-index: -1;
      background-color: var(--fs-color-primary);
      border-radius: .3rem;
      opacity: 0;
      transition: all ease .3s;
  }

  body.obelix-classic-menu .nav-dropdown.nav-dropdown-bold li:hover > a::before {
      opacity: 1;
  }
}

/******* nav vertical ********/
/* toggle style */
body.obelix-classic-menu .nav-sidebar.nav-vertical .toggle {
  margin-right: 0;
  opacity: 1;
}

body.obelix-classic-menu .nav-sidebar.nav-vertical .toggle i {
  color: hsla(0, 0%, 7%, 0.85);
}

body.obelix-ui.obelix-classic-menu .nav-sidebar.nav-vertical .toggle i::before {
  content: "\e9a6";
}

body.obelix-ui .nav-sidebar.nav-vertical .active > .toggle i::before {
  content: "\ea44";
}

body.obelix-ui.obelix-classic-menu .nav-vertical .active > .toggle {
  transform: none
}

body.obelix-classic-menu .nav-vertical .sub-menu li.menu-item-has-children .toggle {
  position: absolute;
  right: 0;
  top: 0;
}

/* menu style */
body.obelix-classic-menu .nav.nav-vertical {
  padding-left: 18px;
  padding-right: 18px;
}

body.obelix-classic-menu .nav-sidebar.nav-vertical>li.menu-item.active, body.obelix-classic-menu .nav-sidebar.nav-vertical>li.menu-item:hover {
  background-color: transparent;
}

body.obelix-classic-menu .nav-vertical ul.sub-menu:not(.nav-dropdown), body.obelix-classic-menu .nav-vertical ul.children:not(.nav-dropdown) {
  position: static;
  display: block;
  padding: 0 0 0 19px;
  opacity: 0;
  transform: translateY(19px) translateX(0)!important;
  transition: transform 0.15s ease-in-out, opacity 0.15s ease-in-out;
  margin-top: 0;
}

body.obelix-classic-menu .nav-vertical > li > ul {
  margin: 0 0 26px 10px;
  border-left: 1px solid #ebebeb;
}

/* sub menu level 2 */
body.obelix-classic-menu .nav-vertical > li > ul > li ul {
  padding-left: 0!important;
}

body.obelix-classic-menu .nav-vertical > li > ul > li ul li {
  border-left: 1px solid #ebebeb;
  /* margin: 0px 0 0 7px!important; */
  margin: 0px!important;
  padding-left: 14px!important;
}

body.obelix-classic-menu .nav-vertical > li > ul > li ul li a {
  font-size: .85rem!important;
  opacity: .92;
}

body.obelix-classic-menu .nav-vertical:not(.nav-slide) .active > .children, body.obelix-classic-menu .nav-vertical:not(.nav-slide) .active > .sub-menu {
  opacity: 1;
  transition: transform 0.15s ease-in-out, opacity 0.15s ease-in-out;
  transform: translateY(0px) translateX(0)!important;
}

body.obelix-classic-menu .off-canvas .nav-vertical li {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

body.obelix-classic-menu .off-canvas .nav-vertical li a {
  padding: 14px 0px;
}

body.obelix-classic-menu .off-canvas .nav-vertical li li a {
  padding: 9px 0px;
}

body.obelix-classic-menu .off-canvas .nav-vertical li > a {
  font-weight: normal;
  color: hsla(0, 0%, 7%, 0.85);
  text-transform: none;
  font-size: .9rem;
  padding-left: 0;
  padding-right: 0;
}

body.obelix-classic-menu .nav-vertical .sub-menu li {
  padding-right: 0px;
  position: relative;
}

body.obelix-classic-menu .off-canvas .nav-vertical > li > a {
  font-weight: bold;
  font-size: 1rem;
}

.obelix-dropdown .opensub {
  display: block!important;
}

.obelix-dropdown .children {
  opacity: 0;
  display: block;
  transition: transform 0.15s ease-in-out, opacity 0.15s ease-in-out;
  transform: translateY(19px) translateX(0)!important;
}

.obelix-dropdown .active > .children {
  opacity: 1;
  transition: transform 0.15s ease-in-out, opacity 0.15s ease-in-out;
  transform: translateY(0px) translateX(0)!important;
}

.obelix-post-container .title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  border-bottom: solid 1px rgb(239 239 239);
}

.obelix-post-container a.view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.obelix-post-container .bottom-view-more {
  display: flex;
  justify-content: center;
}

.obelix-post-container .col {
  padding-bottom: 0;
}

.obelix-post-container .flickity-page-dots {
  bottom: 0;
}

.obelix-post-container .ux-relay__control {
  margin-top: 2rem;
}

.obelix-post-container .badge-inner {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  font-weight: bolder;
  line-height: 1;
  text-align: center;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
  white-space: nowrap;
  padding: 0;
}

.obelix-post-container .badge.post-date hr {
  margin: .2rem 0;
  display: none;
}

.obelix-post-container .badge-inner span {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  min-height: 1.6rem;
}

.obelix-post-container .badge-inner .post-date-day {
  background-color: var(--fs-color-primary);
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.174);
}

.obelix-post-container .badge-inner .post-date-month {
  background-color: var(--fs-color-primary);
  color: #fff;
}

.obelix-post-container .overlay {
  left: 0;
  right: 0;
  top: 0;
}

/******* Blog card style ******/
.cat-label.tag-text_icon, .post-meta.text_icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.cat-label.tag-text_icon i, .post-meta.text_icon i {
  margin-right: .25rem!important;
  display: inline-block;
}

/* start style one */
.post-card-classic .box-text-inner {
  display: flex;
  flex-wrap: wrap;
}

.post-card-classic .text-center .box-text-inner {
  justify-content: center;
}

.post-card-classic .text-center .box-text-inner .post-meta, .post-card-classic .text-right .box-text-inner .post-meta {
  margin-left: 0;
}

.post-card-classic .text-right .box-text-inner {
  justify-content: end;
}

.post-card-classic .is-divider {
  display: none;
}

.post-card-classic .box-text-inner .post-title {
  order: 1;
  letter-spacing: 0;
}

.post-card-classic .box-text-inner > * {
  order: 2;
}

.post-card-classic .box-text-inner .post-meta, .post-card-classic .box-text-inner .cat-label {
  display: inline-flex;
  font-size: .75rem;
  margin-top: .2rem;
  margin-bottom: .3rem;
}

.post-card-classic .box-text-inner .cat-label {
  margin-right: 12px;
  text-transform: uppercase;
}

.post-card-classic .box-text-inner .post-meta *, .post-card-classic .box-text-inner .cat-label * {
  font-size: inherit;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

/* end style one */
/* start style bottom image */
.post-card-bottom-img {
  box-shadow: 0 3px 20px rgb(15 15 15 / 3%);
}

.post-card-bottom-img .box-text {
  padding: 0;
}

.post-card-bottom-img .box-text.text-center {
  padding: 0;
}

.post-card-bottom-img .box-text-inner {
  margin: 0;
  padding: 20px 30px;
  border-top: 2px solid #ffffff;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.post-card-bottom-img:hover .box-text-inner {
  border-color: #0f0f0f;
}

.post-card-bottom-img .dark .box-text-inner {
  border-color: #0f0f0f;
}

.post-card-bottom-img:hover .dark .box-text-inner {
  border-color: #c1c1c1;
}

.post-card-bottom-img .post-title {
  margin: 0;
  letter-spacing: 0;
}

.post-card-bottom-img .from_the_blog_excerpt {
  margin-top: .4rem;
  margin-bottom: 0;
  opacity: .8;
}

.post-card-bottom-img .card-meta {
  margin: 0.4em 0 0.6em 0;
  /* margin-top: 0.4em; */
  display: flex;
}

.post-card-bottom-img .card-meta * {
  font-size: .8rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.4em;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0px;
  margin: 0!important;
  opacity: 1;
}

.post-card-bottom-img .card-meta > *:last-child:before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: grey;
  display: inline-block;
  vertical-align: baseline;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  margin: 0 0.75em;
  transform: translateY(-.2rem);
}

.post-card-bottom-img .card-meta > *:only-child:before {
  content: none;
}

.post-card-bottom-img .card-meta .post-meta {
  opacity: .75;
  font-weight: normal;
}

.post-card-bottom-img .card-action {
  padding: 16px 30px;
}

.post-card-bottom-img .card-action a.is-link {
  width: 100%;
  overflow: hidden;
  text-align: left;
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.post-card-bottom-img a:not(:hover) {
  color: #262626;
}

.post-card-bottom-img .dark a:not(:hover) {
  color: #ffffff;
}

.post-card-bottom-img .card-action a.is-link::after {
  font-size: 14px!important;
  margin-left: 8px;
  font-family: fl-icons!important;
  content: "\e92b"!important;
  position: relative! important;
  transform: none! important;
}

.post-card-bottom-img .card-action a.is-link > span {
  position: relative;
  margin-top: 1px;
  margin-right: 0;
  display: inline-block;
  vertical-align: middle;
  text-indent: -110px;
  visibility: hidden;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: visibility 0.4s ease,margin-right 0.4s ease-out,text-indent 0.5s ease-out,color 0.4s ease,opacity 0.4s ease;
  -ms-transition: visibility 0.4s ease,margin-right 0.4s ease-out,text-indent 0.5s ease-out,color 0.4s ease,opacity 0.4s ease;
  transition: visibility 0.4s ease,margin-right 0.4s ease-out,text-indent 0.5s ease-out,color 0.4s ease,opacity 0.4s ease;
  will-change: visibility,margin-right,text-indent,color,opacity;
}

.post-card-bottom-img:hover .card-action a.is-link > span {
  opacity: 1;
  text-indent: 0;
  margin-right: 9px;
  visibility: visible;
  -webkit-transition: visibility 0.4s ease,margin-right 0.3s ease-out,text-indent 0.4s ease-out,opacity 0.4s ease;
  -ms-transition: visibility 0.4s ease,margin-right 0.3s ease-out,text-indent 0.4s ease-out,opacity 0.4s ease;
  transition: visibility 0.4s ease,margin-right 0.3s ease-out,text-indent 0.4s ease-out,opacity 0.4s ease;
}

.post-card-bottom-img .box-text.text-center .card-meta, .post-card-bottom-img .card-action .button.text-center {
  justify-content: center;
}

.post-card-bottom-img .box-text.text-right .card-meta, .post-card-bottom-img .card-action .button.text-right {
  justify-content: end;
}

/* end style bottom image */
/* start style overlay */
.post-card-overlay .box-text, .post-card-overlay-in .box-text {
  bottom: 0;
  max-height: 100%;
  padding-left: 1.5em;
  padding-right: 1.5em;
  position: absolute;
  width: 100%;
}

.post-card-overlay .is-divider, .post-card-overlay-in .box-text .is-divider {
  display: none;
}

.post-card-overlay .post-title, .post-card-overlay-in .post-title {
  margin-top: 0;
  margin-bottom: .8rem;
}

.post-card-overlay-in {
  overflow: hidden;
}

.post-card-overlay-in.overlay {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, #111 94.71%) !important;
}

.post-card-overlay-in .box-text {
  padding: 0;
  height: 100%;
}

.post-card-overlay-in .box-text-inner .post-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-card-overlay-in .box-text-inner > *:not(.post-title) {
  opacity: 0;
  transition: opacity .1s ease-out;
}

.post-card-overlay-in .box-text-inner {
  padding: 1.2rem 1.4rem;
  position: absolute;
  bottom: 0;
  transform: translateY(5rem);
  z-index: 2;
  transition: all 0.6s;
}

.post-card-overlay-in:hover .box-text-inner {
  transform: translateY(0rem);
}

.post-card-overlay-in:hover .box-text-inner > * {
  opacity: 1;
}

/* end style overlay */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 0;
  letter-spacing: 1px;
  text-transform: none;
  line-height: 1;
  min-height: unset;
  margin: 0;
}

.read-more-btn span, .read-more-btn i {
  transition: all ease .3s;
}

.read-more-btn.style-circle > i, .read-more-btn.style-circle-outline > i {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 50%;
  background-color: rgb(244 244 244);
  border: solid 1px transparent;
  text-align: center;
}

.read-more-btn.style-circle-outline > i {
  border-color: black;
  background-color: transparent;
}

.read-more-btn.hover-reveal-text span {
  visibility: hidden;
  opacity: 0;
  transform: translateX(20px);
}

.read-more-btn.hover-reveal-text:hover span {
  visibility: visible;
  opacity: 1;
  transform: translateX(0px);
}

.read-more-btn.hover-reveal-icon i {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-10px) scale(0);
}

.read-more-btn.hover-reveal-icon:hover i {
  visibility: visible;
  opacity: 1;
  transform: translateX(0px) scale(1);
}

/******* Category style ******/
.obelix-category-list .box-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.obelix-category-list .box-category > * {
  display: inline-block;
  margin: 0;
}

.obelix-category-list .box-category .box-text {
  padding: 0;
  text-align: left;
}

.obelix-category-list {
}

.obelix-category-list {
}

.obelix-category-list {
}

.obelix-category-list {
}

/******* Section Title style ******/
.obelix-section-title .subtitle {
  margin-bottom: var(--section-title-spacing);
}

.obelix-section-title .title {
  margin-bottom: calc(var(--section-title-spacing) + .7rem);
}

.obelix-section-title .description {
  margin-bottom: 0;
}

.obelix-section-title .section-title-inner {
  margin: 0 auto;
}

.obelix-section-title .is-divider {
  margin: 1rem auto 0;
  max-width: 5rem;
}

/******* Breadcrumbs ******/
.obelix-breadcrumb > ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.obelix-breadcrumb > ul > li {
  margin: 0!important;
  line-height: 1;
}

.obelix-breadcrumb > ul > li a {
  margin: 0!important;
  transition: all ease .2s;
  line-height: 1;
}

.obelix-breadcrumb {
}

.hide-current-link .obelix-breadcrumb li.seperator:last-of-type {
  display: none;
}

/******* Category widget ******/
.obelix-category-widget ul {
  padding: 0;
  margin: 0;
}

.obelix-category-widget ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.obelix-category-widget ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Category style card */
.obelix-category-widget[class*="style-card"] .category-inner {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.obelix-category-widget[class*="style-card"] .category-item {
  margin-bottom: .6rem;
}

.obelix-category-widget[class*="style-card"] .category-inner a {
  padding: 10px 20px;
  background: #f1f1f1;
  transition: all ease .2s;
}

.obelix-category-widget[class*="style-card"] .active .category-inner > a, .obelix-category-widget[class*="style-card"] a:hover {
  background: var(--fs-color-primary);
  color: white;
}

.obelix-category-widget[class*="style-card"] .active .category-inner > a {
  pointer-events: none;
}

.obelix-category-widget[class*="style-card"] .cat-arrow {
  transform: translateX(-0.2rem);
  transition: transform ease .2s;
}

.obelix-category-widget[class*="style-card"] a:hover > .cat-arrow {
  transform: translateX(0);
}

.obelix-category-widget[class*="style-card"] .cat-name {
  font-size: 1.2rem;
  /* display: inline-flex; */
  /* align-items: center; */
}

.obelix-category-widget[class*="style-card"] .cat-count {
  font-size: 1rem;
  margin-left: .2rem;
  opacity: .8;
}

.obelix-category-widget.style-card-2 li.category-item {
  transition: transform ease .2s;
}

.obelix-category-widget.style-card-2 li.category-item:hover {
  transform: translateY(-0.2rem);
}

.module-box.has-hover {
  overflow: hidden;
}
