﻿/******************************************************************************/
/* #0 - VENDOR - 3rd party modules                                            */
/******************************************************************************/
/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
/* line 9, ../scss/vendor/_owl.carousel.scss */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

/* line 16, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

/* line 19, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 26, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

/* line 31, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* line 38, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

/* line 42, ../scss/vendor/_owl.carousel.scss */
.owl-arrows.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

/* line 45, ../scss/vendor/_owl.carousel.scss */
.owl-arrows .owl-prev,
.owl-arrows .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 55, ../scss/vendor/_owl.carousel.scss */
.owl-carousel.owl-loaded {
  display: block;
}

/* line 57, ../scss/vendor/_owl.carousel.scss */
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

/* line 60, ../scss/vendor/_owl.carousel.scss */
.owl-carousel.owl-hidden {
  opacity: 0;
}

/* line 62, ../scss/vendor/_owl.carousel.scss */
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

/* line 64, ../scss/vendor/_owl.carousel.scss */
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 69, ../scss/vendor/_owl.carousel.scss */
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

/* line 72, ../scss/vendor/_owl.carousel.scss */
.owl-carousel.owl-rtl {
  direction: rtl;
}

/* line 74, ../scss/vendor/_owl.carousel.scss */
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
/* line 78, ../scss/vendor/_owl.carousel.scss */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
/* line 84, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .animated {
 /* -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;*/
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 90, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-animated-in {
  z-index: 0;
}

/* line 93, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-animated-out {
  z-index: 1;
}

/* line 96, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
/* line 115, ../scss/vendor/_owl.carousel.scss */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
/* line 121, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

/* line 125, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
/* line 132, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

/* line 137, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
}

/* line 152, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

/* line 157, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

/* line 161, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

/* line 169, ../scss/vendor/_owl.carousel.scss */
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/******************************************************************************/
/* #1 - SETUP - initial includes and variables used throughout the project    */
/******************************************************************************/
/******************************************************************************/
/* #2 - OVERRIDES - overrides for vendor styles                               */
/******************************************************************************/
/******************************************************************************/
/* #3 - COMMON - base components (e.g. typography, buttons & form elements)   */
/******************************************************************************/
/******************************************************************************/
/* #4 - COMPONENTS - project specific components and modules                  */
/******************************************************************************/
/* line 1, ../scss/components/_slideshow.scss */
body {
  background-color: #eeeeee;
}
/* line 4, ../scss/components/_slideshow.scss */
body .popover {
  background: #f3f5f7;
  border-radius: 0;
  border: none;
  -moz-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.1);
}
/* line 11, ../scss/components/_slideshow.scss */
body .popover .popover-title {
  color: #002553;
  border-bottom: none;
  padding: 12px 14px 5px 14px;
}
/* line 17, ../scss/components/_slideshow.scss */
body .popover > .arrow {
  display: none;
}

