[class*="uk-animation-"] {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Hide animated element if scrollspy is used */

.uk-animation-slide-top {
  -webkit-animation-name: uk-fade-top;
  animation-name: uk-fade-top;
}

@-webkit-keyframes uk-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }

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

@keyframes uk-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

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

.uk-animation-reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

[data-uk-sticky].uk-active {
  z-index: 980;
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  -webkit-backface-visibility: hidden;
}

/*
 * Faster animations
 */

[data-uk-sticky][class*="uk-animation-"] {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

[data-uk-sticky].uk-animation-reverse {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

/* tooltip */

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease 0s;
  -o-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
  min-width: 100px;
  visibility: hidden;
}

.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 1;
  visibility: visible;
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: rgba(255, 255, 255, 0.9);
}

.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: rgba(255, 255, 255, 0.9);
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: rgba(255, 255, 255, 0.9);
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: rgba(255, 255, 255, 0.9);
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: rgba(255, 255, 255, 0.9);
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.tooltip-inner {
  max-width: 305px;
  min-width: 305px;
  padding: 15px;
  color: #4d4d4d;
  font-size: 11px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 4px 30px 0px rgba(77, 77, 77, 0.13);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
}

.tooltip-arrow {
  position: absolute;
  z-index: 3;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  -webkit-filter: drop-shadow(0px 4px 30px rgba(77, 77, 77, 0.13));
  filter: drop-shadow(0px 4px 30px rgba(77, 77, 77, 0.13));
}

.swiper-button-lock {
  display: none !important;
}

@media screen and (max-width: 767px) {
  /* ========================================================================
   Component: Off-canvas
 ========================================================================== */

  /*
   * This is the offcanvas overlay and bar container
   * 1. Hide by default
   * 2. Set fixed position
   * 3. Deactivate browser touch actions in IE11
   * 4. Mask the background page
   */

  .uk-offcanvas {
    /* 1 */
    display: none;
    /* 2 */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    /* 3 */
    touch-action: none;
    /* 4 */
    background: rgba(0, 0, 0, 0.1);
  }

  .uk-offcanvas.uk-active {
    display: block;
    height: 100vh;
  }

  /* Sub-object `uk-offcanvas-page`
   ========================================================================== */

  /*
   * Prepares the whole HTML page to slide-out
   * 1. Fix the main page and disallow scrolling
   * 2. Side-out transition
   * 3. Needed for the transition to work instead of just letting it pop to the side
   */

  .uk-offcanvas-page {
    /* 1 */
    position: fixed !important;
    /* 2 */
    -webkit-transition: margin-left 0.3s ease-in-out;
    -o-transition: margin-left 0.3s ease-in-out;
    transition: margin-left 0.3s ease-in-out;
    /* 3 */
    margin-left: 0;
  }

  /* Sub-object `uk-offcanvas-bar`
   ========================================================================== */

  /*
   * This is the offcanvas bar
   * 1. Set fixed position
   * 2. Size and style
   * 3. Allow scrolling
   * 4. Side-out transition
   * 5. Deactivate scroll chaining in IE11
   */

  .uk-offcanvas-bar {
    /* 1 */
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 1001;
    /* 2 */
    width: 360px;
    padding: 30px 30px 30px;
    max-width: 100%;
    background: #ffffff;
    box-shadow: 0px 5px 30px rgba(46, 33, 110, 0.15);
    /* 3 */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* 4 */
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: -o-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition:
      transform 0.3s ease-in-out,
      -webkit-transform 0.3s ease-in-out,
      -o-transform 0.3s ease-in-out;
    /* 5 */
    -ms-scroll-chaining: none;
  }

  .uk-offcanvas.uk-active .uk-offcanvas-bar.uk-offcanvas-bar-show {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }

  /* Modifier `uk-offcanvas-bar-flip`
   ========================================================================== */

  .uk-offcanvas-bar-flip {
    left: auto;
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }

  /* Offcanvase modes
   ========================================================================== */

  .uk-offcanvas-bar[mode="none"] {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .uk-offcanvas-bar[mode="reveal"] {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    clip: rect(0, 0, 100vh, 0);
    -webkit-transition:
      -webkit-transform 0.3s ease-in-out,
      clip 0.3s ease-in-out;
    -webkit-transition:
      clip 0.3s ease-in-out,
      -webkit-transform 0.3s ease-in-out;
    transition:
      clip 0.3s ease-in-out,
      -webkit-transform 0.3s ease-in-out;
    -o-transition:
      clip 0.3s ease-in-out,
      -o-transform 0.3s ease-in-out;
    transition:
      transform 0.3s ease-in-out,
      clip 0.3s ease-in-out;
    transition:
      transform 0.3s ease-in-out,
      clip 0.3s ease-in-out,
      -webkit-transform 0.3s ease-in-out,
      -o-transform 0.3s ease-in-out;
  }

  .uk-offcanvas-bar-flip[mode="reveal"] {
    clip: none;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }

  .uk-offcanvas-bar-flip[mode="reveal"] > * {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: -o-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition:
      transform 0.3s ease-in-out,
      -webkit-transform 0.3s ease-in-out,
      -o-transform 0.3s ease-in-out;
  }

  .uk-offcanvas.uk-active
    .uk-offcanvas-bar-flip[mode="reveal"].uk-offcanvas-bar-show
    > * {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@media screen {
  [data-uk-scrollspy*="uk-animation-"]:not([data-uk-scrollspy*="target"]) {
    opacity: 0;
  }
}
