/**
 * AxonCreator - Website Builder
 *
 * NOTICE OF LICENSE
 *
 * @author    axonviz.com <support@axonviz.com>
 * @copyright 2021 axonviz.com
 * @license   You can not resell or redistribute this software.
 *
 * https://www.gnu.org/licenses/gpl-3.0.html
 */

.axv-text-button {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.12s linear;
  transition: all 0.12s linear;
  vertical-align: middle;
}
.axv-text-button .elementor-button-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.axv-text-button > span {
  position: relative;
  -webkit-transition: inherit;
  transition: inherit;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.axv-text-button > span > span,
.axv-text-button > span > i,
.axv-text-button > span > svg {
  z-index: 1;
}
.axv-text-button.has-fill:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  transition: all 0.25s;
  -webkit-transition: all 0.25s;
}
.axv-text-button.has-fill:hover:before {
  background: var(--fill-color);
}
.axv-text-button.fill-rtl:not(:hover):before {
  left: 100%;
}
.axv-text-button.fill-ltr:not(:hover):before {
  right: 100%;
}
.axv-text-button.fill-top:not(:hover):before {
  top: 100%;
}
.axv-text-button.fill-bottom:not(:hover):before {
  bottom: 100%;
}
.axv-text-button.fill-circle {
  --proportion: 2.5em;
}
.axv-text-button.fill-circle:before {
  height: var(--proportion);
  max-width: var(--proportion);
  border: 0.1em solid var(--fill-color);
  border-radius: 50%;
  margin: auto;
}
.axv-text-button.fill-circle:hover:before {
  border-radius: inherit;
  max-width: 100%;
  background-color: transparent;
}
.axv-text-button .button-line {
  border-bottom: 0.1em solid currentColor;
  min-width: 1.4em;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-transition: min-width 0.3s;
  transition: min-width 0.3s;
}
.axv-text-button:hover .button-line {
  min-width: 2.4em;
}
.axv-text-button.fill-underline:before,
.axv-text-button.fill-overline:before {
  top: auto;
  right: 0;
  height: 0.1em;
  width: 0;
  left: auto;
  background: var(--fill-color);
}
.axv-text-button.fill-underline:hover:before,
.axv-text-button.fill-overline:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.axv-text-button.fill-overline:before {
  top: 0;
  bottom: auto;
}
.axv-text-button:hover .elementor-button-icon.animation-background_ltr {
  -webkit-animation: toLeftFromRight 0.4s forwards;
          animation: toLeftFromRight 0.4s forwards;
}
.axv-text-button:hover .elementor-button-icon.animation-background_to_bottom {
  -webkit-animation: toBottomFromTop 0.4s forwards;
          animation: toBottomFromTop 0.4s forwards;
}
.axv-text-button:hover .elementor-button-icon.animation-background_rtl {
  -webkit-animation: toRightFromLeft 0.4s forwards;
          animation: toRightFromLeft 0.4s forwards;
}
.axv-text-button:hover .elementor-button-icon.animation-background_to_top {
  -webkit-animation: toTopFromBottom 0.4s forwards;
          animation: toTopFromBottom 0.4s forwards;
}
.axv-text-button:hover .elementor-button-icon.animation-switch_side.elementor-align-icon-left {
  left: calc(100% + var(--icon-indent, 5px));
}
.axv-text-button:hover .elementor-button-icon.animation-switch_side.elementor-align-icon-right {
  right: calc(100% + var(--icon-indent, 5px));
}
.axv-text-button .elementor-button-icon.animation-switch_side {
  position: absolute;
  -webkit-transition: left 0.5s cubic-bezier(0.19, 1, 0.22, 1), right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: left 0.5s cubic-bezier(0.19, 1, 0.22, 1), right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.axv-text-button .elementor-button-icon.animation-switch_side.elementor-align-icon-left {
  left: calc(-1em - var(--icon-indent, 5px));
}
.axv-text-button .elementor-button-icon.animation-switch_side.elementor-align-icon-right {
  right: calc(-1em - var(--icon-indent, 5px));
}
@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(100%);
            transform: translate(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(100%);
            transform: translate(100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes toLeftFromRight {
  49% {
    -webkit-transform: translate(100%);
            transform: translate(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toLeftFromRight {
  49% {
    -webkit-transform: translate(100%);
            transform: translate(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes axv-zoom {
  0%,
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes axv-zoom {
  0%,
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.axv-animated:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.axv-animation-zoom {
  -webkit-animation-name: axv-zoom;
          animation-name: axv-zoom;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.axv-animation-pulse {
  -webkit-animation-name: elementor-animation-pulse;
          animation-name: elementor-animation-pulse;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.axv-animation-wobble-horizontal {
  -webkit-animation-name: elementor-animation-wobble-horizontal;
          animation-name: elementor-animation-wobble-horizontal;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

/**********************************************************************/

.axv-blockquote {
  margin: 0;
  --gap-inner: 20px;
  text-transform: none;
  position: relative;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.axv-blockquote .blockquote-content {
  color: currentColor;
}
.axv-blockquote .blockquote-content:not(:last-child) {
  margin-bottom: var(--gap-inner);
}
.axv-blockquote .quotes {
  min-width: var(--quote-min-dimensions);
  min-height: var(--quote-min-dimensions);
  line-height: 1;
  border-radius: 50%;
  font-size: var(--quote-proportion);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  vertical-align: middle;
}
.axv-blockquote .quotes + span {
  margin-left: 7px;
}
.axv-blockquote .author {
  font-weight: 700;
}
.axv-blockquote .author-wrapper:not(:only-child) {
  margin-bottom: var(--gap-inner);
}
.axv-blockquotes-wrapper {
  --quote-proportion: 1.3em;
  --quote-min-dimensions: 1.7em;
}
.axv-blockquotes-wrapper.style-border_top .axv-blockquote {
  border-top: 7px solid #e1e1e1;
}
.axv-blockquotes-wrapper.style-border_left .axv-blockquote {
  border-left: 7px solid #e1e1e1;
}
.axv-blockquotes-wrapper.quote-top .quotes {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.axv-blockquotes-wrapper.quote-top .blockquote-content {
  margin-top: var(--gap-inner);
}
.axv-blockquotes-wrapper.quote-above_content .quotes {
  margin-bottom: var(--gap-inner);
}

/**********************************************************************/

.axv-testimonials .testimonial {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  --size-quotes-proportion: 7;
}
.axv-testimonials .testimonial .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.axv-testimonials .testimonial .inner-content > span {
  display: block;
}
.axv-testimonials .testimonial .inner-content img {
  display: inline-block;
}
.axv-testimonials .testimonial .inner-content:first-child:not(:only-child) {
  margin-right: 15px;
}
.axv-testimonials .testimonial .inner-content:last-child:not(:only-child) {
  margin-left: 15px;
}
.axv-testimonials .testimonial .justify-content-start .star-rating {
  margin-left: 0;
}
.axv-testimonials .testimonial .justify-content-end .star-rating {
  margin-right: 0;
}
.axv-testimonials .testimonial .name {
  font-weight: 600;
}
.axv-testimonials .testimonial .content {
  position: relative;
}
.axv-testimonials .testimonial .star-rating {
  margin-bottom: 0;
}
.axv-testimonials .testimonial .quotes {
  font-size: calc(var(--size-quotes-proportion) * 10px);
}
.axv-testimonials .testimonial.style-2 .inner-content svg {
  position: absolute;
  top: 0;
  right: 15px;
  opacity: 0.1;
}
@media only screen and (max-width: 480px) {
  .axv-testimonials .testimonial .content-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .axv-testimonials .testimonial .content-wrapper > img {
    margin-left: auto;
    margin-right: auto;
  }
  .axv-testimonials .testimonial .inner-content:first-child:not(:only-child),
  .axv-testimonials .testimonial .inner-content:last-child:not(:only-child) {
    margin: 15px 0 0;
  }
}

/**********************************************************************/

.axv-countdown {
  --gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: calc(-1 * var(--gap));
}
.axv-countdown-item {
  --inner-gap: 3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background: var(--ax_dark-2-white, #222222);
  padding: 10px;
  color: var(--ax_white-2-dark, #ffffff);
  margin: var(--gap);
  min-width: var(--item-min-width);
  min-height: var(--item-min-height);
}
.axv-countdown-digits {
  font-size: 2em;
  font-weight: 600;
  line-height: 1;
}
.axv-countdown-item-inner span {
  text-align: center;
  vertical-align: middle;
}
.axv-countdown-item.label-bottom span {
  display: block;
}
.axv-countdown-item.label-bottom span + span {
  margin-top: var(--inner-gap);
}
.axv-countdown-item.label-left span + span,
.axv-countdown-item.label-right span + span {
  margin-left: var(--inner-gap);
}

/**********************************************************************/

.rtl .axv-price-table-wrapper {
  --ribbon-offset: var(--ribbon-distance);
}
.axv-price-table-wrapper {
  --ribbon-distance: 35px;
  --ribbon-offset: calc(-50% + var(--ribbon-distance));
  position: relative;
  text-align: center;
  overflow: hidden;
  color: #000;
}
.axv-price-table-wrapper ul {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}
.axv-price-table-wrapper .period-bottom .axv-price-table-period,
.axv-price-table-wrapper .period-top .axv-price-table-period {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.axv-price-table-title,
.axv-price-table-subtitle {
  margin: 0;
  text-transform: none;
}
.axv-price-table-price .axv-price-table-currency,
.axv-price-fraction {
  font-size: 0.5em;
}
.axv-price-table-original-price,
.axv-price-table-price {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}
.axv-price-table-original-price {
  font-size: 20px;
  margin-right: 0.3em;
}
.axv-price-table-original-price .axv-price-table-currency {
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 1em;
}
.axv-price-table-price-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.axv-price-table-price-wrapper .price-line-through,
.axv-price-table-price-wrapper .price-underline {
  position: relative;
}
.axv-price-table-price-wrapper .price-line-through:after,
.axv-price-table-price-wrapper .price-underline:after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 0.1em;
  width: 100%;
  background-color: currentColor;
}
.axv-price-table-price-wrapper .price-line-through:after {
  bottom: 50%;
  margin-top: -0.05em;
}
.axv-price-table-header,
.axv-price-table-footer {
  padding: 20px 0;
}
.axv-price-table-period {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.axv-price-table-ribbon {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  min-width: 150px;
  min-height: 150px;
  width: calc(3 * var(--ribbon-distance));
  height: calc(3 * var(--ribbon-distance));
  pointer-events: none;
}
.axv-price-table-ribbon-inner {
  text-align: center;
  left: 0;
  width: 200%;
  -webkit-transform: translateY(-50%) translateX(var(--ribbon-offset)) rotate(-45deg);
          transform: translateY(-50%) translateX(var(--ribbon-offset)) rotate(-45deg);
  margin-top: var(--ribbon-distance);
  font-size: 14px;
  line-height: 2;
  background: #000;
  color: #fff;
  pointer-events: auto;
}
.axv-price-table-ribbon.ribbon-left {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  left: 0;
  right: auto;
}
.elementor-price-table__ribbon.ribbon-right {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  left: auto;
  right: 0;
}

/**********************************************************************/

.axv-flipbox-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.axv-flipbox-wrapper > div {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all var(--transition-duration, 0.3s) var(--transition-timing-fn, ease-in-out);
  transition: all var(--transition-duration, 0.3s) var(--transition-timing-fn, ease-in-out);
}
.axv-flipbox-wrapper > div:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.axv-flipbox-wrapper:hover > div {
  border-radius: inherit;
}
.axv-flipbox-side_b {
  background: #bbb;
  z-index: 1;
}
.axv-flipbox-inner {
  width: 100%;
  z-index: 1;
}
.axv-flipbox-icon:not(:last-child),
.axv-flipbox-image:not(:last-child),
.axv-flipbox-description:not(:last-child) {
  margin-bottom: 15px;
}
.axv-flip-box-effect-flip {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.axv-flip-box-effect-flip .axv-flipbox-side_a {
  z-index: 1;
}
.axv-flip-box-effect-flip > div {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all var(--transition-duration, 0.2s) var(--transition-timing-fn, linear);
  transition: all var(--transition-duration, 0.2s) var(--transition-timing-fn, linear);
}
.axv-flip-box-effect-flip-bounced > div {
  -webkit-transition-timing-function: cubic-bezier(0.2, 0.85, 0.4, 1.275);
          transition-timing-function: cubic-bezier(0.2, 0.85, 0.4, 1.275);
}
.axv-flip-box-effect-flip.axv-flip-box-direction-right:not(:hover) .axv-flipbox-side_b {
  -webkit-transform: rotateX(0) rotateY(180deg);
          transform: rotateX(0) rotateY(180deg);
}
.axv-flip-box-effect-flip.axv-flip-box-direction-right:hover .axv-flipbox-side_a {
  -webkit-transform: rotateX(0) rotateY(180deg);
          transform: rotateX(0) rotateY(180deg);
}
.axv-flip-box-effect-flip.axv-flip-box-direction-left:not(:hover) .axv-flipbox-side_b {
  -webkit-transform: rotateX(0) rotateY(180deg);
          transform: rotateX(0) rotateY(180deg);
}
.axv-flip-box-effect-flip.axv-flip-box-direction-left:hover .axv-flipbox-side_a {
  -webkit-transform: rotateX(0) rotateY(-180deg);
          transform: rotateX(0) rotateY(-180deg);
}
.axv-flip-box-effect-flip.axv-flip-box-direction-up:not(:hover) .axv-flipbox-side_b {
  -webkit-transform: rotateX(-180deg) rotateY(0);
  transform: rotateX(-180deg) rotateY(0);
}
.axv-flip-box-effect-flip.axv-flip-box-direction-up:hover .axv-flipbox-side_a {
  -webkit-transform: rotateX(180deg) rotateY(0);
  transform: rotateX(180deg) rotateY(0);
}
.axv-flip-box-effect-flip.axv-flip-box-direction-down:not(:hover) .axv-flipbox-side_b {
  -webkit-transform: rotateX(180deg) rotateY(0);
  transform: rotateX(180deg) rotateY(0);
}
.axv-flip-box-effect-flip.axv-flip-box-direction-down:hover .axv-flipbox-side_a {
  -webkit-transform: rotateX(-180deg) rotateY(0);
  transform: rotateX(-180deg) rotateY(0);
}
.axv-flip-box-effect-fade:not(:hover) .axv-flipbox-side_b {
  opacity: 0;
  visibility: hidden;
}
.axv-flip-box-effect-slide.axv-flip-box-effect-slide-delayed > div {
  -webkit-transition-duration: var(--transition-duration, 0.7s);
          transition-duration: var(--transition-duration, 0.7s);
}
.axv-flip-box-effect-slide.axv-flip-box-effect-slide-delayed .axv-flipbox-side_b {
  --slide-delay-percent: 21%;
}
.axv-flip-box-effect-slide.axv-flip-box-direction-down:not(:hover) .axv-flipbox-side_b,
.axv-flip-box-effect-slide.axv-flip-box-direction-up:hover .axv-flipbox-side_a,
.axv-flip-box-effect-overlay.axv-flip-box-direction-down:not(:hover) .axv-flipbox-side_b {
  -webkit-transform: translateX(0) translateY(calc((99% + var(--slide-delay-percent, 1%)) * -1));
          transform: translateX(0) translateY(calc((99% + var(--slide-delay-percent, 1%)) * -1));
}
.axv-flip-box-effect-slide.axv-flip-box-direction-up:not(:hover) .axv-flipbox-side_b,
.axv-flip-box-effect-slide.axv-flip-box-direction-down:hover .axv-flipbox-side_a,
.axv-flip-box-effect-overlay.axv-flip-box-direction-up:not(:hover) .axv-flipbox-side_b {
  -webkit-transform: translateX(0) translateY(calc((99% + var(--slide-delay-percent, 1%))));
          transform: translateX(0) translateY(calc((99% + var(--slide-delay-percent, 1%))));
}
.axv-flip-box-effect-slide.axv-flip-box-direction-right:not(:hover) .axv-flipbox-side_b,
.axv-flip-box-effect-slide.axv-flip-box-direction-left:hover .axv-flipbox-side_a,
.axv-flip-box-effect-overlay.axv-flip-box-direction-right:not(:hover) .axv-flipbox-side_b {
  -webkit-transform: translateX(calc((99% + var(--slide-delay-percent, 1%)) * -1)) translateY(0%);
          transform: translateX(calc((99% + var(--slide-delay-percent, 1%)) * -1)) translateY(0%);
}
.axv-flip-box-effect-slide.axv-flip-box-direction-left:not(:hover) .axv-flipbox-side_b,
.axv-flip-box-effect-slide.axv-flip-box-direction-right:hover .axv-flipbox-side_a,
.axv-flip-box-effect-overlay.axv-flip-box-direction-left:not(:hover) .axv-flipbox-side_b {
  -webkit-transform: translateX(calc(99% + var(--slide-delay-percent, 1%))) translateY(0%);
          transform: translateX(calc(99% + var(--slide-delay-percent, 1%))) translateY(0%);
}
.axv-flip-box-effect-zoom-in:not(:hover) .axv-flipbox-side_b,
.axv-flip-box-effect-zoom-in-2:not(:hover) .axv-flipbox-side_b,
.axv-flip-box-effect-zoom-out-2:hover .axv-flipbox-side_a {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  opacity: 0;
  visibility: hidden;
}
.axv-flip-box-effect-zoom-out:not(:hover) .axv-flipbox-side_b,
.axv-flip-box-effect-zoom-out-2:not(:hover) .axv-flipbox-side_b,
.axv-flip-box-effect-zoom-in-2:hover .axv-flipbox-side_a {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0;
  visibility: hidden;
}
.axv-flip-box-3d .axv-flipbox-inner {
  -webkit-transform: translateZ(90px) scale(0.91);
  transform: translateZ(90px) scale(0.91);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/**********************************************************************/

.axv-headline {
  margin-bottom: 0;
}
.axv-headline-text-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: visible;
  width: calc(100% + .75em);
  height: calc(100% + .75em);
}
.axv-headline-text-wrapper svg path {
  stroke: var(--shape-color, currentColor);
  stroke-width: var(--shape-width, 8);
  fill: none;
}
.axv-headline-highlight-active svg path {
  opacity: 1;
  stroke-dasharray: 0 var(--shape-dasharray, 1500);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: axv-headline-dash ease-out;
          animation: axv-headline-dash ease-out;
  -webkit-animation-duration: var(--animation-duration, 2.4s);
          animation-duration: var(--animation-duration, 2.4s);
  -webkit-animation-iteration-count: var(--iteration-count, 1);
          animation-iteration-count: var(--iteration-count, 1);
  -webkit-animation-delay: var(--animation-delay, 0s);
          animation-delay: var(--animation-delay, 0s);
}
@-webkit-keyframes axv-headline-dash {
  0% {
    stroke-dasharray: 0 var(--shape-dasharray, 1500);
    opacity: 1;
  }
  100% {
    stroke-dasharray: var(--shape-dasharray, 1500) var(--shape-dasharray, 1500);
    opacity: 1;
  }
}
@keyframes axv-headline-dash {
  0% {
    stroke-dasharray: 0 var(--shape-dasharray, 1500);
    opacity: 1;
  }
  100% {
    stroke-dasharray: var(--shape-dasharray, 1500) var(--shape-dasharray, 1500);
    opacity: 1;
  }
}
.axv-headline-highlight-inactive svg path {
  opacity: 0;
  stroke-dasharray: var(--shape-dasharray, 1500) var(--shape-dasharray, 1500);
  -webkit-animation: hide-highlight forwards;
          animation: hide-highlight forwards;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@-webkit-keyframes hide-highlight {
  0% {
    opacity: 1;
    stroke-dasharray: var(--shape-dasharray, 1500) var(--shape-dasharray, 1500);
  }
  100% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
}
@keyframes hide-highlight {
  0% {
    opacity: 1;
    stroke-dasharray: var(--shape-dasharray, 1500) var(--shape-dasharray, 1500);
  }
  100% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
}
.axv-headline-text-wrapper {
  display: inline-block;
  position: relative;
  color: var(--text-color, currentColor);
}
.axv-headline-text-wrapper .axv-headline-text {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}
.axv-headline-text-wrapper .axv-headline-text-active {
  position: relative;
}
.no-js .axv-headline-text-wrapper .axv-headline-text {
  opacity: 0;
}
.no-js .axv-headline-text-wrapper .axv-headline-text-active {
  opacity: 1;
}
/* --------------------------------

xflip

-------------------------------- */
.axv-headline-animation-type-flip .axv-headline-text-wrapper {
  -webkit-perspective: 300px;
          perspective: 300px;
}
.axv-headline-animation-type-flip .axv-headline-text {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.axv-headline-animation-type-flip .axv-headline-text-active {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  -webkit-animation: axv-headline-flip-in 2.4s;
          animation: axv-headline-flip-in 2.4s;
}
.axv-headline-animation-type-flip .axv-headline-text-inactive {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
  -webkit-animation: axv-headline-flip-out 2.4s;
          animation: axv-headline-flip-out 2.4s;
}
@-webkit-keyframes axv-headline-flip-in {
  0% {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
            transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
            transform: rotateX(360deg);
    opacity: 1;
  }
}
@keyframes axv-headline-flip-in {
  0% {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
            transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
            transform: rotateX(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes axv-headline-flip-out {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
            transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
    opacity: 0;
  }
}
@keyframes axv-headline-flip-out {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
            transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
    opacity: 0;
  }
}
.axv-headline-animation-type-flip-2 .axv-headline-text {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
/* --------------------------------

xtype

-------------------------------- */
.axv-headline-animation-type-typing .axv-headline-text-wrapper {
  vertical-align: top;
  overflow: hidden;
}
.axv-headline-animation-type-typing .axv-headline-text-wrapper::after {
  /* vertical bar */
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 90%;
  width: var(--cursor-width, 1px);
  background-color: currentColor;
}
.axv-headline-animation-type-typing .axv-headline-text-wrapper.waiting::after {
  -webkit-animation: axv-headline-pulse 1s infinite;
          animation: axv-headline-pulse 1s infinite;
}
.axv-headline-animation-type-typing .axv-headline-text-wrapper.selected {
  background-color: var(--typing-selected-bg-color, #222);
}
.axv-headline-animation-type-typing .axv-headline-text-wrapper.selected::after {
  visibility: hidden;
}
.axv-headline-animation-type-typing .axv-headline-text-wrapper.selected .axv-headline-text {
  color: var(--typing-selected-color, #fff);
}
.axv-headline-animation-type-typing .axv-headline-text {
  visibility: hidden;
}
.axv-headline-animation-type-typing .axv-headline-text-active {
  visibility: visible;
}
.axv-headline-animation-type-typing .axv-headline-letter {
  position: absolute;
  visibility: hidden;
}
.axv-headline-animation-type-typing .axv-headline-letter-in {
  position: relative;
  visibility: visible;
}
@-webkit-keyframes axv-headline-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
            transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
@keyframes axv-headline-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
            transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
/* --------------------------------

xswirl

-------------------------------- */
.axv-headline-animation-type-swirl .axv-headline-text-wrapper {
  -webkit-perspective: 300px;
          perspective: 300px;
}
.axv-headline-animation-type-swirl .axv-headline-letter,
.axv-headline-animation-type-swirl em {
  display: inline-block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.axv-headline-animation-type-swirl .axv-headline-text {
  opacity: 0;
}
.axv-headline-animation-type-swirl .axv-headline-letter {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: translateZ(-20px) rotateX(90deg);
          transform: translateZ(-20px) rotateX(90deg);
  opacity: 0;
}
.axv-headline-text-active .axv-headline-animation-type-swirl .axv-headline-letter {
  opacity: 1;
}
.axv-headline-animation-type-swirl .axv-headline-letter-in {
  -webkit-animation: axv-headline-swirl-in 0.4s forwards;
          animation: axv-headline-swirl-in 0.4s forwards;
}
.axv-headline-animation-type-swirl .axv-headline-letter-out {
  -webkit-animation: axv-headline-swirl-out 0.4s forwards;
          animation: axv-headline-swirl-out 0.4s forwards;
}
.axv-headline-animation-type-swirl em {
  -webkit-transform: translateZ(20px);
          transform: translateZ(20px);
}
.no-csstransitions .axv-headline-animation-type-swirl .axv-headline-letter {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  opacity: 0;
}
.no-csstransitions .axv-headline-animation-type-swirl .axv-headline-letter em {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.no-csstransitions .axv-headline-animation-type-swirl .axv-headline-text-active .axv-headline-letter {
  opacity: 1;
}
@-webkit-keyframes axv-headline-swirl-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
            transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
            transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
            transform: translateZ(-20px) rotateX(0deg);
  }
}
@keyframes axv-headline-swirl-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
            transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
            transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
            transform: translateZ(-20px) rotateX(0deg);
  }
}
@-webkit-keyframes axv-headline-swirl-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
            transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
            transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
            transform: translateZ(-20px) rotateX(-90deg);
  }
}
@keyframes axv-headline-swirl-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
            transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
            transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
            transform: translateZ(-20px) rotateX(-90deg);
  }
}
/* --------------------------------

xloading-bar

-------------------------------- */
.axv-headline-animation-type-loading-bar .axv-headline-text-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.axv-headline-animation-type-loading-bar .axv-headline-text-wrapper::after {
  /* loading bar */
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: var(--loading-bar-size, 0.1em);
  width: 0;
  background: var(--loading-bar-bg-color, currentColor);
  z-index: 2;
  -webkit-transition: width 0.3s 0.1s;
  transition: width 0.3s 0.1s;
}
.axv-headline-animation-type-loading-bar .axv-headline-text-wrapper.is-loading::after {
  width: 100%;
  -webkit-transition: width 3s;
  transition: width 3s;
}
.axv-headline-animation-type-loading-bar .axv-headline-text {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.axv-headline-animation-type-loading-bar .axv-headline-text-active {
  opacity: 1;
}
/* --------------------------------

xslide-down

-------------------------------- */
.axv-headline-animation-type-slide-down .axv-headline-text-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.axv-headline-animation-type-slide-down .axv-headline-text {
  opacity: 0;
  top: 0.2em;
}
.axv-headline-animation-type-slide-down .axv-headline-text-active {
  top: 0;
  opacity: 1;
  -webkit-animation: axv-headline-slide-down-in 0.6s;
          animation: axv-headline-slide-down-in 0.6s;
}
.axv-headline-animation-type-slide-down .axv-headline-text-inactive {
  -webkit-animation: axv-headline-slide-down-out 0.6s;
          animation: axv-headline-slide-down-out 0.6s;
}
@-webkit-keyframes axv-headline-slide-down-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes axv-headline-slide-down-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes axv-headline-slide-down-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes axv-headline-slide-down-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
/* --------------------------------

xclip

-------------------------------- */
.axv-headline-animation-type-clip .axv-headline-text-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.axv-headline-animation-type-clip .axv-headline-text-wrapper::after {
  /* line */
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: var(--cursor-width, 2px);
  height: 100%;
  background-color: currentColor;
}
.axv-headline-animation-type-clip .axv-headline-text {
  opacity: 0;
}
.axv-headline-animation-type-clip .axv-headline-text-active {
  opacity: 1;
}
/* --------------------------------

xdrop-in

-------------------------------- */
.axv-headline-animation-type-drop-in .axv-headline-text-wrapper {
  -webkit-perspective: 300px;
          perspective: 300px;
}
.axv-headline-animation-type-drop-in .axv-headline-text {
  opacity: 0;
}
.axv-headline-animation-type-drop-in .axv-headline-text-active {
  opacity: 1;
  -webkit-animation: axv-headline-drop-in-in 0.8s;
          animation: axv-headline-drop-in-in 0.8s;
}
.axv-headline-animation-type-drop-in .axv-headline-text-inactive {
  -webkit-animation: axv-headline-drop-in-out 0.8s;
          animation: axv-headline-drop-in-out 0.8s;
}
@-webkit-keyframes axv-headline-drop-in-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
            transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@keyframes axv-headline-drop-in-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
            transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@-webkit-keyframes axv-headline-drop-in-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
            transform: translateZ(-100px);
  }
}
@keyframes axv-headline-drop-in-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
            transform: translateZ(-100px);
  }
}
.axv-headline-animation-type-zoom .axv-headline-text {
  opacity: 0;
}
.axv-headline-animation-type-zoom .axv-headline-text-active {
  opacity: 1;
  -webkit-animation: axv-headline-zoom-in 0.8s;
          animation: axv-headline-zoom-in 0.8s;
}
.axv-headline-animation-type-zoom .axv-headline-text-inactive {
  -webkit-animation: axv-headline-zoom-out 0.8s;
          animation: axv-headline-zoom-out 0.8s;
}
@-webkit-keyframes axv-headline-zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes axv-headline-zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes axv-headline-zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes axv-headline-zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
/* --------------------------------

xswirl-2

-------------------------------- */
.axv-headline-animation-type-swirl-2 .axv-headline-text-wrapper {
  -webkit-perspective: 300px;
          perspective: 300px;
}
.axv-headline-animation-type-swirl-2 .axv-headline-text {
  opacity: 0;
}
.axv-headline-animation-type-swirl-2 .axv-headline-letter {
  display: inline-block;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.axv-headline-text-active .axv-headline-animation-type-swirl-2 .axv-headline-letter {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}
.axv-headline-animation-type-swirl-2 .axv-headline-letter-in {
  -webkit-animation: axv-headline-swirl-2-in 0.6s forwards;
          animation: axv-headline-swirl-2-in 0.6s forwards;
}
.axv-headline-animation-type-swirl-2 .axv-headline-letter-out {
  -webkit-animation: axv-headline-swirl-2-out 0.6s forwards;
          animation: axv-headline-swirl-2-out 0.6s forwards;
}
.no-csstransitions .axv-headline-animation-type-swirl-2 .axv-headline-letter {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  opacity: 0;
}
.no-csstransitions .axv-headline-animation-type-swirl-2 .axv-headline-text-active .axv-headline-letter {
  opacity: 1;
}
@-webkit-keyframes axv-headline-swirl-2-in {
  0% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@keyframes axv-headline-swirl-2-in {
  0% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@-webkit-keyframes axv-headline-swirl-2-out {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
}
@keyframes axv-headline-swirl-2-out {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
}
/* --------------------------------

xwave

-------------------------------- */
.axv-headline-animation-type-wave .axv-headline-text {
  opacity: 0;
}
.axv-headline-animation-type-wave .axv-headline-letter {
  display: inline-block;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.axv-headline-text-active .axv-headline-animation-type-wave .axv-headline-letter {
  opacity: 1;
}
.axv-headline-animation-type-wave .axv-headline-letter-in {
  -webkit-animation: axv-headline-wave-up 0.6s forwards;
          animation: axv-headline-wave-up 0.6s forwards;
}
.axv-headline-animation-type-wave .axv-headline-letter-out {
  -webkit-animation: axv-headline-wave-down 0.6s forwards;
          animation: axv-headline-wave-down 0.6s forwards;
}
.no-csstransitions .axv-headline-animation-type-wave .axv-headline-letter {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 0;
}
.no-csstransitions .axv-headline-animation-type-wave .axv-headline-text-active .axv-headline-letter {
  opacity: 1;
}
@-webkit-keyframes axv-headline-wave-up {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes axv-headline-wave-up {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes axv-headline-wave-down {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
}
@keyframes axv-headline-wave-down {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
}
/* --------------------------------

xslide

-------------------------------- */
.axv-headline-animation-type-slide .axv-headline-text {
  opacity: 0;
}
.axv-headline-animation-type-slide .axv-headline-text-active {
  opacity: 1;
  -webkit-animation: axv-headline-slide-in 0.6s;
          animation: axv-headline-slide-in 0.6s;
}
.axv-headline-animation-type-slide .axv-headline-text-inactive {
  -webkit-animation: axv-headline-slide-out 0.6s;
          animation: axv-headline-slide-out 0.6s;
}
@-webkit-keyframes axv-headline-slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes axv-headline-slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes axv-headline-slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes axv-headline-slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

/**********************************************************************/

.axv-progress-bar {
  position: relative;
  line-height: 1;
}
.axv-progress-bar-wrapper {
  max-width: var(--max-width, 200px);
  margin: 0 auto;
}
.axv-progress-bar-text-wrapper {
  text-align: center;
}
.axv-progress-bar-text-wrapper > span {
  display: block;
}
.axv-progress-bar-text-wrapper > span:not(:last-child) {
  margin-bottom: var(--content-space, 5px);
}
.axv-progress-bar-text-wrapper-middle > span {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.axv-progress-bar-value {
  font-size: 2rem;
  color: var(--progress-color-01, #008aff);
  font-weight: 700;
}
.axv-progress-bar-value:after {
  content: attr(data-suffix);
}
.axv-progress-bar-text {
  color: #000;
}
.axv-progress-bar[data-type=circle] svg {
  position: relative;
  height: auto;
  max-width: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
}
.axv-progress-bar[data-type=circle] svg circle {
  fill: none;
  stroke: var(--progress-color-01, #008AFF);
  stroke-dashoffset: 314.159265;
  stroke-width: var(--progress-weight, 3);
}
.axv-progress-bar[data-type=circle] svg circle.incomplete {
  stroke: var(--progress-color-02, var(--progress-color-01, #008AFF));
  opacity: var(--progress-color-2-opacity, 0.25);
}
.axv-progress-bar[data-type=circle] svg circle.complete {
  stroke-dasharray: 314.159265;
}
.axv-progress-bar[data-type=circle] .axv-progress-bar-svg-wrapper {
  --svg-filler-position: calc(var(--progress-weight, 3) * .5px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--progress-space, 0);
}
.axv-progress-bar[data-type=circle] .axv-progress-bar-svg-wrapper:after {
  content: '';
  background: var(--progress-color-fill, none);
  position: absolute;
  top: var(--svg-filler-position, 0);
  left: var(--svg-filler-position, 0);
  right: var(--svg-filler-position, 0);
  bottom: var(--svg-filler-position, 0);
  border-radius: 50%;
}

/***********************************************************************************/

.axv-advanced-headline {
  position: relative;
  font-size: 2.5rem;
  margin-bottom: var(--heading-space, 10px);
  text-transform: none;
}
.axv-advanced-headline-mask {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.axv-a-h-text-before {
  display: inline-block;
}
.axv-a-h-text-before-with-bg {
  background: #000;
  color: #fff;
  padding: 0.1em 0.5em;
  border-radius: 0.15em;
  margin-bottom: 5px;
}
.axv-a-h-line-before {
  text-align: right;
}
.axv-a-h-line-after {
  text-align: left;
}
.axv-a-h-line-both,
.axv-a-h-lines-none {
  text-align: center;
}
.axv-a-h-line-before .axv-advanced-headline,
.axv-a-h-line-after .axv-advanced-headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.axv-a-h-line-before .axv-advanced-headline:before,
.axv-a-h-line-after .axv-advanced-headline:after {
  content: '';
  border-bottom: var(--line-height, 2px) var(--line-style, solid) var(--line-color, #e1e1e1);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      align-self: center;
}
.axv-a-h {
  text-transform: none;
  margin-bottom: 0;
}
.axv-a-h-text {
  background: #2962FF;
  color: #fff;
  padding: 0 10px;
  -webkit-text-fill-color: currentColor;
}
.axv-a-h-with-bg {
  text-align: inherit;
}
.axv-a-h-with-bg .axv-advanced-headline {
  z-index: 1;
}
.axv-a-h-with-bg .axv-a-h-text-before {
  position: absolute;
  white-space: nowrap;
  left: 50%;
  -webkit-transform: translate(var(--translateX, -50%), var(--translateY, 0%));
          transform: translate(var(--translateX, -50%), var(--translateY, 0%));
  font-weight: 700;
  font-size: 2em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  bottom: 0;
  z-index: -1;
  color: rgba(0, 0, 0, 0.1);
  -webkit-text-fill-color: currentColor;
}
@media only screen and (max-width: 767px) {
  .axv-a-h-line-mobile-hidden .axv-advanced-headline {
    display: block;
  }
  .axv-a-h-line-mobile-hidden .axv-advanced-headline:before,
  .axv-a-h-line-mobile-hidden .axv-advanced-headline:after {
    display: none;
  }
}
.axv-advanced-headline-divider {
  position: relative;
  border-bottom: var(--line-height, 2px) var(--line-style, solid) var(--line-color, #e1e1e1);
  margin-bottom: var(--line-space, 15px);
}
.axv-a-h-line-before .axv-advanced-headline:before {
  margin-right: var(--line-space, 15px);
}
.axv-a-h-line-after .axv-advanced-headline:after {
  margin-left: var(--line-space, 15px);
}
.axv-advanced-headline-heading-wrapper .axv-advanced-headline {
  position: relative;
  display: inline-block;
}
.axv-advanced-headline-heading-wrapper .axv-advanced-headline:after {
  content: '';
  border-bottom: var(--line-height, 2px) var(--line-style, solid) var(--line-active-color, #2962FF);
  display: block;
  position: absolute;
  width: 100%;
  bottom: calc((var(--heading-space, 10px) + var(--line-height,2px)) * -1);
  z-index: 1;
}

/***************************************************************************/

.axv-icon-box {
  border-radius: 3px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.axv-icon-box-icon {
  display: inline-block;
  line-height: 1;
  margin-bottom: var(--icon-space, 15px);
}
.axv-icon-box-icon-type-image,
.axv-icon-box-icon-type-icon,
.axv-icon-box-icon-type-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 2.85rem;
}
.axv-icon-box-icon-type-text {
  font-size: 5rem;
}
.axv-icon-box-icon img {
  max-width: 1em;
}
.axv-icon-box-icon-position-left,
.axv-icon-box-icon-position-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.axv-icon-box-icon-position-left .axv-icon-box-icon,
.axv-icon-box-icon-position-right .axv-icon-box-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-bottom: 0;
}
.axv-icon-box-icon-position-left .axv-icon-box-content,
.axv-icon-box-icon-position-right .axv-icon-box-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.axv-icon-box-icon-position-top.axv-icon-box-icon-outside .axv-icon-box-icon {
  margin-top: var(--icon-offset, -0.5em);
}
.axv-icon-box-icon-position-left.axv-icon-box-icon-outside .axv-icon-box-icon {
  margin-left: var(--icon-offset, -0.5em);
}
.axv-icon-box-icon-position-right.axv-icon-box-icon-outside .axv-icon-box-icon {
  margin-right: var(--icon-offset, -0.5em);
}
.axv-icon-box-icon-position-left .axv-icon-box-icon {
  margin-right: var(--icon-space, 15px);
}
.axv-icon-box-icon-position-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.axv-icon-box-icon-position-right .axv-icon-box-icon {
  margin-left: var(--icon-space, 15px);
}
.axv-icon-box-title,
.axv-icon-box-subtitle {
  text-transform: none;
}
.axv-icon-box-title span,
.axv-icon-box-subtitle span {
  display: inline-block;
}
.axv-icon-box-title {
  font-size: 1.7rem;
}
.axv-icon-box-subtitle {
  font-size: 0.75rem;
  color: #fff;
}
.axv-icon-box-subtitle span {
  background-color: #2962FF;
  padding: 3px 12px;
  border-radius: 3px;
}

/********************************************************/

.banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.elementor-element .banner {
  margin-bottom: 0;
}
.banner a:hover {
  opacity: 0.9;
}
.banner img {
  width: 100%;
  height: auto;
}
.banner .banner-title {
  display: block;
}
.banner .banner-subtitle {
  font-size: 1rem;
  display: block;
}
.banner .banner-title span,
.banner .banner-subtitle span {
  display: inline-block;
}
.banner .banner-title:not(.no-uppercase),
.banner .banner-subtitle:not(.no-uppercase) {
  text-transform: uppercase;
}
.banner .banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 15px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.banner .banner-content p {
  line-height: 1.5;
}
.banner .banner-content .banner-subtitle,
.banner .banner-content .banner-title,
.banner .banner-content .content-inner {
  position: relative;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: transform 0.35s, opacity 0.35s;
  transition: transform 0.35s, opacity 0.35s, -webkit-transform 0.35s;
}
.banner .banner-button {
  margin-top: 10px;
  height: auto;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.banner.no-titles .banner-content .content-inner {
  padding: 0 !important;
}
.banner.button-on-hover .button-wrap {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.banner.button-on-hover:not(:hover) .button-wrap {
  opacity: 0;
  visibility: hidden;
}
.banner.valign-bottom .banner-content {
  top: auto;
  bottom: 0;
}
.banner.valign-middle .banner-content {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner.font-style-light,
.banner.font-style-light h1,
.banner.font-style-light h2,
.banner.font-style-light h3,
.banner.font-style-light h4,
.banner.font-style-light h5,
.banner.font-style-light h6,
.banner.font-style-light p {
  color: #fff;
}
.banner.with-diagonal:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 120%;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
  z-index: 1;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translateY(-150%);
          transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translateY(-150%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
}
.banner.with-diagonal:hover:before,
.banner.with-diagonal.active:before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translateY(200%);
          transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translateY(200%);
  left: -100%;
  top: 100%;
}
.banner.with-border:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid var(--ax_border-color, #e1e1e1);
  margin: -2px;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  pointer-events: none;
}
.banner.with-border:hover:after,
.banner.with-border.active:after {
  margin: 10px;
}
.banner.text-effect-1:not(:hover):not(.active) .banner-content .content-inner {
  opacity: 0;
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}
.banner.text-effect-1:hover .banner-title,
.banner.text-effect-1.active .banner-title,
.banner.text-effect-1:hover .banner-subtitle,
.banner.text-effect-1.active .banner-subtitle {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
.banner.text-effect-1 .banner-content .content-inner {
  position: absolute;
  left: 15px;
  right: 15px;
}
.banner.content-effect-on-hover .banner-content > * {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.banner.content-effect-on-hover:not(:hover) .banner-content > * {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.banner.content-effect-on-hover:not(:hover) .banner-content .button-wrap {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}
.content-product .banner-type-1 img {
  -webkit-transform: none !important;
          transform: none !important;
}
.content-product .banner-type-1:before {
  display: none;
}
@media only screen and (max-width: 1200px) and (min-width: 992px) {
  .sidebar .banner .banner-content {
    zoom: 0.8;
  }
}
@media only screen and (max-width: 767px) {
  .banner .banner-content,
  .banner .banner-content .banner-subtitle {
    text-align: center !important;
  }
  .banner .banner-content .banner-title {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .banner .banner-content,
  .banner.banner-type-2 .banner-content .banner-subtitle {
    text-align: center !important;
  }
  .banner.banner-type-1 .banner-subtitle {
    font-size: 3vw;
  }
  .banner.banner-type-1 .content-inner p {
    margin-bottom: 10px !important;
  }
  .banner-type-2:hover .banner-content h3 {
    margin-bottom: 0;
  }
  .banner-type-2:hover .banner-content p,
  .banner-type-2:hover .banner-content a.btn {
    padding-top: 0;
  }
  .banner.banner-type-2.align-right .btn {
    right: auto;
  }
}
/*-----  End of Banners  ------*/

.axv-icon-list {
  margin: calc(var(--v-space, 10px) * -1) 0;
}
.axv-icon-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--v-space, 10px) var(--h-space, 0);
}
.axv-icon-list-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 calc(var(--h-space,10px) * -1);
}
.axv-icon-list-inline .axv-icon-list-item {
  padding: var(--v-space, 0) var(--h-space, 10px);
}
.axv-icon-list-inline .axv-icon-list-item.has-divider {
  border-bottom: none;
  border-right: var(--line-weight, 1px) var(--line-style, solid) var(--line-color, #e1e1e1);
}
.axv-icon-list-item.has-divider {
  border-bottom: var(--line-weight, 1px) var(--line-style, solid) var(--line-color, #e1e1e1);
}
.axv-icon-list-item-label {
  background: #2962FF;
  color: #fff;
  font-size: 0.57em;
  line-height: 0.9em;
  padding: 0.42em;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 2px;
  -webkit-margin-start: 6px;
          margin-inline-start: 6px;
}
.axv-icon-list-item-icon {
  -webkit-margin-end: var(--icon-space, 7px);
          margin-inline-end: var(--icon-space, 7px);
}
.axv-icon-list-item-icon-inner {
  color: #000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}
.axv-icon-list-item-icon-inner img {
  max-width: 25px;
}
.axv-icon-list-item-text {
  color: currentColor;
}

.ax_image-with-hover img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.ax_image-hover-2:hover img,
.ax_image-hover-2.active img,
.ax_image-hover-4:not(:hover):not(.active) img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.ax_image-hover-6 img {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  width: calc(100% + 30px);
  max-width: calc(100% + 30px);
}
.ax_image-hover-6:not(:hover):not(.active) img {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}
.ax_image-hover-5 img {
  -webkit-transition-duration: 0.35s;
          transition-duration: 0.35s;
  width: calc(100% + 60px);
  max-width: calc(100% + 60px);
}
.ax_image-hover-5:not(:hover):not(.active) img {
  -webkit-transform: translateX(-30px) scale(1.15);
          transform: translateX(-30px) scale(1.15);
}

/*************************************************************/

.axv-linear-progress-bar {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  background: #f1f1f1;
  padding: var(--progress-inner-space, 0);
  margin: var(--progress-space, 7px) 0;
  border-radius: var(--progress-radius, 3px);
}
.axv-linear-progress-bar-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #1a1a1a;
  line-height: 1;
}
.axv-linear-progress-bar-wrapper.style-03 {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  --progress-space: 0;
}
.axv-linear-progress-bar:last-child {
  margin-bottom: 0;
}
.axv-linear-progress-bar:first-child {
  margin-top: 0;
}
.axv-linear-progress-bar-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  color: #fff;
  background: #2962FF;
  height: var(--progress-height, 30px);
  width: 0;
  border-radius: inherit;
  -webkit-transition: width 1.5s linear;
  transition: width 1.5s linear;
}
.axv-linear-progress-bar-inner.loading:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-size: 30px 30px;
  background-image: linear-gradient(-45deg, var(--progress-color-animation, rgba(255, 255, 255, 0.15)) 25%, transparent 25%, transparent 50%, var(--progress-color-animation, rgba(255, 255, 255, 0.15)) 50%, var(--progress-color-animation, rgba(255, 255, 255, 0.15)) 75%, transparent 75%, transparent);
  -webkit-animation: axv-linear-progress-bar-animation 1.5s linear infinite;
          animation: axv-linear-progress-bar-animation 1.5s linear infinite;
  border-radius: inherit;
  pointer-events: none;
}
.axv-linear-progress-bar-title {
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  -webkit-padding-end: 15px;
          padding-inline-end: 15px;
  z-index: 1;
}
.axv-linear-progress-bar-label {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
  z-index: 1;
}
.axv-linear-progress-bar-label.with-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 4px);
  background: var(--progress-active-color, #2962FF);
  padding: 2px 5px;
  color: #fff;
}
.axv-linear-progress-bar-label.with-tooltip:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -4px;
  border: 2px solid var(--progress-active-color, #2962FF);
  border-left-color: transparent;
  border-bottom-color: transparent;
}
@-webkit-keyframes axv-linear-progress-bar-animation {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 30px;
  }
}
@keyframes axv-linear-progress-bar-animation {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 30px;
  }
}

/*************************************************************/

.axv-image-comparison {
  position: relative;
  overflow: hidden;
  cursor: col-resize;
}
.axv-image-comparison-img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  max-width: none;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  top: 0;
  display: block;
}
.axv-image-comparison-img-a {
  height: auto;
  position: static;
  z-index: 1;
  left: 0;
}
.axv-image-comparison-img-b {
  height: 100%;
  position: absolute;
  z-index: 2;
  left: auto;
  right: 0;
  width: auto;
}
.axv-image-comparison img {
  height: 100%;
  max-width: inherit;
}
.axv-image-comparison-overlay {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color, rgba(0, 0, 0, 0.15));
}
.axv-image-comparison-wrapper {
  position: absolute;
  width: 100%;
  height: 100% !important;
  right: 0;
  top: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  z-index: 3;
}
.axv-image-comparison-control {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  top: 0;
  z-index: 3;
}
.axv-image-comparison-control-line {
  height: 50%;
  width: 2px;
}
.axv-image-comparison-theme-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.1s ease-out 0s;
}
.axv-image-comparison-arrows-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
      -ms-flex-direction: inherit;
          flex-direction: inherit;
  background-color: var(--divider-bg-color, #2962FF);
  font-size: var(--divider-arrows-size, 1rem);
  color: var(--divider-arrows-color, #fff);
  width: var(--divider-width, 45px);
  height: var(--divider-height, 45px);
  border-radius: var(--divider-radius, 0);
}
.axv-image-comparison-arrows-wrapper span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.axv-image-comparison-arrow-a {
  -webkit-transform: scale(1.5) rotateZ(180deg);
          transform: scale(1.5) rotateZ(180deg);
  height: 20px;
  width: 20px;
  -webkit-filter: drop-shadow(0 -3px 5px rgba(0, 0, 0, 0.33));
          filter: drop-shadow(0 -3px 5px rgba(0, 0, 0, 0.33));
}
.axv-image-comparison-arrow-b {
  -webkit-transform: scale(1.5) rotateZ(0deg);
          transform: scale(1.5) rotateZ(0deg);
  height: 20px;
  width: 20px;
  -webkit-filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.33));
          filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.33));
}
.axv-image-comparison-label {
  position: absolute;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #000;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 7px 15px;
  border-radius: 3px;
  z-index: 3;
}
.axv-image-comparison-label-before {
  margin-top: var(--labels-v-offset, 0);
  margin-bottom: var(--labels-v-offset, 0);
  left: var(--labels-h-offset, 0);
}
.axv-image-comparison-label-after {
  margin-top: var(--labels-v-offset, 0);
  margin-bottom: var(--labels-v-offset, 0);
  right: var(--labels-h-offset, 0);
}
.axv-image-comparison-label.on-hover {
  opacity: 0;
  -webkit-transition: 0.25s cubic-bezier(0.68, 0.26, 0.58, 1.22);
  transition: 0.25s cubic-bezier(0.68, 0.26, 0.58, 1.22);
}
.axv-image-comparison:hover .axv-image-comparison-label.on-hover {
  opacity: 1;
}
.axv-image-comparison-labels-top .axv-image-comparison-label {
  top: 0;
}
.axv-image-comparison-labels-bottom .axv-image-comparison-label {
  bottom: 0;
}
.axv-image-comparison-body {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