/* line 24, ../scss/components/_slideshow.scss */
.slideshowwrapper {
  position: relative;
  padding-top: 100px;
  width: 726px;
  margin: 0px -44px 0 -44px;
}
/* line 30, ../scss/components/_slideshow.scss */
.slideshowwrapper.slideshowwrapper--gallery {
  width: 726px;
  margin: 0px -44px 0 -44px;
}
/* line 36, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow .slide {
  text-align: center;
}
/* line 39, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow .slide img {
  height: auto;
  opacity: 0.3;
  transform: scale(0.60) translateY(0);
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slideshowwrapper .slideshow .slide .slide--ceralog img {
  opacity: 0.6;
}

/* line 49, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow .active.center img {
  opacity: 1;
  transform: scale(1) translateY(0);
}


.slideshowwrapper .slideshow .owl-item a {
}


.slideshowwrapper .slideshow .owl-item.active.center a {
  pointer-events: visible;
}



/* line 56, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery {
  background-image: url('vhs-assets-css-c22cf93e16c136d50be01058913c8b83.png');
  background-repeat: repeat-x;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  min-height: 363px;
}
/* line 62, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-item {
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  -moz-transition: opacity 0s ease-in-out;
  -o-transition: opacity 0s ease-in-out;
  -webkit-transition: opacity 0s ease-in-out;
  transition: opacity 0s ease-in-out;
  margin-top: 10px;
}
/* line 68, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-item.prev {
  opacity: 1;
  visibility: visible;
  -moz-transition: opacity 0s ease-in-out;
  -o-transition: opacity 0s ease-in-out;
  -webkit-transition: opacity 0s ease-in-out;
  transition: opacity 0s ease-in-out;
}
/* line 74, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-item.active {
  opacity: 1;
  visibility: visible;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/* line 79, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-item.active img {
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/* line 83, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-item.active .slide {
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  /*padding: 14px 9px;*/
  padding: 4px 9px 16px 9px;
}
/* line 93, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-item.active.prev .slide {
  /*padding: 14px 10px;*/
  padding: 4px 9px 16px 9px;
}
/* line 99, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-item.center {
  z-index: 10;
  -moz-transform: translateZ(100px);
  -ms-transform: translateZ(100px);
  -webkit-transform: translateZ(100px);
  transform: translateZ(100px);
  margin-top: 0;
}
/* line 104, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-item.center + .active {
  -moz-transform: perspective(600px) rotateY(0deg) scale(0.75);
  -ms-transform: perspective(600px) rotateY(0deg) scale(0.75);
  -webkit-transform: perspective(600px) rotateY(0deg) scale(0.75);
  transform: perspective(600px) rotateY(0deg) scale(0.75);
}
/* line 108, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-item.center .slide {
  background-size: 100% 100%;
  /*padding: 14px 2px 20px 2px;*/
  padding: 3px 3px 21px 3px;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/* line 114, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-item.center .slide img {
  opacity: 1;
  transform: scale(1) translateY(0);
  -webkit-transform: scale(1) translateY(0);
  -moz-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  /*@include transition(
                  scale 0s ease-in-out,
                  opacity 0.4s ease-in-out 0s
  );*/
}
/* line 125, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-item:not(.center) {
  -moz-transform: perspective(600px) rotateY(0deg) scale(0.75);
  -ms-transform: perspective(600px) rotateY(0deg) scale(0.75);
  -webkit-transform: perspective(600px) rotateY(0deg) scale(0.75);
  transform: perspective(600px) rotateY(0deg) scale(0.75);
}
/* line 130, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .slide {
  background-image: url('vhs-assets-css-379db4e2135a4ebfe2f42c20778c6e4a.png');
  background-position: center center;
  background-size: 73.5% 77%;
  background-repeat: no-repeat;
  /*padding: 14px 9px;*/
  padding: 4px 9px 16px 9px;
}
/* line 139, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .slide img {
  opacity: 0.3;
  transform: scale(0.75) translateY(0);
  -webkit-transform: scale(0.75) translateY(0);
  -moz-transform: scale(0.75) translateY(0);
  -ms-transform: scale(0.75) translateY(0);
  /*@include transition(
                  scale 0.4s ease-in-out,
                  opacity 0.4s ease-in-out 0.4s
  );*/
}
/* line 149, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-prev {
  left: 6%;
}
/* line 153, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-next {
  right: 6%;
}
/* line 158, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--gallery .owl-dots {
  bottom: -10px;
}
/* line 168, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--popover {
  margin: auto;
  background-image: url('vhs-assets-css-134793c5d35680a5ce04ded72228645d.png');
  margin-bottom: 95px;
  background-repeat-y: no-repeat;
  background-repeat-x: repeat;
  background-size: auto 100%;
}
/* line 174, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--popover .active.center .slide .product {
  padding: 0 30px;
}
/* line 178, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--popover .active.center .slide .product .product__poi .poi__button {
  opacity: 1;
  position: absolute;
  left: 0;
  width: 21px;
  height: 21px;
  background-image: url('vhs-assets-css-f203e1cdb1d94b3fa8d338b65d4457b7.png');
  background-repeat: no-repeat;
  background-position: center center;
  -moz-transform: translateY(-50%) scale(0.9);
  -ms-transform: translateY(-50%) scale(0.9);
  -webkit-transform: translateY(-50%) scale(0.9);
  transform: translateY(-50%) scale(0.9);
  background-size: cover;
}


@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
    .slideshowwrapper .slideshow.slideshow--popover .active.center .slide .product .product__poi .poi__button {
      background-image: url('vhs-assets-css-5a4656ea3f54a078f5416845f35a6ff9.png');
    }
}

@media screen and (max-width:1030px) {
  .slideshowwrapper .slideshow.slideshow--popover .active.center .slide .product .product__poi .poi__button {
    width: 32px;
    height: 32px;
  }
}


.slideshowwrapper .slideshow.slideshow--popover .active.center .slide .product .product__poi {
  -webkit-animation-delay: 300ms;
  -moz-animation-delay: 300ms;
  animation-delay: 300ms;
}

.slideshowwrapper .slideshow.slideshow--popover .owl-item .slide .product .product__poi{
 visibility: hidden;
}

.slideshowwrapper .slideshow.slideshow--popover .owl-item .slide .product .product__poi .poi__line,
.slideshowwrapper .slideshow.slideshow--popover .owl-item .slide .product .product__poi .poi__button {
  display: none;
}

.slideshowwrapper .slideshow.slideshow--popover .owl-item.active.center .slide .product .product__poi .poi__line,
.slideshowwrapper .slideshow.slideshow--popover .owl-item.active.center .slide .product .product__poi .poi__button {
  display: block;
}

.slideshowwrapper .slideshow.slideshow--popover .owl-item .slide .product .product__poi .poi__button {
  margin-top: -11px;
}

@media screen and (max-width: 1030px) {
  .slideshowwrapper .slideshow.slideshow--popover .owl-item .slide .product .product__poi .poi__button {
    margin-top: -16px;
  }
}

.slideshowwrapper .slideshow.slideshow--popover .owl-item{
  z-index: -1;
}


.slideshowwrapper .slideshow.slideshow--popover .owl-item.active.center{
  z-index: 0;
}



/* line 190, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--popover .active.center .slide .product .product__poi .poi__line {
  position: absolute;
  height: 1px;
  background-color: #707684;
  left: 2px;
  opacity: 1;

  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}
/* line 199, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--popover .active.center .slide .product .product__poi.product__poi--right .poi__button {
  left: auto;
  right: 0;
}
/* line 204, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--popover .active.center .slide .product .product__poi.product__poi--right .poi__line {
  left: auto;
  right: 2px;
}
/* line 216, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--popover .slide img {
  width: auto;
}
/* line 220, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--popover .slide .product {
  display: inline-block;
  position: relative;

  background: url('vhs-assets-css-29391d8ada16faf216d2c91e2aac6884.png') no-repeat;
  background-position: center center;
}
/* line 225, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--popover .slide .product .product__poi .poi__button,
.slideshowwrapper .slideshow.slideshow--popover .slide .product .product__poi .poi__line {
  /*opacity: 0;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;*/
}
.slideshowwrapper .slideshow.slideshow--popover .slide .product .product__poi .poi__button {
  cursor:pointer;
}
/* line 232, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow.slideshow--popover .slide .product .product__logo {
  display: none;
}
/* line 240, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow .owl-dots {
  text-align: center;
  margin-top: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.slideshowwrapper .slideshow.slideshow--popover .owl-dots{
  margin-top: 35px;
}

/* line 248, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow .owl-dot {
  background-color: #002553;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/* line 258, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow .owl-dot.active {
  width: 13px;
  height: 13px;
}
/* line 264, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow .owl-prev, .owl-arrows .owl-prev{
  background-image: url('vhs-assets-css-599d6055e91b39bdc2b2c439e7489b83.png');
  left: 70px;
  background-position: left center;
}
/* line 270, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow .owl-next, .owl-arrows .owl-next {
  background-image: url('vhs-assets-css-4c97f148f3be7fc90885edbd871626f0.png');
  right: 70px;
  background-position: right center;
}
/* line 276, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow .owl-prev, .slideshowwrapper .slideshow .owl-next, .owl-arrows .owl-prev, .owl-arrows .owl-next {
  padding: 40px 20px;
  background-repeat: no-repeat;
  width: 33px;
  height: 43px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/* line 287, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow__logostage {
  position: absolute;
  right: 28px;
  bottom: calc(100% - 75px);
}
/* line 292, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow__logostage img {
  max-height: 50px;
}

.slideshowwrapper .slideshow__logostage.logo--isy img{
  max-height: 80px;
}

.slideshowwrapper .slideshow__logostage.logo--isy {
  bottom: calc(100% - 105px);
}

  /* line 297, ../scss/components/_slideshow.scss */
