/*--- standard variables ---*/
/* @fontFamily1:        'PT Sans', sans-serif;*/
/*--- product item ratio (thumb + content) ---*/
/*--- media queries. When using responsive ---*/
/*--- media queries. When not using responsive ---
@useResponsive:			false;

@breakPointLargePhone:	~"only screen and (min-width : 1px)";
@breakPointTablet:		~"only screen and (min-width : 1px)";
@breakPointDesktop:		~"only screen and (min-width : 1px)";

@breakPointUpToTablet:	~"only screen and (max-width: 1px)";
@breakPointUpToTabletLand:~"only screen and (max-width: 1023px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 1px)";
*/
/*--- media queries. When using responsive: only mobile & desktop ---
@useResponsive:			false;
@breakPointLargePhone:	~"only screen and (min-width : 480px) and (max-width: 768px )";
@breakPointTablet:		~"only screen and (min-width : 999999999px)";
@breakPointDesktop:		~"only screen and (min-width : 768px)";

@breakPointUpToTablet:	~"only screen and (max-width: 768px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 768px)";
*/
/*--- custom class functions ---*/
/*----- Default functions -----*/
/*----- LESS functions -----*/
.banner {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .banner + * {
    margin-top: 15px;
  }
}
.banner__hotspotlink {
  position: absolute;
  background-color: transparent;
  background-position: center center;
}
/* Slider styling */

body [data-slider-role="container"] {
  position: relative;
  margin: 0 0 15px;
  list-style: none;
  margin: 0;
}
body [data-slider-role="container"] .slidesjs-container {
  width: 100%;
  overflow: hidden;
}
body [data-slider-role="container"] .slidesjs-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 10px auto;
  text-align: center;
}
body [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;*/

}
body [data-slider-role="container"] .slidesjs-navigation.slidesjs-previous {
  left: 0;
}
body [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;
}
body [data-slider-role="container"] .slidesjs-navigation.slidesjs-next {
  right: 0;
}
body [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;
}
body [data-slider-role="container"] .slidesjs-navigation.slidesjs-previous:after,
body [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;
}
