/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)";

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
.banner {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .banner + * {
    margin-top: 15px;
  }
}
.banner__image {
  height: auto;
}
.banner__hotspotlink {
  position: absolute;
  background-color: transparent;
  background-position: center center;
}
/* Slider styling */

[data-slider-role="container"] {
  position: relative;
  margin: 0 0 15px;
  list-style: none;
  margin: 0;
}
[data-slider-role="container"] .slidesjs-container {
  width: 100%;
  overflow: hidden;
}
[data-slider-role="container"] .slidesjs-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 10px auto 0;
  text-align: center;
}
[data-slider-role="container"] .slidesjs-navigation {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 10%;
  z-index: 99;
  text-indent: -999999em;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

}
[data-slider-role="container"] .slidesjs-navigation.slidesjs-previous {
  left: 0;
}
[data-slider-role="container"] .slidesjs-navigation.slidesjs-previous:after {
  content: "\f053";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 40px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 30px;
  height: 40px;
  line-height: 40px;
  left: 15px;
}
[data-slider-role="container"] .slidesjs-navigation.slidesjs-next {
  right: 0;
}
[data-slider-role="container"] .slidesjs-navigation.slidesjs-next:after {
  content: "\f054";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 40px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 30px;
  height: 40px;
  line-height: 40px;
  right: 15px;
}
[data-slider-role="container"] .slidesjs-navigation.slidesjs-previous:after,
[data-slider-role="container"] .slidesjs-navigation.slidesjs-next:after {
  color: white;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  text-indent: 0;
}