.slideshowwrapper .product__poi__tooltip {
  position: absolute;
  display: none;
}
/* line 302, ../scss/components/_slideshow.scss */
.slideshowwrapper .slideshow--gallery {
  margin-bottom: 50px;
}

/******************************************************************************/
/* #5 - PRINT - print specific adjustments                                     */
/******************************************************************************/


.tooltip {
  border: 2px solid white;
}

.tooltip {
  opacity: 0;
  display: inline-block;
  position: absolute;
  padding:15px;

  margin-top: 20px;
  text-align: left;
  text-decoration: none;

  background: #f3f5f7;
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.1);
  -ms-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.1);

  border: none;

  max-width: 190px;
  width: 190px;
  overflow-y: auto;

  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .tooltip {
    max-width: 126px;
    width: 126px;
  }
}

.tooltip.active {
  pointer-events: visible;
}


.tooltip.tooltipRight {
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
}

.tooltip.tooltipLeft {
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}


.tooltip__arrow {
  opacity: 0;
  position: absolute;
  z-index: 10;
}

.tooltip__arrow:after,
.tooltip__arrow:before {
   content: '';
   display: block;
   position: absolute;
   width: 0;
   height: 0;
   border-style: solid;

 }

.tooltip__arrow:after {
  border-width: 10px;
  margin-top: -7px;
}

.tooltip__arrow:before {
  border-width: 11px;
  margin-top: -10px;
}


.tooltip__arrow--left:after, .tooltip__arrow--left:before {
  left: 100%;
}

.tooltip__arrow--left:after {
  border-width: 12px;
  margin-top: -9px;
  margin-left: -1px;
  border-color: transparent transparent transparent #f3f5f7;
}

.tooltip__arrow--left:before {
  border-width: 12px;
  margin-top: -9px;
  margin-left: 1px;
  border-color: transparent transparent transparent rgba(0,0,0,0.1);
}


@media screen and (max-width: 1030px){
  .tooltip__arrow--left:after {
    margin-left: -5px;
  }
  .tooltip__arrow--left:before {
    margin-left: -3px;
  }
}



.tooltip__arrow--right:after, .tooltip__arrow--right:before {
  right: 100%;
}

.tooltip__arrow--right{
  margin-left: 2px;
}

.tooltip__arrow--right:after {
  border-color: transparent #f3f5f7 transparent transparent;
}

.tooltip__arrow--right:before {
  border-width: 13px;
  border-color: transparent rgba(0,0,0,0.05) transparent transparent;
}



.tooltip.active {
  opacity: 1;
  margin-top: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition:    all 0.2s ease;
  -ms-transition:     all 0.2s ease;
  -o-transition:      all 0.2s ease;
}

.tooltip.out {
  opacity: 0;
  margin-top: -20px;
}

.tooltip .popover-title {
  font-size: 14px;
  margin-bottom: 5px;
}

@media screen and (max-width: 991px){
  .tooltip .popover-title {
    font-size: 11px;
  }
}


@keyframes pulse {
  0% {transform: scale(0.9) rotateZ(-0.01deg) translateX(0px); -webkit-transform: scale(0.9) rotateZ(-0.01deg) translateX(0px);  -moz-transform: scale(0.9);  -ms-transform: scale(0.9) rotateZ(-0.01deg) translateX(0px);}
  50% { transform: scale(1) rotateZ(-0.02deg) translateX(0.1px); -webkit-transform: scale(1) rotateZ(-0.02deg) translateX(0.1px);  -moz-transform: scale(1);  -ms-transform: scale(1) rotateZ(-0.02deg) translateX(0.1px);}
  100% {transform: scale(0.9) rotateZ(-0.01deg) translateX(0px); -webkit-transform: scale(0.9) rotateZ(-0.01deg) translateX(0px);  -moz-transform: scale(0.9);  -ms-transform: scale(0.9) rotateZ(-0.01deg) translateX(0px);}
}

@-webkit-keyframes pulse {
  0% { transform: scale(0.9); -webkit-transform: scale(0.9);  -moz-transform: scale(0.9);  -ms-transform: scale(0.9);}
  50% { transform: scale(1); -webkit-transform: scale(1);  -moz-transform: scale(1);  -ms-transform: scale(1);}
  100% {transform: scale(0.9); -webkit-transform: scale(0.9);  -moz-transform: scale(0.9);  -ms-transform: scale(0.9);}
}




.owl-carousel .animated.pulse {
  animation-name: pulse;
  animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  -ms-animation-duration: 3s;
}

