/** VENDOR */
/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */

.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}
.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
  direction: ltr;
}
.noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
}
.noUi-origin {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}
.noUi-handle {
  position: relative;
  z-index: 1;
}
.noUi-stacking .noUi-handle {
  /* This class is applied to the lower origin when
   its values is > 50%. */
  z-index: 10;
}
.noUi-stacking + .noUi-origin {
  /* Fix stacking order in IE7, which incorrectly
   creates a new context for the origins. */
  *z-index: -1;
}
.noUi-state-tap .noUi-origin {
  -webkit-transition: left 0.3s, top 0.3s;
  transition: left 0.3s, top 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.noUi-base {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* Slider size and handle placement;
 */
/*.noUi-horizontal {
	height: 18px;
}*/
/*.noUi-horizontal .noUi-handle {
	width: 34px;
	height: 28px;
	left: -17px;
	top: -6px;
}*/
/*.noUi-vertical {
	width: 18px;
}*/
/*.noUi-vertical .noUi-handle {
	width: 28px;
	height: 34px;
	left: -6px;
	top: -17px;
}*/
/* Styling;
 */
.noUi-background {
  /*background: #FAFAFA;*/
  /*box-shadow: inset 0 1px 1px #f0f0f0;*/
}
.noUi-connect {
  /*	background: #3FB8AF;
	box-shadow: inset 0 0 3px rgba(51,51,51,0.45);*/
  -webkit-transition: background 450ms;
  transition: background 450ms;
}
.noUi-origin {
  /*border-radius: 2px;*/
}
.noUi-target {
  /*	border-radius: 4px;
	border: 1px solid #D3D3D3;
	box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;*/
}
.noUi-target.noUi-connect {
  /*box-shadow: inset 0 0 3px rgba(51,51,51,0.45), 0 3px 6px -5px #BBB;*/
}
/* Handles and cursors;
 */
.noUi-dragable {
  cursor: w-resize;
}
.noUi-vertical .noUi-dragable {
  cursor: n-resize;
}
/*.noUi-handle {
	border: 1px solid #D9D9D9;
	border-radius: 3px;
	background: #FFF;
	cursor: default;
	box-shadow: inset 0 0 1px #FFF,
				inset 0 1px 7px #EBEBEB,
				0 3px 6px -3px #BBB;
}*/
.noUi-active {
  /*	box-shadow: inset 0 0 1px #FFF,
				inset 0 1px 7px #DDD,
				0 3px 6px -3px #BBB;*/
}
/* Handle stripes;
 */
/*.noUi-handle:before,
.noUi-handle:after {
	content: "";
	display: block;
	position: absolute;
	height: 14px;
	width: 1px;
	background: #E8E7E6;
	left: 14px;
	top: 6px;
}
.noUi-handle:after {
	left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
	width: 14px;
	height: 1px;
	left: 6px;
	top: 14px;
}
.noUi-vertical .noUi-handle:after {
	top: 17px;
}*/
/* Disabled state;
 */
[disabled].noUi-connect,
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled] .noUi-handle {
  cursor: not-allowed;
}
.ngsb-wrap {
  -ms-touch-action: none;
}
.ngsb-wrap .ngsb-container {
  width: auto;
  overflow: hidden;
  transition: 0.5s all;
}
.ngsb-wrap:hover .ngsb-scrollbar {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
  /* old ie */
}
.ngsb-wrap .ngsb-scrollbar {
  width: 16px;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
  /* old ie */
}
.ngsb-wrap .ngsb-scrollbar .ngsb-thumb-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}
.ngsb-wrap .ngsb-scrollbar a.ngsb-thumb-container {
  margin: 20px 0;
}
.ngsb-wrap .ngsb-scrollbar .ngsb-track {
  height: 100%;
  margin: 0 auto;
  width: 6px;
  background: #000;
  background: rgba(0, 0, 0, 0.4);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
  /* old ie */
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.1);
}
.ngsb-wrap .ngsb-scrollbar .ngsb-thumb-pos {
  cursor: pointer;
  width: 100%;
  height: 30px;
}
.ngsb-wrap .ngsb-scrollbar .ngsb-thumb-pos .ngsb-thumb {
  transition: 0.5s all;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
  background: #fff;
  /* rgba fallback */
  background: rgba(255, 255, 255, 0.4);
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
  /* old ie */
}
.ngsb-wrap .ngsb-scrollbar .ngsb-thumb-pos:hover .ngsb-thumb {
  background: rgba(255, 255, 255, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
  /* old ie */
}
.ngsb-wrap .ngsb-scrollbar .ngsb-thumb-pos:active {
  background: rgba(255, 255, 255, 0.6);
  filter: "alpha(opacity=60)";
  -ms-filter: "alpha(opacity=60)";
  /* old ie */
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/*!
 * Cropper.js v0.8.1
 * https://github.com/fengyuanchen/cropperjs
 *
 * Copyright (c) 2015-2016 Fengyuan Chen
 * Released under the MIT license
 *
 * Date: 2016-09-03T04:55:16.458Z
 */
.cropper-container {
  font-size: 0;
  line-height: 0;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  direction: ltr;
}
.cropper-container img {
  display: block;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  width: 100%;
  height: 100%;
  image-orientation: 0deg;
}
.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cropper-wrap-box {
  overflow: hidden;
}
.cropper-drag-box {
  opacity: 0;
  background-color: #fff;
}
.cropper-modal {
  opacity: .5;
  background-color: #000;
}
.cropper-view-box {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
}
.cropper-dashed {
  position: absolute;
  display: block;
  opacity: .5;
  border: 0 dashed #eee;
}
.cropper-dashed.dashed-h {
  top: 33.33333333%;
  left: 0;
  width: 100%;
  height: 33.33333333%;
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.cropper-dashed.dashed-v {
  top: 0;
  left: 33.33333333%;
  width: 33.33333333%;
  height: 100%;
  border-right-width: 1px;
  border-left-width: 1px;
}
.cropper-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  opacity: .75;
}
.cropper-center:before,
.cropper-center:after {
  position: absolute;
  display: block;
  content: ' ';
  background-color: #eee;
}
.cropper-center:before {
  top: 0;
  left: -3px;
  width: 7px;
  height: 1px;
}
.cropper-center:after {
  top: -3px;
  left: 0;
  width: 1px;
  height: 7px;
}
.cropper-face,
.cropper-line,
.cropper-point {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: .1;
}
.cropper-face {
  top: 0;
  left: 0;
  background-color: #fff;
}
.cropper-line {
  background-color: #39f;
}
.cropper-line.line-e {
  top: 0;
  right: -3px;
  width: 5px;
  cursor: e-resize;
}
.cropper-line.line-n {
  top: -3px;
  left: 0;
  height: 5px;
  cursor: n-resize;
}
.cropper-line.line-w {
  top: 0;
  left: -3px;
  width: 5px;
  cursor: w-resize;
}
.cropper-line.line-s {
  bottom: -3px;
  left: 0;
  height: 5px;
  cursor: s-resize;
}
.cropper-point {
  width: 5px;
  height: 5px;
  opacity: .75;
  background-color: #39f;
}
.cropper-point.point-e {
  top: 50%;
  right: -3px;
  margin-top: -3px;
  cursor: e-resize;
}
.cropper-point.point-n {
  top: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: n-resize;
}
.cropper-point.point-w {
  top: 50%;
  left: -3px;
  margin-top: -3px;
  cursor: w-resize;
}
.cropper-point.point-s {
  bottom: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: s-resize;
}
.cropper-point.point-ne {
  top: -3px;
  right: -3px;
  cursor: ne-resize;
}
.cropper-point.point-nw {
  top: -3px;
  left: -3px;
  cursor: nw-resize;
}
.cropper-point.point-sw {
  bottom: -3px;
  left: -3px;
  cursor: sw-resize;
}
.cropper-point.point-se {
  right: -3px;
  bottom: -3px;
  width: 20px;
  height: 20px;
  cursor: se-resize;
  opacity: 1;
}
.cropper-point.point-se:before {
  position: absolute;
  right: -50%;
  bottom: -50%;
  display: block;
  width: 200%;
  height: 200%;
  content: ' ';
  opacity: 0;
  background-color: #39f;
}
@media (min-width: 768px) {
  .cropper-point.point-se {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 992px) {
  .cropper-point.point-se {
    width: 10px;
    height: 10px;
  }
}
@media (min-width: 1200px) {
  .cropper-point.point-se {
    width: 5px;
    height: 5px;
    opacity: .75;
  }
}
.cropper-invisible {
  opacity: 0;
}
.cropper-bg {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}
.cropper-hide {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
}
.cropper-hidden {
  display: none !important;
}
.cropper-move {
  cursor: move;
}
.cropper-crop {
  cursor: crosshair;
}
.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}
/**
 * Swiper 3.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: February 7, 2016
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}
/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/**	INIT */
@font-face {
  font-family: 'icomoon';
  src: url('icomoon/fonts/icomoon.eot?bed1l5');
  src: url('icomoon/fonts/icomoon.eot?bed1l5#iefix') format('embedded-opentype'), url('icomoon/fonts/icomoon.ttf?bed1l5') format('truetype'), url('icomoon/fonts/icomoon.woff?bed1l5') format('woff'), url('icomoon/fonts/icomoon.svg?bed1l5#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-chevron-left-2:before {
  content: "\e90c";
}
.icon-chevron-right-2:before {
  content: "\e90d";
}
.icon-share:before {
  content: "\e90e";
}
.icon-star:before {
  content: "\e90f";
}
.icon-plus:before {
  content: "\e909";
}
.icon-minus:before {
  content: "\e90a";
}
.icon-rotate-2:before {
  content: "\e90b";
}
.icon-add:before {
  content: "\e904";
}
.icon-photo:before {
  content: "\e905";
}
.icon-resize:before {
  content: "\e906";
}
.icon-rotate:before {
  content: "\e907";
}
.icon-tick:before {
  content: "\e908";
}
.icon-chevron-left:before {
  content: "\e900";
}
.icon-chevron-right:before {
  content: "\e901";
}
.icon-close:before {
  content: "\e902";
}
.icon-facebook:before {
  content: "\e903";
}
/** VARS */
.fl {
  float: left !important;
}
.fr {
  float: right !important;
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
  border: 0;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}
.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: '';
  display: block;
}
.clearfix:after {
  content: '';
  display: table;
  clear: both;
}
.cx {
  zoom: 1;
}
.cx:before {
  content: '';
  display: block;
}
.cx:after {
  content: '';
  display: table;
  clear: both;
}
.no-shadow {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
/* Fade on display: none/block */
.fade-in {
  display: block;
}
.fade-out {
  display: none;
}
.sto {
  width: 100%;
}
.scrollbar::-webkit-scrollbar {
  width: 7px;
  height: 10px;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #444;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #000;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: #e3e5e4;
}
@font-face {
  font-family: 'bebas';
  src: url('../fonts/bebasneue-bold-webfont.eot');
  src: url('../fonts/bebasneue-bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/bebasneue-bold-webfont.woff2') format('woff2'), url('../fonts/bebasneue-bold-webfont.woff') format('woff'), url('../fonts/bebasneue-bold-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'kalambold';
  src: url('../fonts/kalam-bold-webfont.eot');
  src: url('../fonts/kalam-bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/kalam-bold-webfont.woff2') format('woff2'), url('../fonts/kalam-bold-webfont.woff') format('woff'), url('../fonts/kalam-bold-webfont.ttf') format('truetype'), url('../fonts/kalam-bold-webfont.svg#kalambold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'kalamlight';
  src: url('../fonts/kalam-light-webfont.eot');
  src: url('../fonts/kalam-light-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/kalam-light-webfont.woff2') format('woff2'), url('../fonts/kalam-light-webfont.woff') format('woff'), url('../fonts/kalam-light-webfont.ttf') format('truetype'), url('../fonts/kalam-light-webfont.svg#kalamlight') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'kalamregular';
  src: url('../fonts/kalam-regular-webfont.eot');
  src: url('../fonts/kalam-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/kalam-regular-webfont.woff2') format('woff2'), url('../fonts/kalam-regular-webfont.woff') format('woff'), url('../fonts/kalam-regular-webfont.ttf') format('truetype'), url('../fonts/kalam-regular-webfont.svg#kalamregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'montserratregular';
  src: url('../fonts/Montserrat-Regular-webfont.eot');
  src: url('../fonts/Montserrat-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Regular-webfont.woff2') format('woff2'), url('../fonts/Montserrat-Regular-webfont.woff') format('woff'), url('../fonts/Montserrat-Regular-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'montserratlight';
  src: url('../fonts/Montserrat-Light-webfont.eot');
  src: url('../fonts/Montserrat-Light-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Light-webfont.woff2') format('woff2'), url('../fonts/Montserrat-Light-webfont.woff') format('woff'), url('../fonts/Montserrat-Light-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'montserratultra_light';
  src: url('../fonts/montserrat-ultralight-webfont.eot');
  src: url('../fonts/montserrat-ultralight-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat-ultralight-webfont.woff2') format('woff2'), url('../fonts/montserrat-ultralight-webfont.woff') format('woff'), url('../fonts/montserrat-ultralight-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova-Bold";
  src: url("../fonts/2FDE66_4_0.eot");
  src: url("../fonts/2FDE66_4_0.eot?#iefix") format("embedded-opentype"), url("../fonts/2FDE66_4_0.woff2") format("woff2"), url("../fonts/2FDE66_4_0.woff") format("woff"), url("../fonts/2FDE66_4_0.ttf") format('truetype');
}
@font-face {
  font-family: "ProximaNovaA-Bold";
  src: url("../fonts/2FDE66_A_0.eot");
  src: url("../fonts/2FDE66_A_0.eot?#iefix") format("embedded-opentype"), url("../fonts/2FDE66_A_0.woff2") format("woff2"), url("../fonts/2FDE66_A_0.woff") format("woff"), url("../fonts/2FDE66_A_0.ttf") format('truetype');
}
@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/2FDE66_7_0.eot");
  src: url("../fonts/2FDE66_7_0.eot?#iefix") format("embedded-opentype"), url("../fonts/2FDE66_7_0.woff2") format("woff2"), url("../fonts/2FDE66_7_0.woff") format("woff"), url("../fonts/2FDE66_7_0.ttf") format('truetype');
}
@font-face {
  font-family: "ProximaNovaSemi";
  src: url("../fonts/2FDE66_7_0.eot");
  src: url("../fonts/2FDE66_7_0.eot?#iefix") format("embedded-opentype"), url("../fonts/2FDE66_7_0.woff2") format("woff2"), url("../fonts/2FDE66_7_0.woff") format("woff"), url("../fonts/2FDE66_7_0.ttf") format('truetype');
}
@font-face {
  font-family: 'montserratbold';
  src: url('../fonts/montserrat-bold-webfont.eot');
  src: url('../fonts/montserrat-bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat-bold-webfont.woff2') format('woff2'), url('../fonts/montserrat-bold-webfont.woff') format('woff'), url('../fonts/montserrat-bold-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ainslie';
  src: url('../fonts/insigne_-_ainslie-norreg-webfont.eot');
  src: url('../fonts/insigne_-_ainslie-norreg-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/insigne_-_ainslie-norreg-webfont.woff2') format('woff2'), url('../fonts/insigne_-_ainslie-norreg-webfont.woff') format('woff'), url('../fonts/insigne_-_ainslie-norreg-webfont.ttf') format('truetype'), url('../fonts/insigne_-_ainslie-norreg-webfont.svg#ainslie_norm_regularnormRg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'finlek';
  src: url('../fonts/finlek/finlek.woff2') format('woff2'), url('../fonts/finlek/finlek.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gordita";
  src: url('../fonts/gordita/GorditaBlack.ttf') format('truetype'), url('../fonts/gordita/GorditaBlack.woff') format('woff'), url('../fonts/gordita/GorditaBlack.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "gordita";
  src: url('../fonts/gordita/GorditaBold.ttf') format('truetype'), url('../fonts/gordita/GorditaBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "gordita";
  src: url('../fonts/gordita/GorditaMedium.ttf') format('truetype'), url('../fonts/gordita/GorditaMedium.woff') format('woff'), url('../fonts/gordita/GorditaMedium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "gordita";
  src: url('../fonts/gordita/GorditaRegular.ttf') format('truetype'), url('../fonts/gordita/GorditaRegular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "gordita";
  src: url('../fonts/gordita/GorditaLight.ttf') format('truetype'), url('../fonts/gordita/GorditaLight.woff') format('woff'), url('../fonts/gordita/GorditaLight.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
.ainslie {
  font-family: ainslie, arial, sans-serif;
}
.bebas {
  font-family: bebas, arial, sans-serif;
}
.proxima {
  font-family: ProximaNova, arial, sans-serif;
}
.proxima-semi {
  font-family: ProximaNovaSemi, arial, sans-serif;
}
.proxima-bold {
  font-family: ProximaNova-Bold, arial, sans-serif;
}
.proxima-bold-a {
  font-family: ProximaNovaA-Bold, arial, sans-serif;
}
.montserrat-regular {
  font-family: montserratregular, arial, sans-serif;
}
.montserrat-ultra-light {
  font-family: montserratultra_light, arial, sans-serif;
}
.montserrat-bold {
  font-family: montserratbold, arial, sans-serif;
}
.montserrat-light {
  font-family: montserratlight, arial, sans-serif;
}
.kalam-light {
  font-family: kalamlight, arial, sans-serif;
}
.kalam-regular {
  font-family: kalamregular, arial, sans-serif;
}
.kalam-bold {
  font-family: kalambold, arial, sans-serif;
}
.finlek {
  font-family: 'finlek';
}
h1 {
  font-size: 50px;
  color: #000;
  text-transform: uppercase;
  font-weight: normal;
  font-family: bebas, arial, sans-serif;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -o-transform: translate(0px);
}
h3 {
  font-size: 50px;
  color: #000;
  text-transform: uppercase;
  font-weight: normal;
  font-family: bebas, arial, sans-serif;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -o-transform: translate(0px);
}
h4 {
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  font-weight: normal;
  font-family: montserratregular, arial, sans-serif;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -o-transform: translate(0px);
}
.btns {
  display: block;
  width: 100%;
  height: 45px;
  background-color: #f8541f;
  border: 0px;
  font-size: 16px;
  color: #FFF;
  letter-spacing: 8px;
  padding-top: 15px;
  font-family: bebas, arial, sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.btns:hover {
  background-color: #000;
}
a {
  color: #f8541f;
}
input[type=text],
input[type=email],
input[type=tel],
input[type=number] {
  margin: 5px 0;
  background-color: #FFF;
  border: 1px solid #bdbdbd;
  width: 100%;
  height: 45px;
  font-size: 12px;
  color: #000;
  padding-left: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-appearance: none;
  font-family: montserratlight, arial, sans-serif;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
textarea,
input[type=submit] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
select {
  margin: 0, auto;
  display: inline-block;
  background-color: #FFF;
  border: 1px solid #bdbdbd;
  width: 345px;
  height: 45px;
  font-size: 12px;
  color: #000;
  padding-left: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-appearance: none;
  background-image: url(../img/selectArrow.png);
  background-position: 95% 50%;
  background-size: 8px auto;
  background-repeat: no-repeat;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-family: montserratlight, arial, sans-serif;
}
input.ng-invalid-required,
textarea.ng-invalid-required {
  box-shadow: none;
}
input.ng-invalid.ng-dirty,
textarea.ng-invalid,
input.ng-invalid.ng-touched {
  border: 1px solid rgba(255, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(255, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 3px 0px rgba(255, 0, 0, 0.5);
  box-shadow: 0px 0px 3px 0px rgba(255, 0, 0, 0.5);
}
input.ng-valid {
  border: 1px solid rgba(27, 204, 102, 0.5);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(82, 140, 25, 0.5);
  -moz-box-shadow: 0px 0px 3px 0px rgba(82, 140, 25, 0.5);
  box-shadow: 0px 0px 3px 0px rgba(82, 140, 25, 0.5);
}
/** STYLES */
/** LAYOUT SECTIONS */
.wrap-full {
  max-width: 100%;
  zoom: 1;
}
.wrap-full:before {
  content: '';
  display: block;
}
.wrap-full:after {
  content: '';
  display: table;
  clear: both;
}
.wrap-narrow {
  max-width: 1600px;
  margin: 0 auto;
  zoom: 1;
}
.wrap-narrow:before {
  content: '';
  display: block;
}
.wrap-narrow:after {
  content: '';
  display: table;
  clear: both;
}
.wrap-narrow.gutter {
  max-width: 1630px;
}
#start-bg {
  background-color: #2d2d2d;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-image: url("../img/bg-small_new2.jpg");
  background-position: 63% 0;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}
@media (min-width: 609px) {
  #start-bg {
    background-position: 50% 50%;
    background-image: url("../img/bg_new2.jpg");
  }
}
@media (max-width: 767px) {
  #start-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.38);
  }
}
#start-lang {
  font-family: "gordita";
}
@media (min-width: 767px) {
  #start-lang {
    overflow: hidden;
    max-height: 100vh;
  }
}
#start-lang #start-logo {
  display: block;
  position: relative;
  margin-left: 26vw;
  z-index: 999;
  width: 142px;
}
@media (min-width: 601px) {
  #start-lang #start-logo {
    width: 130px;
  }
}
@media (min-width: 768px) {
  #start-lang #start-logo {
    margin-left: 7.6vw;
  }
}
@media (min-width: 1600px) {
  #start-lang #start-logo {
    margin-left: 16.6vw;
  }
}
#start-lang .row {
  margin-top: 90px;
  margin-left: 40px;
  margin-bottom: 82px;
}
@media (min-width: 400px) {
  #start-lang .row {
    margin-top: 30.5vw;
    margin-left: 25.3vw;
  }
}
@media (min-width: 768px) {
  #start-lang .row {
    margin-top: 15vh;
    margin-left: 0;
  }
}
#start-lang h2 {
  position: relative;
  margin-bottom: 33px;
  font-size: 24px;
  padding-right: 30px;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 900;
  text-transform: uppercase;
}
@media (min-width: 400px) {
  #start-lang h2 {
    margin-left: 3vw;
  }
}
@media (min-width: 768px) {
  #start-lang h2 {
    font-size: 31px;
    margin-bottom: 38px;
    margin-left: 7.6vw;
  }
}
@media (min-width: 1600px) {
  #start-lang h2 {
    margin-left: 16.6vw;
  }
}
#start-lang h2 .orange {
  color: #f15a22;
}
#start-lang .start__langs {
  padding-right: 30px;
}
@media (min-width: 768px) {
  #start-lang .start__langs {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 3vw 7.6vw 1.4vw 6.4vw;
    background-color: rgba(0, 0, 0, 0.38);
  }
}
@media (min-width: 1025px) {
  #start-lang .start__langs {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1600px) {
  #start-lang .start__langs {
    padding: 3vw 16.6vw 1.4vw 15.6vw;
  }
}
@media (min-width: 768px) {
  #start-lang .start__container {
    width: 50%;
  }
}
@media (min-width: 1025px) {
  #start-lang .start__container {
    margin-right: 2vw;
    width: auto;
  }
}
#start-lang .start__container:last-of-type {
  margin-right: 0;
}
#start-lang .start__container:first-of-type .start__lang:nth-of-type(1) .start__link::before {
  background-position-y: 100%;
}
#start-lang .start__container:first-of-type .start__lang:nth-of-type(2) .start__link::before {
  background-position-y: 0;
}
#start-lang .start__container:first-of-type .start__lang:nth-of-type(3) .start__link::before {
  background-position-y: -11px;
}
#start-lang .start__container:first-of-type .start__lang:nth-of-type(4) .start__link::before {
  background-position-y: -22px;
}
#start-lang .start__container:first-of-type .start__lang:nth-of-type(5) .start__link::before {
  background-position-y: -33px;
}
#start-lang .start__container:nth-of-type(2) .start__lang:nth-of-type(1) .start__link::before {
  background-position-y: -44px;
}
#start-lang .start__container:nth-of-type(2) .start__lang:nth-of-type(2) .start__link::before {
  background-position-y: -55px;
}
#start-lang .start__container:nth-of-type(2) .start__lang:nth-of-type(3) .start__link::before {
  background-position-y: -66px;
}
#start-lang .start__container:nth-of-type(2) .start__lang:nth-of-type(4) .start__link::before {
  background-position-y: -77px;
}
#start-lang .start__container:nth-of-type(2) .start__lang:nth-of-type(5) .start__link::before {
  background-position-y: -88px;
}
#start-lang .start__container:nth-of-type(3) .start__lang:nth-of-type(1) .start__link::before {
  background-position-y: -99px;
}
#start-lang .start__container:nth-of-type(3) .start__lang:nth-of-type(2) .start__link::before {
  background-position-y: -110px;
}
#start-lang .start__container:nth-of-type(3) .start__lang:nth-of-type(3) .start__link::before {
  background-position-y: -121px;
}
#start-lang .start__container:nth-of-type(3) .start__lang:nth-of-type(4) .start__link::before {
  background-position-y: -132px;
}
#start-lang .start__container:nth-of-type(3) .start__lang:nth-of-type(5) .start__link::before {
  background-position-y: -144px;
}
#start-lang .start__container:nth-of-type(4) .start__lang:nth-of-type(1) .start__link::before {
  background-position-y: -154px;
}
#start-lang .start__container:nth-of-type(4) .start__lang:nth-of-type(2) .start__link::before {
  background-position-y: -165px;
}
#start-lang .start__container:nth-of-type(4) .start__lang:nth-of-type(3) .start__link::before {
  background-position-y: -176px;
}
#start-lang .start__lang {
  padding-bottom: 21px;
}
@media (min-width: 768px) {
  #start-lang .start__lang {
    padding-bottom: 26px;
  }
}
#start-lang .start__link {
  position: relative;
  display: block;
  padding-left: 20px;
  font-size: 12px;
  color: #FFF;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  -o-transform: translate(0px);
}
#start-lang .start__link:hover {
  color: #f15a22;
}
#start-lang .start__link::before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  top: 3px;
  left: 0;
  width: 9px;
  height: 9px;
  background-image: url("../img/ccc-lang.png");
}
#start-lang .start__link strong {
  font-weight: 800;
}
/** BASIC */
html,
body {
  width: 100%;
  min-height: 100%;
}
body {
  font-size: 12px;
  overflow-y: auto;
  overflow-x: hidden;
}
.hide {
  display: none !important;
}
.pt25 {
  padding-top: 25px;
  text-transform: uppercase;
  font-family: bebas, arial, sans-serif;
}
/**	HEADER */
#header {
  position: fixed;
  width: 100%;
  height: 117px;
  background-color: #fff;
  z-index: 101;
  /*.box-shadow(1px 1px 0px @grey);*/
  /** LOGO */
  /** BURGER MENU */
  /** NAVIGATION - przeniesione do common-rwd.less */
}
#header #logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 117px;
  background-color: #000;
  z-index: 10;
}
#header #logo h1 {
  text-indent: -99999%;
  font-size: 0;
}
#header #logo img {
  position: static;
  display: block;
  width: auto;
  height: 117px;
  margin: 0;
}
#header #btn-burger-menu {
  position: static;
  float: right;
  display: block;
  margin: 0 0 0 auto;
  width: 80px;
  height: 117px;
  background: transparent url(../img/ico-burger.png) no-repeat 50% 50%;
  background-size: 26px auto;
  z-index: 10;
}
#header #nav-right {
  position: absolute;
  top: 0;
  right: 0;
  zoom: 1;
}
#header #nav-right:before {
  content: '';
  display: block;
}
#header #nav-right:after {
  content: '';
  display: table;
  clear: both;
}
#header #nav-right nav {
  float: left;
}
#header #nav-right #nav-second > ul,
#header #nav-right #nav-second-items > ul {
  zoom: 1;
}
#header #nav-right #nav-second > ul:before,
#header #nav-right #nav-second-items > ul:before {
  content: '';
  display: block;
}
#header #nav-right #nav-second > ul:after,
#header #nav-right #nav-second-items > ul:after {
  content: '';
  display: table;
  clear: both;
}
#header #nav-right #nav-second > ul > li,
#header #nav-right #nav-second-items > ul > li {
  display: block;
  float: left;
}
#header #nav-right #nav-second > ul > li > a,
#header #nav-right #nav-second-items > ul > li > a {
  display: block;
  height: 117px;
  text-transform: uppercase;
  color: #000;
  font-size: 18px;
  text-decoration: none;
}
#header #nav-right #nav-second > ul > li > a > span,
#header #nav-right #nav-second-items > ul > li > a > span {
  position: relative;
  display: block;
  padding: 31px 35px 0;
  font-family: bebas, arial, sans-serif;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  -o-transform: translate(0px);
}
#header #nav-right #nav-second > ul > li > a > span.active,
#header #nav-right #nav-second-items > ul > li > a > span.active {
  color: #f8541f !important;
}
#header #nav-right #nav-second > ul > li > a:hover > span,
#header #nav-right #nav-second-items > ul > li > a:hover > span {
  color: #f8541f !important;
}
#header #nav-right #nav-second > ul > li.lang,
#header #nav-right #nav-second-items > ul > li.lang {
  padding-left: 8px;
  padding-right: 4px;
}
#header #nav-right #nav-second > ul > li.lang > a > span,
#header #nav-right #nav-second-items > ul > li.lang > a > span {
  padding-right: 20px;
}
#header #nav-right #nav-second > ul > li.lang > a > span::after,
#header #nav-right #nav-second-items > ul > li.lang > a > span::after {
  content: '';
  position: absolute;
  z-index: 100;
  right: 10px;
  bottom: 8px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000;
}
#header #nav-right #nav-second > ul > li.lang > ul,
#header #nav-right #nav-second-items > ul > li.lang > ul {
  display: none;
  position: absolute;
  top: 100%;
  right: -30px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  width: 0;
  overflow: hidden;
  background-color: #000;
  padding: 10px 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
@media only screen and (min-width: 765px) {
  #header #nav-right #nav-second > ul > li.lang > ul,
  #header #nav-right #nav-second-items > ul > li.lang > ul {
    display: block;
  }
}
#header #nav-right #nav-second > ul > li.lang > ul li,
#header #nav-right #nav-second-items > ul > li.lang > ul li {
  display: block;
}
#header #nav-right #nav-second > ul > li.lang > ul li a,
#header #nav-right #nav-second-items > ul > li.lang > ul li a {
  display: block;
  padding: 5px 10px;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFF;
  font-family: montserratregular, arial, sans-serif;
  -webkit-transition: background-color 0.3s ease 0s;
  -moz-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  -ms-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
  -o-transform: translate(0px);
}
#header #nav-right #nav-second > ul > li.lang > ul li a:hover,
#header #nav-right #nav-second-items > ul > li.lang > ul li a:hover {
  background-color: #f8541f;
}
#header #nav-right #nav-second > ul > li.lang.active > ul,
#header #nav-right #nav-second-items > ul > li.lang.active > ul {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  display: block;
  width: auto;
  padding: 10px;
}
#header #nav-right #nav-second > ul > li.gray > a > span,
#header #nav-right #nav-second-items > ul > li.gray > a > span {
  color: #858585;
}
#header #nav-right #nav-second > ul > li.orang > a > span,
#header #nav-right #nav-second-items > ul > li.orang > a > span {
  color: #f5628;
}
#header #nav-right #nav-social {
  padding-right: 10px;
}
#header #nav-right #nav-social > ul > li {
  display: block;
  float: left;
}
#header #nav-right #nav-social > ul > li a {
  width: 30px;
  height: 117px;
  display: block;
  text-indent: -99999px;
  background-size: auto 18px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#header #nav-right #nav-social > ul > li.fb a {
  background-image: url(../img/facebook.svg);
  background-size: 55%;
}
#header #nav-right #nav-social > ul > li.inst a {
  background-image: url(../img/ico-instagram.png);
  background-size: 65%;
}
#header #nav-right #nav-social > ul > li.yt a {
  background-image: url(../img/youtube.svg);
  background-size: 65%;
}
#header #nav-right #nav-social > ul > li.vk a {
  background-image: url(../img/ico-vk.png);
}
#header #nav-right #nav-social > ul > li.in a {
  background-image: url(../img/ico-in.gif);
  background-size: 65%;
}
#header #state-change-container {
  position: absolute;
  top: 117px;
  width: 100%;
  height: 5px;
  overflow: hidden;
}
#header #state-change-container #state-change-bar.animation-ready {
  width: 0%;
  height: 100%;
  background-color: #f8541f;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#header #state-change-container #state-change-bar.state-change-start {
  width: 70%;
  -webkit-transition: width 3s ease-in 0s;
  -moz-transition: width 3s ease-in 0s;
  -o-transition: width 3s ease-in 0s;
  -ms-transition: width 3s ease-in 0s;
  transition: width 3s ease-in 0s;
  -o-transform: translate(0px);
}
#header #state-change-container #state-change-bar.state-change-start-speed-up {
  width: 100%;
  -webkit-transition: width 0.1s ease-in 0s;
  -moz-transition: width 0.1s ease-in 0s;
  -o-transition: width 0.1s ease-in 0s;
  -ms-transition: width 0.1s ease-in 0s;
  transition: width 0.1s ease-in 0s;
  -o-transform: translate(0px);
}
#header #state-change-container #state-change-bar.state-change-finish {
  width: 100%;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  -ms-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
  -o-transform: translate(0px);
}
/** CONTENT */
#content {
  width: 100%;
  top: 117px;
  padding-top: 117px;
}
#top_footer {
  background: #FFF;
}
#top_footer .c {
  border-top: 1px solid #e5e5e5;
  padding: 90px 0 0 0;
  overflow: hidden;
  width: 100%;
}
#top_footer .col {
  width: 50%;
  padding: 10px;
  float: left;
  text-align: justify;
}
#top_footer .col p {
  font-family: montserratultra_light, arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #bbbbbb;
  font-weight: 200;
}
#top_footer .col strong {
  font-family: montserratlight, arial, sans-serif;
}
/** FOOTER */
#footer {
  text-align: center;
}
#footer .footer-c {
  padding: 0 20px 90px 20px;
  margin: 0 auto;
  overflow: hidden;
}
#footer .footer-c .info-shoe {
  font-weight: 600;
  margin-top: 24px;
}
#footer > .bg--gray {
  background: #fafafa;
  padding-top: 75px;
  border-top: 1px solid #efefef;
}
#footer > .bg--gray > .footer-c {
  padding-bottom: 0;
}
#footer .foot-menu {
  zoom: 1;
  max-width: 1430px;
  margin: 0 auto;
}
#footer .foot-menu:before {
  content: '';
  display: block;
}
#footer .foot-menu:after {
  content: '';
  display: table;
  clear: both;
}
#footer .foot-menu .col {
  width: 15%;
  float: left;
  text-align: left;
  padding-right: 5px;
}
#footer .foot-menu .col.col--cats {
  width: 40%;
  zoom: 1;
}
#footer .foot-menu .col.col--cats:before {
  content: '';
  display: block;
}
#footer .foot-menu .col.col--cats:after {
  content: '';
  display: table;
  clear: both;
}
#footer .foot-menu .col.col--cats ul {
  float: left;
  width: 33.333%;
}
#footer .foot-menu .col h3 {
  font-size: 31px;
  margin-bottom: 30px;
}
#footer .foot-menu .col h3 a {
  color: #000;
}
#footer .foot-menu .col ul {
  margin-bottom: 0;
  width: 100%;
}
#footer .foot-menu .col ul li {
  font-size: 12px;
  font-family: montserratultra_light, arial, sans-serif;
  margin-bottom: 10px;
  color: #7c7c7c;
}
#footer .foot-menu .col ul li a {
  color: #7c7c7c;
  font-size: 16px;
  word-break: break-all;
}
#footer .foot-menu .col ul li a.black-friday {
  display: inline-block;
  padding-right: 10px;
  text-transform: lowercase;
}
#footer .foot-menu .col ul li a.black-friday::first-letter {
  text-transform: uppercase;
}
#footer .foot-menu .col ul li a strong {
  font-family: montserratregular, arial, sans-serif;
}
#footer .foot-menu .col ul li a:hover {
  color: #f8541f;
}
#footer .foot-menu .col ul li a.foot-menu--pd {
  padding-right: 10px;
}
#footer .foot-menu .col ul.last {
  margin-top: 30px;
}
#footer #footer-caption {
  zoom: 1;
  width: 90%;
  margin: 90px auto 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #cccccc;
  color: #333;
  font-size: 12px;
  line-height: 16px;
  text-align: left;
  font-family: montserratultra_light, arial, sans-serif;
}
#footer #footer-caption:before {
  content: '';
  display: block;
}
#footer #footer-caption:after {
  content: '';
  display: table;
  clear: both;
}
#footer #footer-caption .copy {
  float: left;
  font-size: 16px;
  line-height: 22px;
}
#footer #footer-caption #nav-social {
  float: right;
  padding-right: 10px;
}
#footer #footer-caption #nav-social > ul > li {
  display: block;
  float: left;
}
#footer #footer-caption #nav-social > ul > li a {
  width: 35px;
  height: 35px;
  margin: 0 8px;
  display: block;
  text-indent: -99999px;
  background-size: auto 18px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#footer #footer-caption #nav-social > ul > li.fb a {
  background-image: url(../img/facebook.svg);
  background-size: 55%;
}
#footer #footer-caption #nav-social > ul > li.inst a {
  background-image: url(../img/ico-instagram.png);
  background-size: 65%;
}
#footer #footer-caption #nav-social > ul > li.yt a {
  background-image: url(../img/youtube.svg);
  background-size: 65%;
}
#footer #footer-caption #nav-social > ul > li.vk a {
  background-image: url(../img/ico-vk.png);
}
#footer #footer-caption a {
  color: #333;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#footer #footer-caption a:hover {
  color: #f8541f;
}
/** COVER */
body > .cover {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body > .cover#cover {
  background-color: #000;
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
  filter: alpha(opacity=80);
}
body > .cover#cover-gallery {
  z-index: 99999;
  background-color: #000;
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  -webkit-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
  filter: alpha(opacity=40);
}
/** COOKIES */
#cookies {
  display: none;
  z-index: 999;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #000;
}
#cookies #cookies-info {
  padding: 30px 100px 30px 30px;
  color: #FFF;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: montserratregular, arial, sans-serif;
}
#cookies .close {
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  width: 58px;
  height: 100%;
  background-color: yellow;
  text-indent: -99999px;
  background: url(../img/btn-close.png);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: center center;
  -webkit-transition: all 0.2s ease-in 0s;
  -moz-transition: all 0.2s ease-in 0s;
  -o-transition: all 0.2s ease-in 0s;
  -ms-transition: all 0.2s ease-in 0s;
  transition: all 0.2s ease-in 0s;
  -o-transform: translate(0px);
}
.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.cf:after {
  clear: both;
}
#polityka-section {
  padding-top: 40px;
}
#polityka-section .c {
  max-width: 1180px;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  line-height: 17px;
  color: #aaa;
  font-weight: 200;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  #polityka-section .c {
    padding: 0 5%;
  }
}
#polityka-section p {
  margin-bottom: 5px;
  text-align: justify;
}
#polityka-section h1 {
  line-height: 1;
  margin-bottom: 50px;
  text-align: center;
}
#polityka-section strong {
  font-weight: bold;
}
#polityka-section ol {
  list-style: decimal;
  margin-bottom: 20px;
}
#polityka-section ol li {
  margin-bottom: 5px;
  text-align: justify;
}
#polityka-section ol li ol {
  margin-top: 5px;
  margin-left: 15px;
}
#polityka-section h3 {
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  margin: 40px 0 20px 0;
}
#polityka-section h3 span {
  display: block;
}
#wrap-home {
  zoom: 1;
}
#wrap-home p,
#wrap-home span,
#wrap-home time {
  font-size: 14px;
  color: #939393;
  line-height: 20px;
  font-family: montserratlight, arial, sans-serif;
}
#wrap-home .owl-pagination {
  text-align: center;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#wrap-home .owl-pagination .owl-page {
  padding: 0 10px 4px;
  display: inline-block;
}
#wrap-home .owl-pagination .owl-page:hover span {
  border-color: #ff3300;
}
#wrap-home .owl-pagination .owl-page span {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 1px solid #fafafa;
  transition: border-color 0.5s;
}
#wrap-home .owl-pagination .owl-page.active {
  padding: 0 10px;
}
#wrap-home .owl-pagination .owl-page.active span {
  width: 24px;
  height: 24px;
  background: #ff3300;
  border: 0px;
}
#wrap-home:before {
  content: '';
  display: block;
}
#wrap-home:after {
  content: '';
  display: table;
  clear: both;
}
#home-slider {
  width: 100%;
  position: relative;
}
#home-slider img {
  display: block;
  width: 100%;
}
#home-slider .owl-buttons .owl-next,
#home-slider .owl-buttons .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#home-slider .owl-buttons .owl-prev {
  left: 30px;
  width: 60px;
  height: 60px;
  float: left;
  margin-right: 10px;
  background: url(../img/home/owl/owl-arrow-prev.png);
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -99999px;
  background-color: #FFF;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#home-slider .owl-buttons .owl-prev:hover {
  background: url(../img/home/owl/owl-arrow-prev-hover.png);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
}
#home-slider .owl-buttons .owl-next {
  right: 30px;
  width: 60px;
  height: 60px;
  float: left;
  background: url(../img/home/owl/owl-arrow-next.png);
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -99999px;
  background-color: #FFF;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#home-slider .owl-buttons .owl-next:hover {
  background: url(../img/home/owl/owl-arrow-next-hover.png);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
}
.tile--helloccc {
  border: 1px solid #ccc;
}
.tile--helloccc:hover {
  background-size: 106% !important;
}
.box-cover {
  display: block;
  width: 100%;
  height: 100%;
  will-change: opacity;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
img.banner {
  width: 100%;
  display: block;
}
a.preload-background-image {
  text-align: center;
  background-position: center center;
  background-size: 100%;
}
a.preload-background-image-loaded {
  text-align: center;
  background-position: center center;
  background-size: 100%;
}
#grid-top {
  padding: 10px;
  margin-top: 5px;
  zoom: 1;
}
#grid-top:before {
  content: '';
  display: block;
}
#grid-top:after {
  content: '';
  display: table;
  clear: both;
}
#grid-top #ccc {
  padding: 0;
}
#grid-top > div {
  float: left;
  width: 33.333%;
  padding: 10px;
}
#grid-top > div div.ratio-wrap {
  position: relative;
  padding-bottom: 100%;
  height: 0;
}
#grid-top > div div.ratio-wrap div.ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#grid-top > div div.ratio-wrap .preload-background-image {
  background: url("../img/loader.svg") 50% 50% #eee no-repeat;
  background-size: auto!important;
}
#grid-top > div .tile {
  padding: 10px;
}
#grid-top > div .tile .ratio-wrap {
  padding-bottom: calc(50% - 10px);
}
#grid-top > div .box-half {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  margin-bottom: 10px;
}
#grid-top > div .box-half:last-child {
  margin-bottom: 0;
  bottom: 0;
  left: 0;
  top: auto;
  margin-top: 10px;
}
#grid-top > div .box-half a:hover .box-cover {
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  -webkit-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
  filter: alpha(opacity=40);
}
#grid-top > div a,
#grid-top > div div.tile-nolink {
  display: block;
  width: 100%;
  height: 100%;
}
#grid-top > div a strong,
#grid-top > div div.tile-nolink strong {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 10;
  letter-spacing: 7px;
}
#grid-top > div a .box-inner,
#grid-top > div div.tile-nolink .box-inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  transform: translate(0, -50%) translateZ(0) scale(1, 1);
}
#grid-top > div a .box-inner span,
#grid-top > div div.tile-nolink .box-inner span {
  display: block;
  position: static;
  text-align: center;
  line-height: 1;
}
#grid-top > div a .box-inner span,
#grid-top > div div.tile-nolink .box-inner span {
  font-family: montserratlight, arial, sans-serif;
  font-size: 20px;
  letter-spacing: 6px;
  color: #FFF;
  text-transform: uppercase;
}
#grid-top > div div.tile-nolink .box-inner img {
  display: block;
  max-width: 80%;
  margin: 0 auto;
}
#grid-top .tile-box #new .ratio-wrap .ratio a .box-cover {
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
#grid-top .tile-box #new .ratio-wrap .ratio a .box-inner strong,
#grid-top .tile-box #new .ratio-wrap .ratio a .box-inner span {
  color: #000;
}
#grid-top .tile-box #new .ratio-wrap .ratio a:hover .box-cover {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  filter: alpha(opacity=70);
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0);
}
#grid-top .tile-box a.preload-background-image {
  background-size: 100.01%;
}
#grid-top .tile-box .preload-background-image-loaded {
  background-size: 101%;
  -webkit-background-size: 100.5%;
  -webkit-transition: background-size 0.2s ease-in-out 0s;
  -moz-transition: background-size 0.2s ease-in-out 0s;
  -o-transition: background-size 0.2s ease-in-out 0s;
  -ms-transition: background-size 0.2s ease-in-out 0s;
  transition: background-size 0.2s ease-in-out 0s;
  -o-transform: translate(0px);
}
#grid-top .tile-box .preload-background-image-loaded .box-inner {
  opacity: 1;
}
#grid-top .tile-box .preload-background-image-loaded:hover {
  background-size: 115%;
  -webkit-background-size: 120%;
}
#grid-top .tile-box .preload-background-image-loaded:hover .box-cover {
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  -webkit-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
  filter: alpha(opacity=40);
}
#grid-top .tile-box strong {
  font-size: 70px;
  line-height: 86px;
  position: static;
  color: #FFF;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 7px;
  font-family: bebas, arial, sans-serif;
}
#grid-top #ccc .tile .ratio-wrap .ratio a .box-inner strong {
  font-size: 50px;
  letter-spacing: 12px;
  line-height: 56px;
  padding: 0 10px;
}
#grid-top #ccc .tile .ratio-wrap .ratio a .box-inner span {
  font-size: 15px;
  padding-top: 20px;
}
@media (max-width: 620px) {
  .bg #grid-top #sale_tile .ratio-wrap .ratio a .box-inner img {
    width: 50%;
    margin: 10px auto;
  }
  .bg #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong.bg--font {
    font-size: 16px;
    line-height: 5px;
  }
  .bg #grid-top #sale_tile .ratio-wrap .ratio a .box-inner .text {
    font-size: 10px;
  }
}
@media (max-width: 1700px) {
  .ua #grid-top #sale_tile .ratio-wrap .ratio a .box-inner .text {
    font-size: 25px;
  }
}
@media (max-width: 850px) {
  .ua #grid-top #sale_tile .ratio-wrap .ratio a .box-inner .text {
    font-size: 20px;
  }
}
@media (max-width: 680px) {
  .ua #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong.ua--font {
    font-size: 20px;
  }
  .ua #grid-top #sale_tile .ratio-wrap .ratio a .box-inner img {
    max-width: 60%;
  }
  .ua #grid-top #sale_tile .ratio-wrap .ratio a .box-inner .text {
    font-size: 12px;
  }
}
#grid-top #sale_tile .ratio-wrap .ratio a {
  background: #ed1a3b;
}
#grid-top #sale_tile .ratio-wrap .ratio a .box-inner {
  opacity: 1;
  text-align: center;
  padding: 0 15px;
}
#grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong {
  line-height: 47px;
  display: block;
  color: #FFF;
  font-family: ProximaNova-Bold, arial, sans-serif;
  font-size: 37px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: none;
  padding: 0;
}
#grid-top #sale_tile .ratio-wrap .ratio a .box-inner img {
  width: auto;
  max-height: 70%;
  margin: 40px auto;
  display: block;
}
#grid-top #sale_tile .ratio-wrap .ratio a .box-inner .text {
  margin-top: 15px;
  padding: 12px 24px;
  border: 1px solid #FFF;
  font-family: ainslie, arial, sans-serif;
  font-size: 31px;
  display: inline-block;
  text-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  letter-spacing: 2px;
}
#grid-top #sale_tile .ratio-wrap .ratio a:hover .text {
  background: #FFF;
  color: #ed1a3b;
}
body.lt #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong {
  font-size: 36px;
  letter-spacing: 1px;
}
@media (max-width: 990px) {
  body.lt #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  body.lt #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong {
    font-size: 18px;
  }
}
@media (max-width: 1700px) {
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong {
    font-size: 37px;
    line-height: 1;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong.bg--font {
    font-size: 35px;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner img {
    max-height: 100px;
    margin: 30px auto;
  }
}
@media (max-width: 1500px) {
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong.ru--font,
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong.ua--font {
    font-size: 28px;
  }
}
@media (max-width: 1366px) {
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong {
    font-size: 32px;
    line-height: 1;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong.bg--font {
    font-size: 28px;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner img {
    max-width: 200px;
  }
}
@media (max-width: 1180px) {
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner img {
    max-width: 270px;
  }
}
@media (max-width: 990px) {
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner .bg--font,
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner .ru--font {
    font-size: 28px;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner img {
    max-width: 70%;
  }
}
@media (max-width: 900px) {
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong {
    font-size: 25px;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong.bg--font,
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong.ru--font {
    font-size: 20px;
    line-height: 14px;
  }
}
@media (max-width: 768px) {
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner {
    padding: 10px;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong {
    font-size: 24px;
    line-height: 1;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner img {
    max-width: 70%;
    margin: 20px auto;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner .text {
    font-size: 20px;
  }
}
@media (max-width: 690px) {
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong {
    line-height: 16px;
    font-size: 18px;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner .text {
    font-size: 12px;
  }
}
@media (max-width: 580px) {
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong {
    font-size: 16px;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner .text {
    font-size: 12px;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner img {
    max-width: 60%;
    margin: 10px auto;
  }
}
@media (max-width: 480px) {
  #grid-top #sale_tile {
    width: 100%!important;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner strong {
    font-size: 18px;
  }
  #grid-top #sale_tile .ratio-wrap .ratio a .box-inner .text {
    font-size: 16px;
  }
}
#grid-top #sale_tile.tile-box--sale-new h3,
#grid-top #sale_tile.tile-box--sale-new h4 {
  line-height: 1;
  color: #fff;
}
#grid-top #sale_tile.tile-box--sale-new h3 {
  margin-bottom: 20px;
  font-family: "ProximaNova-Bold";
  font-weight: 900;
  font-size: 8vw;
  line-height: 9.5vw;
}
@media (min-width: 481px) {
  #grid-top #sale_tile.tile-box--sale-new h3 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.1;
  }
}
@media (min-width: 701px) {
  #grid-top #sale_tile.tile-box--sale-new h3 {
    margin-bottom: 20px;
    font-size: 3.4vw;
  }
}
@media (min-width: 991px) {
  #grid-top #sale_tile.tile-box--sale-new h3 {
    margin-bottom: 1.4vw;
    font-size: 3.05vw;
    line-height: 3.4vw;
    letter-spacing: 0.25vw;
  }
}
#grid-top #sale_tile.tile-box--sale-new h4 {
  margin-bottom: 30px;
  font-family: "ProximaNova";
  font-size: 4.5vw;
  letter-spacing: 0.3vw;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 481px) {
  #grid-top #sale_tile.tile-box--sale-new h4 {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
@media (min-width: 701px) {
  #grid-top #sale_tile.tile-box--sale-new h4 {
    margin-bottom: 50px;
    font-size: 2.2vw;
  }
}
@media (min-width: 991px) {
  #grid-top #sale_tile.tile-box--sale-new h4 {
    margin-bottom: 4.1vw;
    font-size: 1.55vw;
    letter-spacing: 0.1vw;
  }
}
@media (min-width: 1205px) {
  #grid-top #sale_tile.tile-box--sale-new .ratio-wrap .ratio a .box-inner--sales {
    top: auto;
    bottom: 2.1vw;
    transform: translate(0, 0);
  }
}
#grid-top #sale_tile.tile-box--sale-new .ratio-wrap .ratio a .box-inner img {
  margin: 5vw auto 3vw;
  height: 22vw;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 481px) {
  #grid-top #sale_tile.tile-box--sale-new .ratio-wrap .ratio a .box-inner img {
    margin: 3vw auto 1vw;
    height: 10.5vw;
  }
}
@media (min-width: 1201px) {
  #grid-top #sale_tile.tile-box--sale-new .ratio-wrap .ratio a .box-inner img {
    margin: 2vw auto 1vw;
    height: 8.5vw;
  }
}
#grid-top #sale_tile.tile-box--sale-new .ratio-wrap .ratio a .box-inner .text {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 701px) {
  #grid-top #sale_tile.tile-box--sale-new .ratio-wrap .ratio a .box-inner .text {
    width: 295px;
  }
}
@media (min-width: 991px) {
  #grid-top #sale_tile.tile-box--sale-new .ratio-wrap .ratio a .box-inner .text {
    padding: 1.12vw 10px;
    font-size: 1.8vw;
  }
}
#grid-top #shops {
  text-align: center;
  background-color: #FFF;
  overflow: hidden;
}
#grid-top #shops .row {
  padding-top: 30px;
}
#grid-top #shops .row:first-child {
  padding-top: 0;
}
#grid-top #shops select {
  width: 100%;
  height: 70px;
  font-size: 20px;
  padding: 0 24px;
}
#grid-top #shops select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
#grid-top #shops select option {
  outline: 0;
}
#grid-top #shops h3 {
  margin-bottom: 30px;
  font-size: 58px;
}
#grid-top #shops label {
  display: none;
}
#grid-top #shops form {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
#grid-top #shops p {
  margin-bottom: 20px;
  padding: 0 40px;
}
#grid-top #shops #submitForm {
  width: 100%;
  height: 75px;
  background-color: #87001c;
  border: 0;
  font-size: 26px;
  color: #FFF;
  letter-spacing: 12px;
  font-family: bebas, arial, sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#grid-top #shops #submitForm:hover {
  background-color: #000;
}
body.hu #grid-top #shops #submitForm {
  letter-spacing: 8px;
}
#grid-top #shops a {
  cursor: pointer;
  display: block;
  margin-top: 40px;
  font-size: 20px;
  font-family: montserratlight, arial, sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#grid-top #shops a:hover {
  color: #f8541f;
}
#grid-top #shops a img {
  left: -8px;
  top: 3px;
  position: relative;
  width: 30px;
  height: 30px;
  margin-right: 20px;
}
#trends {
  text-align: center;
  padding: 90px 0;
  zoom: 1;
}
#trends:before {
  content: '';
  display: block;
}
#trends:after {
  content: '';
  display: table;
  clear: both;
}
#trends h2 {
  font-family: bebas, arial, sans-serif;
  color: #000;
  display: inline-block;
  font-size: 56px;
  position: relative;
  padding: 0 48px;
}
#trends h2:before,
#trends h2:after {
  content: '';
  width: 90px;
  height: 1px;
  background: #cdcdcd;
  position: absolute;
}
#trends h2:before {
  left: 0;
  top: 50%;
  -webkit-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-100%, -100%);
  transform: translate(-100%, -100%);
  -webkit-transform: translate(-100%, -100%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  -o-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
}
#trends h2:after {
  right: 0;
  top: 50%;
  -webkit-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, -100%);
  transform: translate(100%, -100%);
  -webkit-transform: translate(100%, -100%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -o-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  transform: translate(100%, -100%) translateZ(0) scale(1, 1);
}
#trends > div {
  float: left;
}
#trends > div > div.ratio-wrap {
  position: relative;
  height: 0;
}
#trends > div a {
  display: block;
  text-align: center;
}
#trends #box-middle {
  width: 33.333%;
  background-image: url(../img/home/trends-box-middle-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
#trends #box-middle .ratio-wrap {
  padding-bottom: 65%;
}
#trends #box-left,
#trends #box-right {
  width: 33.333%;
}
#trends #box-left .ratio-wrap,
#trends #box-right .ratio-wrap {
  padding-bottom: 65%;
}
#trends .btn-left {
  position: absolute;
  right: 45px;
  top: 50%;
  margin-top: -22px;
  width: 220px;
  background-color: #87001c;
}
#trends .btn-left:hover {
  background-color: #000;
}
#trends .btn-right {
  position: absolute;
  left: 45px;
  top: 50%;
  margin-top: -22px;
  width: 220px;
}
#trends .btn-right:hover {
  background-color: #000;
}
#grid-middle {
  padding: 0 10px;
  zoom: 1;
  /*}*/
}
#grid-middle:before {
  content: '';
  display: block;
}
#grid-middle:after {
  content: '';
  display: table;
  clear: both;
}
#grid-middle a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  background-position: center;
  background-size: 101%;
  background-color: #eee;
}
#grid-middle a .content {
  opacity: 0;
  -webkit-transition: all 0.2s ease 0;
  -moz-transition: all 0.2s ease 0;
  -o-transition: all 0.2s ease 0;
  -ms-transition: all 0.2s ease 0;
  transition: all 0.2s ease 0;
  -o-transform: translate(0px);
  width: 100%;
  position: absolute;
}
#grid-middle a.preload-background-image-loaded .content {
  opacity: 1;
}
#grid-middle a h3 {
  color: #FFF;
  letter-spacing: 12px;
  font-size: 70px;
  z-index: 10;
}
#grid-middle a p {
  color: #FFF;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  padding: 15px 80px 0 80px;
}
#grid-middle a .box-cover {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
#grid-middle a:hover .box-cover {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  filter: alpha(opacity=70);
}
#grid-middle #left {
  width: 50%;
  float: left;
}
#grid-middle #left div.ratio-wrap {
  position: relative;
  height: 0;
}
#grid-middle #left div.ratio-wrap div.ratio {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#grid-middle div#she {
  float: left;
  width: 100%;
}
#grid-middle div#she div.ratio-wrap {
  padding-bottom: 66.66666%;
}
#grid-middle div#she a {
  background-size: cover;
}
#grid-middle div#she a .content {
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
#grid-middle div#kids {
  float: right;
  width: 66.66666%;
}
#grid-middle div#kids div.ratio-wrap {
  padding-bottom: 100%;
}
#grid-middle div#kids a {
  background-size: cover;
}
#grid-middle div#kids a .content {
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
#grid-middle div#pin {
  float: left;
  width: 33.33333%;
}
#grid-middle div#pin div.ratio-wrap {
  padding-bottom: 100%;
}
#grid-middle div#pin a {
  background-color: #87001c;
}
#grid-middle div#pin a .content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  background-image: url(../img/home/ico-instagram.png);
  background-size: 40px 40px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-middle div#pin a:hover {
  background-color: #000;
}
#grid-middle div#pin a:hover .content {
  background-size: 50px 50px;
}
#grid-middle #right {
  width: 50%;
  float: left;
}
#grid-middle #right div.ratio-wrap {
  position: relative;
  height: 0;
}
#grid-middle #right div.ratio-wrap div.ratio {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#grid-middle div#fb {
  float: left;
  width: 33.33333%;
}
#grid-middle div#fb div.ratio-wrap {
  padding-bottom: 100%;
}
#grid-middle div#fb a {
  background-color: #1c5185;
}
#grid-middle div#fb a .content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  background-image: url(../img/home/ico-facebook.png);
  background-size: 40px 40px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-middle div#fb a:hover {
  background-color: #f8541f;
}
#grid-middle div#fb a:hover .content {
  background-size: 50px 50px;
}
#grid-middle div#lasocki {
  float: left;
  width: 100%;
}
#grid-middle div#lasocki div.ratio-wrap {
  padding-bottom: 33%;
}
#grid-middle div#lasocki a {
  border: 1px solid #e3e3e3;
  overflow: hidden;
  position: relative;
}
#grid-middle div#lasocki a .content {
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
#grid-middle div#lasocki a h3 {
  position: absolute;
  top: 48%;
  margin-top: -22px;
  width: 100%;
  text-align: center;
  color: #000;
  float: left;
  font-size: 55px;
  letter-spacing: 4px;
  font-family: bebas, arial, sans-serif;
}
#grid-middle div#lasocki a span {
  display: block;
  line-height: 0;
  position: absolute;
  width: 100%;
  text-align: center;
}
#grid-middle div#lasocki a span.season {
  top: 50%;
  font-family: "Times New Roman", Georgia, Serif;
  font-size: 120px;
  letter-spacing: 4px;
  color: #e5e5e5;
}
#grid-middle div#lasocki a span:last-child {
  text-indent: -9999px;
  left: 50%;
  margin-left: -53px;
  top: 65%;
  width: 106px;
  height: 26px;
  background-image: url(../img/home/lasocki.png);
  background-size: 100%;
}
#grid-middle div#lasocki a:hover h3 {
  color: #f8541f;
  letter-spacing: 6px;
}
#grid-middle div#he {
  float: left;
  width: 100%;
}
#grid-middle div#he div.ratio-wrap {
  padding-bottom: 66.66666%;
}
#grid-middle div#he a {
  background-size: cover;
}
#grid-middle div#he a .content {
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
#grid-middle div#eobuwie,
#grid-middle div#bags-vertical {
  width: 33%;
  float: left;
}
#grid-middle div#eobuwie div.ratio-wrap,
#grid-middle div#bags-vertical div.ratio-wrap {
  padding-bottom: 202%;
}
#grid-middle div#eobuwie a,
#grid-middle div#bags-vertical a {
  background-size: cover;
}
#grid-middle div#eobuwie a .content,
#grid-middle div#bags-vertical a .content {
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
#grid-middle div#eobuwie a .content p,
#grid-middle div#bags-vertical a .content p {
  font-family: bebas, arial, sans-serif;
  text-shadow: none;
  font-size: 32px;
  line-height: 36px;
  color: #fff;
  padding: 0 20px;
  letter-spacing: 2px;
}
#grid-middle div#eobuwie a .content p > span,
#grid-middle div#bags-vertical a .content p > span {
  font-family: bebas, arial, sans-serif;
  text-shadow: none;
  font-size: 20px;
  line-height: 24px;
  color: #707070;
  letter-spacing: 2px;
}
#grid-middle div#eobuwie a .content p > img,
#grid-middle div#bags-vertical a .content p > img {
  margin: 20px auto;
  display: block;
}
#grid-middle div#eobuwie a .content .logo,
#grid-middle div#bags-vertical a .content .logo {
  max-width: 70%;
  margin-top: 20px;
}
@media (max-width: 1600px) {
  #grid-middle div#bags-vertical div.ratio-wrap div.ratio a h3 {
    letter-spacing: 2px;
  }
}
@media (max-width: 1200px) {
  #grid-middle div#bags-vertical div.ratio-wrap div.ratio a h3 {
    letter-spacing: 4px;
    font-size: 38px;
  }
}
#grid-middle div#bags-vertical div.ratio-wrap div.ratio a p {
  font-family: montserratlight, arial, sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
}
@media (max-width: 1200px) {
  #grid-middle div#bags-vertical div.ratio-wrap div.ratio a p {
    font-size: 11px;
    line-height: 14px;
    letter-spacing: 2px;
  }
}
#grid-middle div#club {
  float: left;
  width: 100%;
}
#grid-middle div#club div.ratio-wrap {
  padding-bottom: 33.7%;
}
#grid-middle div#club a {
  background-size: 105%;
}
#grid-middle div#club a .content {
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
#grid-middle div#club a .content > img {
  max-width: 340px;
}
#grid-middle div#no-club {
  float: left;
  width: 66.66666%;
}
#grid-middle div#no-club div.ratio-wrap {
  padding-bottom: 50%;
}
#grid-middle div#no-club a {
  background-size: cover;
}
#grid-middle div#no-club a .content {
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
#campain {
  width: 100%;
  height: 670px;
  box-sizing: content-box;
  margin: 10px 0;
  background: url('../img/home/lifting/10.jpg') 50% 50% / cover fixed no-repeat;
  overflow: hidden;
  text-align: center;
}
#campain .cover {
  position: relative;
  width: 100%;
  height: 100%;
}
#campain .cover .campaign-box-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  -moz-opacity: 0.25;
  -khtml-opacity: 0.25;
  -webkit-opacity: 0.25;
  opacity: 0.25;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=25);
  filter: alpha(opacity=25);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#campain .cover .center {
  position: absolute;
  width: 100%;
  max-width: 1720px;
  padding: 0 20px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
#campain .cover .center img {
  margin-bottom: 10px;
}
#campain .cover .center h3 {
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 20px;
  font-size: 85px;
  padding-bottom: 75px;
}
#campain .cover .center ul {
  max-width: 1340px;
  display: inline-block;
  text-align: center;
}
#campain .cover .center ul li {
  display: inline-block;
  margin: 10px 15px;
}
#campain .cover .center ul li.break {
  display: none;
}
body.pl #campain .cover .center ul li .break {
  display: block;
  padding: 0;
  margin: 0;
}
#campain .cover .center ul li a {
  padding: 25px 35px;
  height: auto;
  font-size: 25px;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #FFF;
}
#campain .cover .center ul li a:hover,
#campain .cover .center ul li a:active {
  background-color: #ffffff;
  color: #000;
}
#campain .cover:hover .campaign-box-cover {
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  -webkit-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
  filter: alpha(opacity=40);
}
#campain .cover:hover h3 {
  letter-spacing: 26px;
}
@media (max-width: 768px) {
  #campain {
    background-size: cover;
  }
}
#grid-bottom,
#grid-bottom-2,
#grid-bottom-3 {
  padding: 0 10px;
  zoom: 1;
}
#grid-bottom:before,
#grid-bottom-2:before,
#grid-bottom-3:before {
  content: '';
  display: block;
}
#grid-bottom:after,
#grid-bottom-2:after,
#grid-bottom-3:after {
  content: '';
  display: table;
  clear: both;
}
#grid-bottom > div,
#grid-bottom-2 > div,
#grid-bottom-3 > div {
  float: left;
  width: 33.333%;
  padding: 10px;
}
#grid-bottom > div > div.ratio-wrap,
#grid-bottom-2 > div > div.ratio-wrap,
#grid-bottom-3 > div > div.ratio-wrap {
  position: relative;
  padding-bottom: 100%;
  height: 0;
}
#grid-bottom > div > div.ratio-wrap > div.ratio,
#grid-bottom-2 > div > div.ratio-wrap > div.ratio,
#grid-bottom-3 > div > div.ratio-wrap > div.ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#grid-bottom > div a,
#grid-bottom-2 > div a,
#grid-bottom-3 > div a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #eee;
}
#grid-bottom > div a .box-cover,
#grid-bottom-2 > div a .box-cover,
#grid-bottom-3 > div a .box-cover {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  visibility: hidden;
}
#grid-bottom > div a .box-cover:after,
#grid-bottom-2 > div a .box-cover:after,
#grid-bottom-3 > div a .box-cover:after {
  content: '';
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  border: 1px solid #FFF;
  position: absolute;
}
#grid-bottom > div a .box-inner,
#grid-bottom-2 > div a .box-inner,
#grid-bottom-3 > div a .box-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
#grid-bottom > div a strong,
#grid-bottom-2 > div a strong,
#grid-bottom-3 > div a strong,
#grid-bottom > div a span,
#grid-bottom-2 > div a span,
#grid-bottom-3 > div a span {
  display: block;
  text-align: center;
}
#grid-bottom > div a strong,
#grid-bottom-2 > div a strong,
#grid-bottom-3 > div a strong {
  font-size: 52px;
  line-height: 64px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 18px;
  padding: 15px;
  font-family: bebas, arial, sans-serif;
}
#grid-bottom > div a strong.small,
#grid-bottom-2 > div a strong.small,
#grid-bottom-3 > div a strong.small {
  font-size: 42px;
  letter-spacing: 8px;
}
#grid-bottom > div a span,
#grid-bottom-2 > div a span,
#grid-bottom-3 > div a span {
  color: #FFF;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#grid-bottom > div a:hover .box-cover,
#grid-bottom-2 > div a:hover .box-cover,
#grid-bottom-3 > div a:hover .box-cover,
#grid-bottom > div a:active .box-cover,
#grid-bottom-2 > div a:active .box-cover,
#grid-bottom-3 > div a:active .box-cover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  visibility: visible;
  background: rgba(0, 0, 0, 0.25);
}
#grid-bottom #video a,
#grid-bottom-2 #video a,
#grid-bottom-3 #video a {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-bottom #video a strong,
#grid-bottom-2 #video a strong,
#grid-bottom-3 #video a strong {
  font-size: 52px;
  line-height: 64px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: .2em;
  font-family: bebas, arial, sans-serif;
}
#grid-bottom #inspiration-1,
#grid-bottom-2 #inspiration-1,
#grid-bottom-3 #inspiration-1 {
  width: 50%;
  max-height: 50%;
}
#grid-bottom #inspiration-1 .ratio-wrap,
#grid-bottom-2 #inspiration-1 .ratio-wrap,
#grid-bottom-3 #inspiration-1 .ratio-wrap {
  padding-bottom: 65.8%;
}
#grid-bottom #inspiration-1 a,
#grid-bottom-2 #inspiration-1 a,
#grid-bottom-3 #inspiration-1 a {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-bottom #inspiration-2,
#grid-bottom-2 #inspiration-2,
#grid-bottom-3 #inspiration-2 {
  width: 16.666%;
  height: 50%;
}
#grid-bottom #inspiration-2 a,
#grid-bottom-2 #inspiration-2 a,
#grid-bottom-3 #inspiration-2 a {
  background-color: #cd181f;
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-bottom #inspiration-3,
#grid-bottom-2 #inspiration-3,
#grid-bottom-3 #inspiration-3 {
  width: 33.333%;
  height: 50%;
  float: right;
}
#grid-bottom #inspiration-3 a,
#grid-bottom-2 #inspiration-3 a,
#grid-bottom-3 #inspiration-3 a {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-bottom #inspiration-4,
#grid-bottom-2 #inspiration-4,
#grid-bottom-3 #inspiration-4 {
  width: 16.666%;
  height: 50%;
}
#grid-bottom #inspiration-4 a,
#grid-bottom-2 #inspiration-4 a,
#grid-bottom-3 #inspiration-4 a {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-bottom #inspiration-5,
#grid-bottom-2 #inspiration-5,
#grid-bottom-3 #inspiration-5,
#grid-bottom #inspiration-8,
#grid-bottom-2 #inspiration-8,
#grid-bottom-3 #inspiration-8 {
  width: 66.666%;
  height: 50%;
}
#grid-bottom #inspiration-5 a,
#grid-bottom-2 #inspiration-5 a,
#grid-bottom-3 #inspiration-5 a,
#grid-bottom #inspiration-8 a,
#grid-bottom-2 #inspiration-8 a,
#grid-bottom-3 #inspiration-8 a {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-bottom #inspiration-6,
#grid-bottom-2 #inspiration-6,
#grid-bottom-3 #inspiration-6 {
  width: 33.333%;
  height: 50%;
}
#grid-bottom #inspiration-6 a,
#grid-bottom-2 #inspiration-6 a,
#grid-bottom-3 #inspiration-6 a {
  background-size: 80px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #1c5185;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-bottom #inspiration-7,
#grid-bottom-2 #inspiration-7,
#grid-bottom-3 #inspiration-7 {
  width: 33.333%;
  height: 50%;
}
#grid-bottom #inspiration-7 a,
#grid-bottom-2 #inspiration-7 a,
#grid-bottom-3 #inspiration-7 a {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-bottom #inspiration-8,
#grid-bottom-2 #inspiration-8,
#grid-bottom-3 #inspiration-8 {
  width: 66.666%;
  height: 50%;
}
#grid-bottom #inspiration-8 a,
#grid-bottom-2 #inspiration-8 a,
#grid-bottom-3 #inspiration-8 a {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-bottom #inspiration-9,
#grid-bottom-2 #inspiration-9,
#grid-bottom-3 #inspiration-9 {
  width: 33.333%;
  height: 50%;
}
#grid-bottom #inspiration-9 a,
#grid-bottom-2 #inspiration-9 a,
#grid-bottom-3 #inspiration-9 a {
  background-size: 80px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #bf8360;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-bottom #inspiration-10,
#grid-bottom-2 #inspiration-10,
#grid-bottom-3 #inspiration-10 {
  width: 33.333%;
  height: 50%;
}
#grid-bottom #inspiration-10 a,
#grid-bottom-2 #inspiration-10 a,
#grid-bottom-3 #inspiration-10 a {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-bottom #no-news a,
#grid-bottom-2 #no-news a,
#grid-bottom-3 #no-news a {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
#grid-bottom #no-news a strong,
#grid-bottom-2 #no-news a strong,
#grid-bottom-3 #no-news a strong {
  font-size: 50px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 18px;
  font-family: bebas, arial, sans-serif;
}
#grid-bottom #no-news a:hover,
#grid-bottom-2 #no-news a:hover,
#grid-bottom-3 #no-news a:hover {
  background-size: 120%;
}
#grid-bottom #no-news a:hover .box-cover,
#grid-bottom-2 #no-news a:hover .box-cover,
#grid-bottom-3 #no-news a:hover .box-cover {
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  -webkit-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
  filter: alpha(opacity=40);
}
#grid-bottom #news a,
#grid-bottom-2 #news a,
#grid-bottom-3 #news a {
  background-color: #efefef;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#grid-bottom #news a .content,
#grid-bottom-2 #news a .content,
#grid-bottom-3 #news a .content {
  text-align: center;
  padding: 40px;
}
#grid-bottom #news a .content h3,
#grid-bottom-2 #news a .content h3,
#grid-bottom-3 #news a .content h3 {
  padding: 80px 0 20px 0;
}
#grid-bottom #news a:hover,
#grid-bottom-2 #news a:hover,
#grid-bottom-3 #news a:hover {
  background-color: #000;
}
#grid-bottom #news a:hover h3,
#grid-bottom-2 #news a:hover h3,
#grid-bottom-3 #news a:hover h3 {
  color: #f8541f;
}
#grid-bottom #news a.news-content,
#grid-bottom-2 #news a.news-content,
#grid-bottom-3 #news a.news-content {
  overflow: hidden;
}
#grid-bottom #banners > div,
#grid-bottom-2 #banners > div,
#grid-bottom-3 #banners > div {
  height: 50%;
  width: 100%;
  text-align: center;
}
#grid-bottom #banners a,
#grid-bottom-2 #banners a,
#grid-bottom-3 #banners a {
  border: 1px solid #e3e3e3;
  background-color: #FFF;
}
#grid-bottom #banners a:hover h3,
#grid-bottom-2 #banners a:hover h3,
#grid-bottom-3 #banners a:hover h3 {
  color: #f8541f;
}
#grid-bottom #banners h3,
#grid-bottom-2 #banners h3,
#grid-bottom-3 #banners h3 {
  margin-top: 25%;
  padding: 0 25px;
}
#grid-bottom #banners #bags,
#grid-bottom-2 #banners #bags,
#grid-bottom-3 #banners #bags {
  height: 50%;
  padding-bottom: 15px;
}
#grid-bottom #banners #bags .left,
#grid-bottom-2 #banners #bags .left,
#grid-bottom-3 #banners #bags .left {
  width: 50%;
  height: 100%;
  float: left;
}
#grid-bottom #banners #bags .right,
#grid-bottom-2 #banners #bags .right,
#grid-bottom-3 #banners #bags .right {
  width: 50%;
  height: 100%;
  float: left;
  background-image: url(../img/home/grid-bottom-bags.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#grid-bottom #banners #shoes,
#grid-bottom-2 #banners #shoes,
#grid-bottom-3 #banners #shoes {
  height: 50%;
  padding-top: 15px;
}
#grid-bottom #banners #shoes .left,
#grid-bottom-2 #banners #shoes .left,
#grid-bottom-3 #banners #shoes .left {
  width: 50%;
  height: 100%;
  float: left;
  background-image: url(../img/home/grid-bottom-shoes.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#grid-bottom #banners #shoes .right,
#grid-bottom-2 #banners #shoes .right,
#grid-bottom-3 #banners #shoes .right {
  width: 50%;
  height: 100%;
  float: left;
}
#grid-bottom,
#grid-bottom-2,
#grid-bottom-3 {
  overflow: hidden;
}
#grid-bottom-2 {
  padding-right: 0;
}
#grid-bottom-3 {
  padding-left: 0;
  padding-bottom: 30px;
}
#grid-bottom-2,
#grid-bottom-3 {
  width: 50%;
  float: left;
}
/* Popup CCC Klub BEGIN */
#wrap-home .popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  height: 100%;
  display: table;
  z-index: 103;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  -webkit-transform: translateX(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#wrap-home .popup__inner {
  background: #FFF;
  padding: 40px 10px;
  width: 920px;
  position: relative;
}
#wrap-home .popup__inputs .error {
  border-color: red;
}
#wrap-home .popup__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  background: #f8541f;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-home .popup__close img {
  display: block;
  margin: 10px auto 0 auto;
}
#wrap-home .popup__close:hover {
  background: #000;
}
#wrap-home .popup__back {
  position: absolute;
  font-size: 10px;
  letter-spacing: 2px;
  top: 10px;
  left: 10px;
  color: #939393;
  text-transform: uppercase;
  border-bottom: 1px solid #939393;
}
#wrap-home .popup__back span {
  color: #939393;
  font-size: 10px;
  letter-spacing: 2px;
}
#wrap-home .popup__back:hover {
  color: #f8541f;
  border-color: #f8541f;
}
#wrap-home .popup__back:hover span {
  color: #f8541f;
}
#wrap-home .popup__header {
  text-align: center;
  margin-bottom: 15px;
}
#wrap-home .popup__header h3 {
  font-size: 26px;
}
#wrap-home .popup__content {
  text-align: center;
  zoom: 1;
}
#wrap-home .popup__content:before {
  content: '';
  display: block;
}
#wrap-home .popup__content:after {
  content: '';
  display: table;
  clear: both;
}
#wrap-home .popup__content h4 {
  display: inline-block;
  font-size: 13px;
  text-align: center;
  color: #8c8b92;
  border-bottom: 1px solid #8c8b92;
  padding-bottom: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}
#wrap-home .popup__content p {
  color: #8c8b92;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 25px;
}
#wrap-home .popup__col {
  width: 50%;
  float: left;
  padding: 0 60px;
}
#wrap-home .popup__col:last-of-type {
  border-left: 1px solid #cdcdcd;
}
#wrap-home .popup__img {
  position: absolute;
  left: 50%;
  bottom: -70px;
  -webkit-transform: translateX(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#wrap-home .popup .btn {
  height: 50px;
  line-height: 50px;
  min-width: 300px;
  font-size: 22px;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: bebas, arial, sans-serif;
  padding: 0 50px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  margin-bottom: 20px;
}
#wrap-home .popup .btn--orange {
  background: #f8541f;
  color: #FFF;
}
#wrap-home .popup .btn--orange:hover {
  background: #000;
}
#wrap-home .popup .btn--outline {
  background: #FFF;
  color: #000;
  border: 2px solid #000;
  line-height: 46px;
}
#wrap-home .popup .btn--outline:hover {
  background: #000;
  color: #FFF;
}
#wrap-home .popup .btn--fb {
  color: #FFF;
  background: url('../img/home/popup-fb-icon.png') 20px 50% no-repeat #3b5998;
  font-size: 18px;
  padding: 0 0 0 30px;
}
#wrap-home .popup .btn--fb:hover {
  background-color: #4c70ba;
}
body.at #wrap-home .popup .btn.btn,
body.hu #wrap-home .popup .btn.btn {
  letter-spacing: 1px;
  width: 100%;
  font-size: 16px;
}
body.at #wrap-home .popup .btn.btn--fb,
body.hu #wrap-home .popup .btn.btn--fb {
  font-size: 16px;
}
@media (max-width: 420px) {
  body.at #wrap-home .popup .btn.btn,
  body.hu #wrap-home .popup .btn.btn {
    padding: 0 10px;
  }
  body.at #wrap-home .popup .btn.btn--fb,
  body.hu #wrap-home .popup .btn.btn--fb {
    height: auto;
    line-height: 25px;
    padding: 10px 0 10px 45px;
  }
}
#wrap-home .popup__agreement {
  padding-top: 10px;
}
#wrap-home .popup__agreement span {
  font-size: 9px;
  margin-top: 10px;
  line-height: 12px;
}
#wrap-home .popup__info {
  display: none;
  font-family: montserratlight, arial, sans-serif;
  color: #f8541f;
  margin: 20px 0;
}
#wrap-home .popup__container {
  display: table-cell;
  vertical-align: middle;
}
#wrap-home .popup__container--start .popup__inner {
  padding-bottom: 190px;
}
#wrap-home .popup__container--login .popup__content {
  max-width: 560px;
  margin: 0 auto;
}
#wrap-home .popup__container--login .popup__content input {
  display: inline-block;
  width: 260px;
  font-size: 10px;
}
#wrap-home .popup__container--login .popup__content input:first-of-type {
  margin-right: 36px;
}
#wrap-home .popup__container--login .popup__content .btn {
  margin-top: 30px;
  margin-bottom: 0;
}
#wrap-home .popup__container--edit .popup__header {
  margin-bottom: 30px;
}
#wrap-home .popup__container--edit .popup__content {
  max-width: 560px;
  margin: 0 auto;
}
#wrap-home .popup__container--edit .popup__content input {
  display: inline-block;
  width: 260px;
  margin: 0 7px 15px;
  font-size: 10px;
}
#wrap-home .popup__container--edit .popup__content input:last-of-type {
  margin-bottom: 0;
}
#wrap-home .popup__container--edit .popup__content .btn {
  margin-bottom: 0;
  margin-top: 25px;
}
#wrap-home .popup__container--register .popup__header {
  margin-bottom: 30px;
}
#wrap-home .popup__container--register .popup__content input {
  display: inline-block;
  width: 260px;
  margin: 0 7px 15px;
  font-size: 10px;
}
#wrap-home .popup__container--register .popup__content input:last-of-type {
  margin-bottom: 0;
}
#wrap-home .popup__container--register .popup__content .btn {
  margin-bottom: 0;
  margin-top: 25px;
}
#wrap-home .popup__container--register .popup__content .popup__agreement {
  display: table;
  margin: 0 40px;
}
#wrap-home .popup__container--register .popup__content .popup__agreement label {
  padding-left: 35px;
  display: table-cell;
  vertical-align: top;
  width: auto;
  text-align: left;
  position: relative;
}
#wrap-home .popup__container--register .popup__content .popup__agreement label span {
  margin-top: 0;
}
#wrap-home .popup__container--register .popup__content .popup__agreement label:before {
  content: '';
  width: 13px;
  height: 13px;
  border: 1px solid #d3d3d3;
  background: #FFF;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-home .popup__container--register .popup__content .popup__agreement label:hover:before {
  background: #f8541f;
  border-color: #f8541f;
  opacity: 0.5;
}
#wrap-home .popup__container--register .popup__content .popup__agreement input[type="checkbox"] {
  display: none;
}
#wrap-home .popup__container--register .popup__content .popup__agreement input[type="checkbox"]:checked + label:before {
  background: #f8541f;
  border-color: #f8541f;
}
#wrap-home .popup__container--register .popup__content .popup__agreement input[type="checkbox"]:checked + label:hover:before {
  opacity: 1;
}
#wrap-home .popup__container--register .popup__content .popup__agreement--required_fields {
  display: block;
  text-align: left;
  padding-left: 45px;
}
#wrap-home .popup__container--thank-you .popup__content {
  position: relative;
  margin-top: 40px;
}
#wrap-home .popup__container--thank-you .popup__content:before {
  width: 42px;
  height: 1px;
  background: #949399;
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -21px;
}
#wrap-home .popup__container--thank-you .popup__img {
  max-width: 200px;
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-70px, 50px) translateZ(0) scale(1, 1);
  -ms-transform: translate(-70px, 50px);
  transform: translate(-70px, 50px);
  -webkit-transform: translate(-70px, 50px) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-70px, 50px) translateZ(0) scale(1, 1);
  -o-transform: translate(-70px, 50px) translateZ(0) scale(1, 1);
  -ms-transform: translate(-70px, 50px) translateZ(0) scale(1, 1);
  transform: translate(-70px, 50px) translateZ(0) scale(1, 1);
}
#wrap-home .popup__social {
  margin-top: 10px;
  font-family: montserratlight, arial, sans-serif;
  text-transform: uppercase;
}
#wrap-home .popup__social.popup__col {
  border: none;
}
#wrap-home .popup__social p,
#wrap-home .popup__social img {
  display: inline-block;
}
#wrap-home .popup__social img {
  transform: translate(5px, 7px);
  width: 25px;
  height: 25px;
}
#wrap-home .popup__social p {
  font-size: 11px;
}
#wrap-home .popup__social--white {
  color: #fff;
}
#wrap-home .popup__social--white p {
  color: #fff;
}
@media (max-width: 990px) {
  #wrap-home .popup {
    width: 95%;
    max-height: 80vh;
    bottom: auto;
    height: auto;
    overflow-y: auto;
    display: block;
    top: 10vh;
  }
  #wrap-home .popup .popup__col {
    width: 100%;
    padding: 0 5%;
    margin-bottom: 20px;
  }
  #wrap-home .popup .popup__col:last-of-type {
    margin-bottom: 0;
    border-left: 0;
    border-top: 1px solid #cdcdcd;
    padding-top: 20px;
  }
  #wrap-home .popup .popup__img {
    display: none;
  }
  #wrap-home .popup .popup__container {
    display: block ;
  }
  #wrap-home .popup .popup__inner {
    padding-bottom: 40px;
    width: 100%;
  }
  #wrap-home .popup .popup__inner br {
    display: none!important;
  }
  #wrap-home .popup .popup__header {
    margin-bottom: 40px;
  }
  #wrap-home .popup .btn {
    min-width: 0;
    display: block;
  }
  #wrap-home .popup .btn--fb {
    display: block;
    padding: 0 20px 0 50px;
  }
}
@media (max-width: 768px) {
  #wrap-home .popup .popup__content input {
    margin-left: 0!important;
    margin-right: 0!important;
    width: 100%;
  }
}
@media (max-width: 480px) {
  #wrap-home .popup .btn {
    padding: 0 20px;
    font-size: 16px;
  }
  #wrap-home .popup .btn--fb {
    padding: 0 20px 0 50px;
    letter-spacing: 1px;
  }
}
#wrap-home .popup--nikolaus {
  display: none;
}
#wrap-home .popup--nikolaus .popup__inner {
  padding: 55px 10px 85px;
  background-color: #231f20;
}
#wrap-home .popup--nikolaus .popup__btns {
  margin-bottom: 25px;
  padding: 16px;
  text-align: center;
  background-color: inherit;
  border: 1px solid #fff;
  height: auto;
  font-size: 18px;
  letter-spacing: 0.2em;
  transition: all 0.3s;
  color: #fff;
}
@media (min-width: 420px) {
  #wrap-home .popup--nikolaus .popup__btns {
    font-size: 24px;
  }
}
#wrap-home .popup--nikolaus .popup__btns:hover {
  background-color: #fff;
  color: #000;
}
#wrap-home .popup--nikolaus .popup__information {
  margin-bottom: 0;
}
#wrap-home .popup--nikolaus .popup__header {
  margin-bottom: 35px;
}
@media (min-width: 420px) {
  #wrap-home .popup--nikolaus .popup__header {
    margin-bottom: 55px;
  }
}
#wrap-home .popup--nikolaus .popup__header h3 {
  font-family: "gordita", "ProximaNova-Bold";
  font-weight: 500;
  font-size: 30px;
  color: #f8541f;
}
@media (min-width: 420px) {
  #wrap-home .popup--nikolaus .popup__header h3 {
    font-size: 34px;
  }
}
#wrap-home .popup--nikolaus .popup__content {
  text-align: left;
}
#wrap-home .popup--nikolaus .popup__content p {
  color: #fff;
}
#wrap-home .popup--nikolaus .popup__col:last-of-type {
  border-color: #464344;
}
#wrap-home .popup--nikolaus .popup__description {
  margin-bottom: 30px;
  font-family: montserratbold, arial, sans-serif;
  line-height: 26px;
  font-size: 16px;
}
@media (min-width: 420px) {
  #wrap-home .popup--nikolaus .popup__description {
    font-size: 18px;
  }
}
#wrap-home .popup--nikolaus .popup-list {
  list-style: disc;
  color: #f8541f;
}
#wrap-home .popup--nikolaus .popup-list__item {
  font-family: 'montserratregular';
  font-size: 14px;
  line-height: 20px;
}
#wrap-home .popup--nikolaus .popup-list__item p {
  margin-bottom: 20px;
  color: #fff;
}
#wrap-home .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 102;
}
/* Popup CCC Klub END */
*:-moz-full-screen {
  -webkit-transform: none!important;
  -moz-transform: none!important;
  -ms-transform: none!important;
  -o-transform: none!important;
  transform: none!important;
  position: static!important;
}
*:-moz-full-screen video {
  -webkit-transform: none!important;
  -moz-transform: none!important;
  -ms-transform: none!important;
  -o-transform: none!important;
  transform: none!important;
  position: static!important;
}
*:-webkit-full-screen {
  -webkit-transform: none!important;
  -moz-transform: none!important;
  -ms-transform: none!important;
  -o-transform: none!important;
  transform: none!important;
  position: static!important;
}
*:-webkit-full-screen video {
  -webkit-transform: none!important;
  -moz-transform: none!important;
  -ms-transform: none!important;
  -o-transform: none!important;
  transform: none!important;
  position: static!important;
}
*:-ms-fullscreen {
  -webkit-transform: none!important;
  -moz-transform: none!important;
  -ms-transform: none!important;
  -o-transform: none!important;
  transform: none!important;
  position: static!important;
}
*:-ms-fullscreen video {
  -webkit-transform: none!important;
  -moz-transform: none!important;
  -ms-transform: none!important;
  -o-transform: none!important;
  transform: none!important;
  position: static!important;
}
*:fullscreen {
  -webkit-transform: none!important;
  -moz-transform: none!important;
  -ms-transform: none!important;
  -o-transform: none!important;
  transform: none!important;
  position: static!important;
}
*:fullscreen video {
  -webkit-transform: none!important;
  -moz-transform: none!important;
  -ms-transform: none!important;
  -o-transform: none!important;
  transform: none!important;
  position: static!important;
}
#owl-ratio {
  display: block;
  width: 100%;
  height: 0px;
  padding-bottom: 36%;
  background: url(../img/loader.svg) no-repeat center center;
  background-color: #ebebeb;
}
#owl-ratio .owl-item {
  opacity: 0;
}
#owl-ratio .owl-item.active {
  opacity: 1;
}
#owl-ratio .owl-controls.hidden {
  display: none!important;
}
#owl-ratio #home-slider {
  width: 100%;
  min-height: auto;
  overflow: hidden;
}
#owl-ratio #home-slider .loading {
  overflow: hidden;
}
#owl-ratio #home-slider .loading .slide section {
  height: 0px;
  display: none;
}
#owl-ratio #home-slider .slide {
  width: 100%;
  display: block;
  overflow: hidden;
  max-height: 697px;
}
#owl-ratio #home-slider .slide section {
  position: absolute;
  max-width: 400px;
  top: 50%;
  margin-top: -150px;
  text-align: center;
  left: 10%;
}
#owl-ratio #home-slider .slide section a {
  display: inline-block;
  width: 345px;
  height: auto;
  padding: 18px 10px;
  font-size: 19px;
  text-align: center;
  color: #000;
  border: 1px solid #000;
  background-color: rgba(255, 255, 255, 0);
}
#owl-ratio #home-slider .slide section a:hover {
  color: #FFF;
  background-color: #000000;
}
#owl-ratio #home-slider .slide img {
  display: block;
}
#owl-ratio #home-slider .slide p {
  color: #000;
  padding: 30px 0;
}
#owl-ratio #home-slider .slide.slide--ccc-sales section {
  padding: 15px 10px;
  margin: 0;
  left: 20px;
  right: 20px;
  transform: translate(0, -50%);
  width: auto;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.72);
}
@media (min-width: 500px) {
  #owl-ratio #home-slider .slide.slide--ccc-sales section {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    padding: 3.12vw 2.08vw;
    width: 400px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--ccc-sales section {
    top: 50%;
    bottom: auto;
  }
}
@media (min-width: 990px) {
  #owl-ratio #home-slider .slide.slide--ccc-sales section {
    width: 29.81vw;
  }
}
#owl-ratio #home-slider .slide.slide--ccc-sales section h3 {
  font-family: "gordita";
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: none;
}
@media (min-width: 990px) {
  #owl-ratio #home-slider .slide.slide--ccc-sales section h3 {
    font-size: 2.1vw;
    line-height: 2.75vw;
  }
}
#owl-ratio #home-slider .slide.slide--ccc-sales section h3 span.no-spacing {
  display: block;
  font-size: 19px;
  line-height: 27px;
  letter-spacing: 0;
  color: #fff;
}
@media (min-width: 990px) {
  #owl-ratio #home-slider .slide.slide--ccc-sales section h3 span.no-spacing {
    font-size: 1.97vw;
    line-height: 2.75vw;
  }
}
#owl-ratio #home-slider .slide.slide--ccc-sales section h3.small {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 23px;
  font-weight: 700;
  color: #f15922;
  text-transform: uppercase;
}
@media (min-width: 990px) {
  #owl-ratio #home-slider .slide.slide--ccc-sales section h3.small {
    margin-top: 0.88vw;
    margin-bottom: 1.04vw;
    font-size: 1.56vw;
    line-height: 2.34vw;
  }
}
#owl-ratio #home-slider .slide.slide--ccc-sales section .info {
  padding: 0;
  font-family: "gordita";
  font-size: 10px;
  line-height: 15px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #fff;
}
@media (min-width: 990px) {
  #owl-ratio #home-slider .slide.slide--ccc-sales section .info {
    font-size: 0.78vw;
    line-height: 1.19vw;
  }
}
#owl-ratio #home-slider .slide.slide--mothers-day {
  position: relative;
}
#owl-ratio #home-slider .slide.slide--mothers-day section {
  max-height: 90%;
  left: 50%;
  max-width: 560px;
  padding: 30px 20px;
  margin: 0;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--mothers-day section {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    max-height: none;
    transform: none;
  }
}
#owl-ratio #home-slider .slide.slide--mothers-day section img {
  display: block;
  max-width: 475px;
  max-height: 20vw;
  width: auto;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--mothers-day section img {
    max-width: 90%;
    max-height: 80%;
  }
}
#owl-ratio #home-slider .slide.slide--mothers-day section .btns {
  margin-top: 20px;
  padding: 10px;
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--mothers-day section .btns {
    margin-top: 10px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--mothers-day section .slide__bg {
    width: 200vw;
  }
}
#owl-ratio #home-slider .slide.slide--converse:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
@media (min-width: 700px) {
  #owl-ratio #home-slider .slide.slide--converse:before {
    content: none;
  }
}
#owl-ratio #home-slider .slide.slide--converse section {
  z-index: 2;
}
@media (min-width: 700px) {
  #owl-ratio #home-slider .slide.slide--converse section {
    left: auto;
    right: 5%;
    margin-top: 0;
    max-width: 35vw;
    -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
  }
}
@media (min-width: 990px) {
  #owl-ratio #home-slider .slide.slide--converse section {
    right: 110px;
  }
}
@media (min-width: 1180px) {
  #owl-ratio #home-slider .slide.slide--converse section {
    right: 10%;
  }
}
#owl-ratio #home-slider .slide.slide--converse section > img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 160px;
}
@media (min-width: 700px) {
  #owl-ratio #home-slider .slide.slide--converse section > img {
    max-height: 15vw;
    width: auto;
  }
}
#owl-ratio #home-slider .slide.slide--converse section .btns {
  margin-top: 50px;
  background: #fff;
  color: #000;
  border-color: #fff;
  min-width: 268px;
  width: auto;
}
@media (min-width: 990px) {
  #owl-ratio #home-slider .slide.slide--converse section .btns {
    font-size: 24px;
  }
}
@media (min-width: 1280px) {
  #owl-ratio #home-slider .slide.slide--converse section .btns {
    font-size: 32px;
    padding: 25px;
  }
}
#owl-ratio #home-slider .slide.slide--converse section .btns:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
#owl-ratio #home-slider .slide.slide--video-goformore.slide--video .logo__img {
  margin: 0 auto;
  width: 235px;
}
@media (min-width: 700px) {
  #owl-ratio #home-slider .slide.slide--video-goformore.slide--video .logo__img {
    width: 32.85vw;
  }
}
#owl-ratio #home-slider .slide.slide--video-goformore.slide--video .slide__overlay .overlay__c h3 {
  font-size: 32px;
  padding: 0 15px;
}
@media (min-width: 768px) {
  #owl-ratio #home-slider .slide.slide--video-goformore.slide--video .slide__overlay .overlay__c h3 {
    font-size: 40px;
  }
}
@media (min-width: 1000px) {
  #owl-ratio #home-slider .slide.slide--video-goformore.slide--video .slide__overlay .overlay__c h3 {
    font-size: 60px;
  }
}
@media (min-width: 1400px) {
  #owl-ratio #home-slider .slide.slide--video-goformore.slide--video .slide__overlay .overlay__c h3 {
    font-size: 80px;
  }
}
#owl-ratio #home-slider .slide.slide--video-goformore.slide--video .slide__overlay .overlay__c .btns {
  font-size: 14px;
  padding: 15px 30px;
}
@media (min-width: 768px) {
  #owl-ratio #home-slider .slide.slide--video-goformore.slide--video .slide__overlay .overlay__c .btns {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  #owl-ratio #home-slider .slide.slide--video-goformore.slide--video .slide__overlay .overlay__c .btns {
    font-size: 28px;
    padding: 25px 40px;
  }
}
#owl-ratio #home-slider .slide.slide--valentine section {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
}
#owl-ratio #home-slider .slide.slide--valentine section .slide__text,
#owl-ratio #home-slider .slide.slide--valentine section .slide__card,
#owl-ratio #home-slider .slide.slide--valentine section .slide__hearts {
  position: absolute;
  max-width: 100%;
}
#owl-ratio #home-slider .slide.slide--valentine section .slide__hearts {
  top: 0;
  right: -40%;
  width: 84.4vw;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--valentine section .slide__hearts {
    right: 0;
  }
}
#owl-ratio #home-slider .slide.slide--valentine section .slide__text {
  top: 18%;
  left: 6%;
  width: 275px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--valentine section .slide__text {
    top: 50%;
    transform: translateY(-50%);
    width: 29.9vw;
  }
}
@media (min-width: 991px) {
  #owl-ratio #home-slider .slide.slide--valentine section .slide__text {
    left: 113px;
  }
}
#owl-ratio #home-slider .slide.slide--valentine section .slide__card {
  right: 0;
  bottom: 0;
  width: 315px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--valentine section .slide__card {
    width: 44.9vw;
  }
}
#owl-ratio #home-slider .slide.slide--kidsandyoung-cars-barbie {
  background-color: #fff;
}
#owl-ratio #home-slider .slide.slide--kidsandyoung-cars-barbie section {
  max-width: 100%;
  right: 0;
  left: 0;
  padding: 0 20px;
}
#owl-ratio #home-slider .slide.slide--kidsandyoung-cars-barbie section h3 {
  font-size: 70px;
}
#owl-ratio #home-slider .slide.slide--kidsandyoung-cars-barbie section .btns {
  margin-top: 20px;
  font-size: 32px;
  width: auto;
  padding: 18px 20px 18px 30px;
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--kidsandyoung-cars-barbie section {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  #owl-ratio #home-slider .slide.slide--kidsandyoung-cars-barbie section h3 {
    font-size: 48px;
  }
  #owl-ratio #home-slider .slide.slide--kidsandyoung-cars-barbie section .btns {
    font-size: 24px;
    position: static;
  }
  #owl-ratio #home-slider .slide.slide--kidsandyoung-cars-barbie .slide__bg {
    display: none!important;
  }
}
#owl-ratio #home-slider .slide.slide--nikolaus img.mobile {
  display: block !important;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--nikolaus img.mobile {
    display: none !important;
  }
}
#owl-ratio #home-slider .slide.slide--nikolaus img.desktop {
  display: none !important;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--nikolaus img.desktop {
    display: block !important;
  }
}
#owl-ratio #home-slider .slide.slide--nikolaus section {
  top: 105px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--nikolaus section {
    top: 13.5vw;
    left: auto;
    right: 15vw;
    margin-top: 0;
    max-width: 650px;
  }
}
#owl-ratio #home-slider .slide.slide--nikolaus section h3,
#owl-ratio #home-slider .slide.slide--nikolaus section h4 {
  font-family: "gordita", "ProximaNova-Bold";
}
#owl-ratio #home-slider .slide.slide--nikolaus section h3 {
  color: #f15922;
  font-weight: 900;
  font-size: 23px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
@media (min-width: 400px) {
  #owl-ratio #home-slider .slide.slide--nikolaus section h3 {
    font-size: 30px;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--nikolaus section h3 {
    margin-bottom: 0.5vw;
    font-size: 2.2vw;
    letter-spacing: 0.45vw;
  }
}
#owl-ratio #home-slider .slide.slide--nikolaus section h4 {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}
@media (min-width: 400px) {
  #owl-ratio #home-slider .slide.slide--nikolaus section h4 {
    margin-bottom: 10px;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--nikolaus section h4 {
    margin-bottom: 2.4vw;
    font-size: 1.72vw;
    line-height: 2.4vw;
    letter-spacing: 0.32vw;
  }
}
#owl-ratio #home-slider .slide.slide--nikolaus section .btns {
  color: #fff;
  border-color: #fff;
  display: inline-block;
  position: static;
  padding: 20px 30px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--nikolaus section .btns {
    padding: 1.3vw 1.8vw;
    width: auto;
    font-size: 1.55vw;
  }
}
#owl-ratio #home-slider .slide.slide--nikolaus section .btns:hover {
  background-color: #fff;
  color: #000;
}
#owl-ratio #home-slider .slide.slide--styling section,
#owl-ratio #home-slider .slide.slide--buty-sportowe section {
  top: 80px;
  left: 120px;
  margin-top: 0;
}
#owl-ratio #home-slider .slide.slide--styling section h3,
#owl-ratio #home-slider .slide.slide--buty-sportowe section h3 {
  font-family: montserratbold, arial, sans-serif;
  font-size: 36px;
  letter-spacing: 0;
  line-height: 42px;
}
#owl-ratio #home-slider .slide.slide--styling section .btns,
#owl-ratio #home-slider .slide.slide--buty-sportowe section .btns {
  padding: 18px 20px;
  margin-top: 20px;
  border-width: 2px;
  font-family: montserratbold, arial, sans-serif;
  font-size: 20px;
  letter-spacing: 0;
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--styling section,
  #owl-ratio #home-slider .slide.slide--buty-sportowe section {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #owl-ratio #home-slider .slide.slide--styling section .btns,
  #owl-ratio #home-slider .slide.slide--buty-sportowe section .btns {
    width: auto;
  }
  #owl-ratio #home-slider .slide.slide--styling > img,
  #owl-ratio #home-slider .slide.slide--buty-sportowe > img {
    left: 50%;
    -webkit-transform: translateX(-50%) translateZ(0) scale(1, 1);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  #owl-ratio #home-slider .slide.slide--styling section h3,
  #owl-ratio #home-slider .slide.slide--buty-sportowe section h3 {
    font-size: 28px;
    line-height: 36px;
  }
}
#owl-ratio #home-slider .slide.slide--buty-sportowe .mobile {
  display: none;
}
#owl-ratio #home-slider .slide.slide--buty-sportowe section h3,
#owl-ratio #home-slider .slide.slide--buty-sportowe section a {
  color: #fff;
}
#owl-ratio #home-slider .slide.slide--buty-sportowe section h3 {
  font-size: 34px;
}
#owl-ratio #home-slider .slide.slide--buty-sportowe section h3 span {
  font-size: 44px;
  color: #fff;
  font-family: montserratbold, arial, sans-serif;
}
#owl-ratio #home-slider .slide.slide--buty-sportowe section .btns {
  border-color: #fff;
  width: 222px;
  cursor: pointer;
}
#owl-ratio #home-slider .slide.slide--buty-sportowe section .btns:hover {
  background-color: #fff;
  color: #000;
}
@media (max-width: 1760px) {
  #owl-ratio #home-slider .slide.slide--buty-sportowe section {
    left: 40px;
  }
}
@media (max-width: 1468px) {
  #owl-ratio #home-slider .slide.slide--buty-sportowe section {
    left: 40px;
    top: 56px;
  }
  #owl-ratio #home-slider .slide.slide--buty-sportowe section h3 {
    font-size: 28px;
  }
  #owl-ratio #home-slider .slide.slide--buty-sportowe section h3 span {
    font-size: 36px;
  }
  #owl-ratio #home-slider .slide.slide--buty-sportowe section .btns {
    font-size: 16px;
    width: 188px;
    padding: 13px 20px;
    margin-top: 12px;
  }
}
@media (max-width: 1210px) {
  #owl-ratio #home-slider .slide.slide--buty-sportowe section {
    left: 90px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--buty-sportowe section {
    left: 0;
    top: 0;
  }
  #owl-ratio #home-slider .slide.slide--buty-sportowe section a {
    position: static;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--buty-sportowe .btns {
    margin: 20px auto 0;
  }
}
@media (max-width: 658px) {
  #owl-ratio #home-slider .slide.slide--buty-sportowe section h3 {
    font-size: 20px;
    line-height: 28px;
  }
  #owl-ratio #home-slider .slide.slide--buty-sportowe section h3 span {
    font-size: 26px;
  }
  #owl-ratio #home-slider .slide.slide--buty-sportowe section .btns {
    font-size: 12px;
    width: 137px;
    padding: 9px 20px;
    margin-top: 11px;
  }
  #owl-ratio #home-slider .slide.slide--buty-sportowe .mobile {
    display: block;
  }
  #owl-ratio #home-slider .slide.slide--buty-sportowe .desktop {
    display: none !important;
  }
}
#owl-ratio #home-slider .slide.slide--glamour {
  background: #000;
}
#owl-ratio #home-slider .slide.slide--glamour.pl {
  background: #23241f;
}
#owl-ratio #home-slider .slide.slide--glamour .mobile {
  display: none;
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--glamour .mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  #owl-ratio #home-slider .slide.slide--glamour .mobile img {
    display: block;
    margin: 0 auto;
    max-height: 100%;
    width: auto;
  }
  #owl-ratio #home-slider .slide.slide--glamour .desktop {
    display: none;
  }
}
#owl-ratio #home-slider .slide.slide--youngsters .cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 700px) {
  #owl-ratio #home-slider .slide.slide--youngsters .cover {
    display: none;
  }
}
#owl-ratio #home-slider .slide.slide--youngsters section {
  margin-top: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--youngsters section {
    width: 39.55vw;
  }
}
#owl-ratio #home-slider .slide.slide--youngsters section .logo {
  display: block;
  margin: 0 auto;
  width: 260px;
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--youngsters section .logo {
    display: inline;
    width: 39.55vw;
  }
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--youngsters section .logo.ro {
    width: 31.55vw;
    margin: 0 auto;
  }
}
#owl-ratio #home-slider .slide.slide--youngsters section .btns {
  position: static;
  display: inline-block;
  margin: 20px auto 0;
  padding: 4px 58px;
  background: none;
  font-family: 'finlek';
  transform: rotate(-1deg);
  height: auto;
  width: auto;
  border: 5px solid #fff;
  border-radius: 10px;
  color: #fff;
  font-size: 35px;
  letter-spacing: 0.2vw;
  font-weight: 500;
  text-align: center;
  line-height: 0.88;
  overflow: hidden;
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--youngsters section .btns {
    padding: 0.1vw 2.9vw;
    font-size: 2.75vw;
  }
}
#owl-ratio #home-slider .slide.slide--youngsters section .btns:hover {
  background: #fff;
  color: #000;
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--youngsters section .btns.pl {
    margin-top: -0.7vw;
    margin-right: -6vw;
  }
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--youngsters section .btns.cz {
    margin-top: -0.8vw;
    margin-right: 2.5vw;
  }
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--youngsters section .btns.sk {
    margin-right: 1.3vw;
    margin-top: -2vw;
    padding: 0.6vw 2.9vw;
    font-size: 2vw;
  }
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--youngsters section .btns.hu {
    margin-top: -1vw;
    margin-right: 3.7vw;
  }
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--youngsters section .btns.ro {
    margin-right: 2vw;
    margin-top: -2vw;
  }
}
#owl-ratio #home-slider .slide.slide--puma section {
  margin-top: 30px;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
}
@media (min-width: 415px) {
  #owl-ratio #home-slider .slide.slide--puma section {
    margin-top: 50px;
  }
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--puma section {
    margin-top: -1.4vw;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
#owl-ratio #home-slider .slide.slide--puma section .logo__puma {
  display: inline-block;
  margin-left: 24px;
  width: 125px;
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--puma section .logo__puma {
    margin: -1.4vw 0 1vw 3vw;
    width: 17.5vw;
  }
}
#owl-ratio #home-slider .slide.slide--puma section .logo__nb {
  display: inline-block;
  width: 125px;
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--puma section .logo__nb {
    margin: -1.4vw 0 0 0;
    width: 17vw;
  }
}
#owl-ratio #home-slider .slide.slide--puma section .logo__ccc {
  display: inline-block;
  width: 82px;
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--puma section .logo__ccc {
    margin-left: -0.6vw;
    width: 10vw;
    height: 3.5vw;
  }
}
#owl-ratio #home-slider .slide.slide--puma section .logo__ccc--center {
  margin: 0 15px 0 8px;
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--puma section .logo__ccc--center {
    margin: 0 1.55vw 0 0.7vw;
  }
}
#owl-ratio #home-slider .slide.slide--puma section .description,
#owl-ratio #home-slider .slide.slide--puma section .description span {
  font-family: 'bebas';
  line-height: 1;
  font-size: 41px;
  letter-spacing: 5px;
  color: #FFF;
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--puma section .description,
  #owl-ratio #home-slider .slide.slide--puma section .description span {
    font-size: 5vw;
    letter-spacing: 0.65vw;
    text-transform: uppercase;
  }
}
#owl-ratio #home-slider .slide.slide--puma section .description--small,
#owl-ratio #home-slider .slide.slide--puma section .description span--small {
  font-size: 28px;
  line-height: 1.3;
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--puma section .description--small,
  #owl-ratio #home-slider .slide.slide--puma section .description span--small {
    font-size: 5vw;
    line-height: 1;
  }
}
#owl-ratio #home-slider .slide.slide--puma section .btns {
  position: static;
  margin: 10px auto 0;
  padding: 14px 68px;
  background: none;
  color: #FFF;
  border: 1px solid #FFF;
  height: auto;
  letter-spacing: 0;
  text-transform: uppercase;
  width: auto;
  display: inline-block;
  text-align: center;
  font-size: 16px;
}
@media (min-width: 770px) {
  #owl-ratio #home-slider .slide.slide--puma section .btns {
    margin-top: 0.9vw;
    padding: 1.2vw 3.4vw;
    font-size: 2vw;
    letter-spacing: 0.5vw;
  }
}
#owl-ratio #home-slider .slide.slide--puma section .btns:hover {
  background: #FFF;
  color: #f8541f;
}
#owl-ratio #home-slider .slide--video {
  max-height: 692px;
  overflow: hidden;
  position: relative;
  z-index: 99999999;
}
#owl-ratio #home-slider .slide--video .slide--video-close {
  background: #FFF;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  z-index: 99999;
  width: 32px;
  height: 32px;
}
#owl-ratio #home-slider .slide--video .slide__overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
#owl-ratio #home-slider .slide--video .slide__overlay .overlay__c {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  width: 100%;
  text-align: center;
}
#owl-ratio #home-slider .slide--video .slide__overlay .overlay__c h3 {
  font-family: ainslie, arial, sans-serif;
  color: #FFF;
  font-size: 100px;
}
#owl-ratio #home-slider .slide--video .slide__overlay .overlay__c h3 span {
  font-family: ainslie, arial, sans-serif;
  color: #f8541f;
  font-size: 100px;
}
#owl-ratio #home-slider .slide--video .slide__overlay .overlay__c .btns {
  padding: 25px 40px;
  background: none;
  color: #FFF;
  border: 1px solid #FFF;
  height: auto;
  font-size: 35px;
  letter-spacing: 0;
  text-transform: uppercase;
  width: auto;
  display: inline-block;
  text-align: center;
  margin: 35px auto 0 auto;
  font-family: ainslie, arial, sans-serif;
}
#owl-ratio #home-slider .slide--video .slide__overlay .overlay__c .btns:hover {
  background: #FFF;
  color: #f8541f;
}
#owl-ratio #home-slider .slide--video .jsVideoHidden {
  display: none;
  z-index: 9999;
}
#owl-ratio #home-slider .slide--video .jsVideoLoop::-webkit-media-controls {
  display: none !important;
}
#owl-ratio #home-slider .slide--video video {
  width: 101%;
  max-height: 693px;
  height: 101%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
@keyframes scaleUpNDown {
  0% {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
  }
}
#owl-ratio #home-slider .slide--video .btn_container {
  text-align: center;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 2;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  background-image: url("../img/video/video-bg.jpg");
  background-size: cover;
}
#owl-ratio #home-slider .slide--video .jsAfterVideo {
  opacity: 0;
  visibility: hidden;
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  transform-origin: 50% 50%;
  z-index: 99999;
  padding: 30px 75px;
  background: none;
  color: #FFF;
  border: 1px solid #FFF;
  height: auto;
  font-size: 35px;
  letter-spacing: 0;
  text-transform: uppercase;
  width: 410px;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
  animation: scaleUpNDown 1.5s infinite both;
  font-family: ainslie, arial, sans-serif;
}
#owl-ratio #home-slider .slide--video .jsAfterVideo:hover {
  background: #FFF;
  color: #f8541f;
}
#owl-ratio #home-slider .slide--video .btn_container.active {
  height: 100%;
  z-index: 9;
}
#owl-ratio #home-slider .slide--video .btn_container.active .jsAfterVideo {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1200px) {
  #owl-ratio #home-slider .slide--video .slide__overlay .overlay__c h3 {
    font-size: 64px;
  }
  #owl-ratio #home-slider .slide--video .slide__overlay .overlay__c h3 span {
    font-size: 64px;
  }
  #owl-ratio #home-slider .slide--video .slide__overlay .overlay__c .btns {
    font-size: 28px;
    padding: 30px 50px;
    max-width: 320px;
  }
  #owl-ratio #home-slider .slide--video .jsAfterVideo {
    font-size: 28px;
    padding: 30px 50px;
    max-width: 340px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide--video {
    background: #000;
  }
  #owl-ratio #home-slider .slide--video video {
    width: auto;
  }
  #owl-ratio #home-slider .slide--video .jsVideoHidden {
    width: 100%;
    background: #000;
  }
  #owl-ratio #home-slider .slide--video > img {
    display: none;
  }
}
@media (max-width: 580px) {
  #owl-ratio #home-slider .slide--video .slide__overlay .overlay__c h3 {
    font-size: 48px;
  }
  #owl-ratio #home-slider .slide--video .slide__overlay .overlay__c h3 span {
    font-size: 48px;
  }
  #owl-ratio #home-slider .slide--video .slide__overlay .overlay__c .btns {
    font-size: 24px;
    padding: 20px 40px;
    max-width: 280px;
  }
  #owl-ratio #home-slider .slide--video .jsAfterVideo {
    font-size: 24px;
    padding: 20px 40px;
    max-width: 280px;
  }
}
@media (max-width: 420px) {
  #owl-ratio #home-slider .slide--video .slide__overlay .overlay__c h3 {
    font-size: 32px;
  }
  #owl-ratio #home-slider .slide--video .slide__overlay .overlay__c h3 span {
    font-size: 32px;
  }
  #owl-ratio #home-slider .slide--video .slide__overlay .overlay__c .btns {
    font-size: 18px;
    padding: 15px 30px;
    max-width: 240px;
  }
  #owl-ratio #home-slider .slide--video .jsAfterVideo {
    font-size: 18px;
    padding: 15px 30px;
    max-width: 240px;
  }
}
#owl-ratio #home-slider .slide.slide--lasocki-bags section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: none;
  left: 5%;
  top: 5%;
  right: 5%;
  bottom: 5%;
  transform: none;
  margin: 0;
  text-align: center;
}
#owl-ratio #home-slider .slide.slide--lasocki-bags section h3,
#owl-ratio #home-slider .slide.slide--lasocki-bags section h3 span {
  font-family: bebas, arial, sans-serif;
  color: #FFF;
  font-size: 75px;
  letter-spacing: .2em;
  margin-top: 60px;
}
#owl-ratio #home-slider .slide.slide--lasocki-bags section h4 {
  font-family: bebas, arial, sans-serif;
  color: #FFF;
  font-size: 55px;
  letter-spacing: .2em;
}
#owl-ratio #home-slider .slide.slide--lasocki-bags section img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}
#owl-ratio #home-slider .slide.slide--lasocki-bags section .btns,
#owl-ratio #home-slider .slide.slide--lasocki-bags section .btns span {
  font-family: bebas, arial, sans-serif;
  margin-top: 45px;
  color: #FFF;
  border-color: #FFF;
  font-size: 28px;
  letter-spacing: .2em;
  width: auto;
  padding: 26px 20px;
  min-width: 380px;
}
#owl-ratio #home-slider .slide.slide--lasocki-bags section .btns:hover {
  background: #FFF;
  color: #000;
}
#owl-ratio #home-slider .slide.slide--lasocki-bags section .btns:hover span {
  color: #000;
}
@media (max-width: 1180px) {
  #owl-ratio #home-slider .slide.slide--lasocki-bags section h4 {
    font-size: 36px;
  }
  #owl-ratio #home-slider .slide.slide--lasocki-bags section h3 {
    font-size: 50px;
    margin-top: 40px;
  }
  #owl-ratio #home-slider .slide.slide--lasocki-bags section h3 span {
    font-size: 50px;
  }
  #owl-ratio #home-slider .slide.slide--lasocki-bags section img {
    height: 40px;
  }
  #owl-ratio #home-slider .slide.slide--lasocki-bags section .btns {
    margin-top: 30px;
    font-size: 24px;
    padding: 18px 25px;
  }
  #owl-ratio #home-slider .slide.slide--lasocki-bags section .btns span {
    font-size: 24px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--lasocki-bags section h4 {
    font-size: 32px;
    letter-spacing: .15em;
  }
  #owl-ratio #home-slider .slide.slide--lasocki-bags section h3 {
    font-size: 46px;
    margin-top: 30px;
    letter-spacing: .15em;
  }
  #owl-ratio #home-slider .slide.slide--lasocki-bags section h3 span {
    font-size: 46px;
  }
  #owl-ratio #home-slider .slide.slide--lasocki-bags section img {
    height: 34px;
  }
  #owl-ratio #home-slider .slide.slide--lasocki-bags section .btns {
    margin-top: 20px;
    font-size: 22px;
  }
  #owl-ratio #home-slider .slide.slide--lasocki-bags section .btns span {
    font-size: 22px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--lasocki-bags section {
    width: auto;
    padding: 0;
  }
  #owl-ratio #home-slider .slide.slide--lasocki-bags section .btns {
    position: static;
    width: auto;
    min-width: 0;
    max-width: 100%;
  }
}
#owl-ratio #home-slider .slide.slide--fun-contest section {
  margin-top: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  max-width: 430px;
  text-align: center;
}
#owl-ratio #home-slider .slide.slide--fun-contest section h3 {
  display: inline-block;
  font-size: 37px;
  line-height: 42px;
  color: #FFF;
  margin-bottom: 40px;
  font-family: ainslie, arial, sans-serif;
}
#owl-ratio #home-slider .slide.slide--fun-contest section .btns {
  border-color: #FFF;
  color: #FFF;
}
#owl-ratio #home-slider .slide.slide--fun-contest section .btns:hover {
  border-color: #000;
}
#owl-ratio #home-slider .slide.slide--fun-contest section .btns > img {
  display: inline-block;
  width: 20px;
  height: 24px;
  vertical-align: middle;
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--fun-contest section h3 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (max-width: 480px) {
  #owl-ratio #home-slider .slide.slide--fun-contest section h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  #owl-ratio #home-slider .slide.slide--fun-contest section .btns {
    letter-spacing: .2em;
  }
}
#owl-ratio #home-slider .slide.slide--goformore > section,
#owl-ratio #home-slider .slide.slide--kidsandyoung > section,
#owl-ratio #home-slider .slide--boots-bag > section {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  margin-top: 0;
  width: 100%;
  max-width: 620px;
}
#owl-ratio #home-slider .slide.slide--goformore > section .slide__logo,
#owl-ratio #home-slider .slide.slide--kidsandyoung > section .slide__logo,
#owl-ratio #home-slider .slide--boots-bag > section .slide__logo {
  width: 100%;
  display: block;
  max-width: 615px;
  margin: 0 auto;
}
#owl-ratio #home-slider .slide.slide--goformore > section .btns,
#owl-ratio #home-slider .slide.slide--kidsandyoung > section .btns,
#owl-ratio #home-slider .slide--boots-bag > section .btns {
  border-color: #FFF;
  color: #FFF;
  font-size: 28px;
  letter-spacing: 12px;
  padding: 28px 65px;
  width: auto;
  margin-top: 20px;
}
#owl-ratio #home-slider .slide.slide--goformore > section .btns:hover,
#owl-ratio #home-slider .slide.slide--kidsandyoung > section .btns:hover,
#owl-ratio #home-slider .slide--boots-bag > section .btns:hover {
  background: #FFF;
  color: #000;
}
@media (max-width: 1200px) {
  #owl-ratio #home-slider .slide.slide--goformore > section .slide__logo,
  #owl-ratio #home-slider .slide.slide--kidsandyoung > section .slide__logo,
  #owl-ratio #home-slider .slide--boots-bag > section .slide__logo {
    max-width: 440px;
  }
  #owl-ratio #home-slider .slide.slide--goformore > section .btns,
  #owl-ratio #home-slider .slide.slide--kidsandyoung > section .btns,
  #owl-ratio #home-slider .slide--boots-bag > section .btns {
    font-size: 20px;
    padding: 20px 45px;
  }
}
@media (max-width: 768px) {
  #owl-ratio #home-slider .slide.slide--goformore > section .slide__logo,
  #owl-ratio #home-slider .slide.slide--kidsandyoung > section .slide__logo,
  #owl-ratio #home-slider .slide--boots-bag > section .slide__logo {
    max-width: 320px;
  }
  #owl-ratio #home-slider .slide.slide--goformore > section .btns,
  #owl-ratio #home-slider .slide.slide--kidsandyoung > section .btns,
  #owl-ratio #home-slider .slide--boots-bag > section .btns {
    font-size: 16px;
    padding: 16px 37px;
  }
}
@media (max-width: 480px) {
  #owl-ratio #home-slider .slide.slide--goformore .slide__bg,
  #owl-ratio #home-slider .slide.slide--kidsandyoung .slide__bg,
  #owl-ratio #home-slider .slide--boots-bag .slide__bg {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  }
  #owl-ratio #home-slider .slide.slide--goformore > section .slide__logo,
  #owl-ratio #home-slider .slide.slide--kidsandyoung > section .slide__logo,
  #owl-ratio #home-slider .slide--boots-bag > section .slide__logo {
    max-width: 230px;
  }
  #owl-ratio #home-slider .slide.slide--goformore > section .btns,
  #owl-ratio #home-slider .slide.slide--kidsandyoung > section .btns,
  #owl-ratio #home-slider .slide--boots-bag > section .btns {
    font-size: 12px;
    letter-spacing: .4em;
    padding: 12px 28px;
    position: static;
    display: inline-block;
  }
}
#owl-ratio #home-slider .slide.slide--boots-bag > section {
  max-width: 780px;
}
#owl-ratio #home-slider .slide.slide--boots-bag > section h3 {
  font-family: ainslie, arial, sans-serif;
  font-size: 60px;
  color: #fff;
}
#owl-ratio #home-slider .slide.slide--boots-bag > section .btns {
  margin-top: 35px;
  padding: 21px 70px;
  letter-spacing: 6px;
  font-size: 26px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  #owl-ratio #home-slider .slide.slide--boots-bag > section {
    max-width: 100%;
    margin-top: 0;
  }
  #owl-ratio #home-slider .slide.slide--boots-bag > section h3 {
    font-size: 48px;
  }
  #owl-ratio #home-slider .slide.slide--boots-bag > section .btns {
    margin-top: 25px;
    padding: 15px 70px;
    font-size: 22px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--boots-bag > section {
    top: 50%;
    transform: translate(0, -50%);
  }
  #owl-ratio #home-slider .slide.slide--boots-bag > section a {
    display: inline-block;
    position: static;
  }
}
@media (max-width: 480px) {
  #owl-ratio #home-slider .slide.slide--boots-bag .slide__bg {
    -webkit-transform: translate(-40%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-40%, -50%);
    transform: translate(-40%, -50%);
    -webkit-transform: translate(-40%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-40%, -50%) translateZ(0) scale(1, 1);
    -o-transform: translate(-40%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-40%, -50%) translateZ(0) scale(1, 1);
    transform: translate(-40%, -50%) translateZ(0) scale(1, 1);
  }
  #owl-ratio #home-slider .slide.slide--boots-bag > section h3 {
    font-size: 38px;
  }
  #owl-ratio #home-slider .slide.slide--boots-bag > section .btns {
    font-size: 13px;
    letter-spacing: .4em;
    padding: 15px 50px;
  }
}
#owl-ratio #home-slider .slide.slide--backtoschool > section {
  position: absolute;
  top: 68%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  margin-top: 0;
  width: 100%;
  max-width: 770px;
}
#owl-ratio #home-slider .slide.slide--backtoschool > section .slide__logo {
  width: 100%;
  display: block;
  max-width: 40vw;
  margin: 0 auto;
}
#owl-ratio #home-slider .slide.slide--backtoschool > section .slide__logo-si {
  transform: translateY(-1.5vw);
}
#owl-ratio #home-slider .slide.slide--backtoschool > section .btns {
  border-color: #FFF;
  color: #FFF;
  font-size: 1.5vw;
  letter-spacing: 0.2em;
  padding: 1vw 1.65vw;
  width: auto;
  margin-top: 4vw;
}
#owl-ratio #home-slider .slide.slide--backtoschool > section .btns:hover {
  background: #FFF;
  color: #005989;
}
#owl-ratio #home-slider .slide.slide--backtoschool > section .btns-hu,
#owl-ratio #home-slider .slide.slide--backtoschool > section .btns-ru {
  margin-top: 6vw;
}
#owl-ratio #home-slider .slide.slide--backtoschool > section .btns-lt,
#owl-ratio #home-slider .slide.slide--backtoschool > section .btns-lv {
  margin-top: 5vw;
}
#owl-ratio #home-slider .slide.slide--backtoschool > section .cover {
  display: none;
}
@media (max-width: 1600px) {
  #owl-ratio #home-slider .slide.slide--backtoschool > section {
    top: 67%;
  }
}
@media (max-width: 1300px) {
  #owl-ratio #home-slider .slide.slide--backtoschool .slide__bg {
    transform: translateY(-10px);
  }
  #owl-ratio #home-slider .slide.slide--backtoschool > section {
    top: 65%;
  }
}
@media (max-width: 1200px) {
  #owl-ratio #home-slider .slide.slide--backtoschool > section {
    top: 66%;
  }
  #owl-ratio #home-slider .slide.slide--backtoschool > section .slide__logo {
    max-width: 370px;
  }
  #owl-ratio #home-slider .slide.slide--backtoschool > section .slide__logo-si {
    transform: translateY(-15px);
  }
  #owl-ratio #home-slider .slide.slide--backtoschool > section .btns {
    padding: 10px 25px;
    font-size: 18px;
  }
  #owl-ratio #home-slider .slide.slide--backtoschool > section .btns-lt {
    padding: 10px 12px;
  }
  #owl-ratio #home-slider .slide.slide--backtoschool > section .btns-lv,
  #owl-ratio #home-slider .slide.slide--backtoschool > section .btns-ru {
    padding: 10px;
    font-size: 16px;
  }
}
@media (max-width: 1100px) {
  #owl-ratio #home-slider .slide.slide--backtoschool > section {
    top: 65%;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--backtoschool > section {
    top: 68%;
  }
}
@media (max-width: 768px) {
  #owl-ratio #home-slider .slide.slide--backtoschool > section .slide__logo {
    max-width: 320px;
  }
  #owl-ratio #home-slider .slide.slide--backtoschool > section .btns {
    font-size: 16px;
    padding: 10px 20px;
  }
  #owl-ratio #home-slider .slide.slide--backtoschool > section .btns-lt,
  #owl-ratio #home-slider .slide.slide--backtoschool > section .btns-lv,
  #owl-ratio #home-slider .slide.slide--backtoschool > section .btns-ru {
    padding: 10px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--backtoschool .slide__bg {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  }
  #owl-ratio #home-slider .slide.slide--backtoschool .cover {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
  }
  #owl-ratio #home-slider .slide.slide--backtoschool section {
    top: 64%;
  }
  #owl-ratio #home-slider .slide.slide--backtoschool section a {
    position: static;
    display: inline-block;
  }
  #owl-ratio #home-slider .slide.slide--backtoschool section .btns {
    margin-top: 55px;
  }
}
@media (max-width: 480px) {
  #owl-ratio #home-slider .slide.slide--backtoschool .slide__bg {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  }
  #owl-ratio #home-slider .slide.slide--backtoschool > section .slide__logo {
    max-width: 230px;
  }
  #owl-ratio #home-slider .slide.slide--backtoschool > section .btns {
    margin-top: 65px;
    font-size: 12px;
    letter-spacing: .4em;
    padding: 12px 28px;
    position: static;
    display: inline-block;
  }
  #owl-ratio #home-slider .slide.slide--backtoschool > section .btns-lt,
  #owl-ratio #home-slider .slide.slide--backtoschool > section .btns-lv,
  #owl-ratio #home-slider .slide.slide--backtoschool > section .btns-ru {
    padding: 10px 8px;
  }
  #owl-ratio #home-slider .slide.slide--backtoschool > section .btns-ru {
    margin-top: 75px;
  }
}
#owl-ratio #home-slider .slide.slide--kidsandyoung h3 {
  color: #fff;
  font-size: 37px;
  font-family: ainslie, arial, sans-serif;
}
#owl-ratio #home-slider .slide.slide--kidsandyoung > section .btns {
  padding: 30px 29px 26px;
  cursor: pointer;
  margin-top: 45px;
  letter-spacing: 7px;
}
@media (max-width: 1200px) {
  #owl-ratio #home-slider .slide.slide--kidsandyoung > section .btns {
    padding: 20px 19px 16px;
    margin-top: 25px;
  }
}
@media (max-width: 350px) {
  #owl-ratio #home-slider .slide.slide--kidsandyoung > section .btns {
    font-size: 18px;
    margin-top: 5px;
  }
}
#owl-ratio #home-slider .slide.slide--stylowe_zakupy section {
  left: auto;
  right: 0;
  margin-top: 0;
  height: 100%;
  width: 41%;
  max-width: none;
  padding: 0 20px;
  background-color: #fbc55d;
  top: 0;
}
#owl-ratio #home-slider .slide.slide--stylowe_zakupy section .container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  left: 0;
  right: 0;
}
#owl-ratio #home-slider .slide.slide--stylowe_zakupy section h3 {
  color: #FFF;
  font-family: ainslie, arial, sans-serif;
  font-size: 60px;
  line-height: 62px;
  letter-spacing: 0.3vw;
  text-transform: uppercase;
  font-family: bebas, arial, sans-serif;
}
#owl-ratio #home-slider .slide.slide--stylowe_zakupy section p {
  padding: 21px 0 30px 0;
  color: #FFF;
  font-family: ainslie, arial, sans-serif;
  font-size: 18px;
  line-height: 25px;
}
#owl-ratio #home-slider .slide.slide--stylowe_zakupy section p:first-of-type {
  color: #000;
}
#owl-ratio #home-slider .slide.slide--stylowe_zakupy section p.small-info {
  color: #fff;
  font-size: 15px;
  position: absolute;
  bottom: -201px;
  left: 0;
  right: 0;
}
@media (max-width: 1780px) {
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section h3 {
    font-size: 50px;
    line-height: 52px;
  }
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section p.small-info {
    bottom: -146px;
  }
}
@media (max-width: 1628px) {
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section p.small-info {
    bottom: -106px;
  }
}
@media (max-width: 1510px) {
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section h3 {
    letter-spacing: 0.1vw;
  }
}
@media (max-width: 1469px) {
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section p.small-info {
    bottom: -70px;
  }
}
@media (max-width: 1400px) {
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section h3 {
    font-size: 40px;
    line-height: 42px;
  }
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section p {
    font-size: 16px;
  }
}
@media (max-width: 1305px) {
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section {
    width: 51%;
  }
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section p.small-info {
    bottom: -40px;
  }
}
@media (max-width: 1280px) {
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section p {
    padding: 15px 0;
    line-height: 28px;
  }
}
@media (max-width: 1200px) and (min-width: 990px) {
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section {
    width: 53%;
  }
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section h3 {
    font-size: 30px;
    line-height: 28px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy {
    background: #fe9600;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #fbc55d 0%, #fbc55d 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #fbc55d 0%, #fbc55d 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #fbc55d 0%, #fbc55d 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbc55d', endColorstr='#fbc55d', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
  }
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy .desktop {
    opacity: 0;
  }
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    margin-top: 0;
    width: 100%;
  }
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section h3 {
    font-size: 32px;
    line-height: 30px;
  }
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section p {
    padding: 20px 0 30px 0;
    color: #FFF;
    font-family: ainslie, arial, sans-serif;
    font-size: 21px;
    line-height: 28px;
  }
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section p.small-info {
    bottom: -60px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section {
    top: 50%;
    bottom: auto;
  }
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section h3 {
    font-size: 24px;
    line-height: 28px;
  }
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section p {
    padding-top: 18px;
    font-size: 15px;
    line-height: 24px;
  }
  #owl-ratio #home-slider .slide.slide--stylowe_zakupy section p.small-info {
    font-size: 12px;
    bottom: -76px;
  }
}
#owl-ratio #home-slider .slide.slide--neo section {
  left: auto;
  right: 0;
  margin-top: 0;
  width: 41%;
  max-width: none;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  padding: 0 20px;
}
#owl-ratio #home-slider .slide.slide--neo section h3 {
  color: #FFF;
  font-family: ainslie, arial, sans-serif;
  font-size: 37px;
  line-height: 42px;
  text-transform: uppercase;
}
#owl-ratio #home-slider .slide.slide--neo section p {
  font-family: ainslie, arial, sans-serif;
  font-size: 25px;
  color: #FFF;
  line-height: 31px;
  padding: 20px 0 30px 0;
}
#owl-ratio #home-slider .slide.slide--neo .btns {
  color: #FFF;
  border-color: #FFF;
  width: auto;
  letter-spacing: 0.2em;
  padding: 22px 30px;
  font-size: 32px;
}
#owl-ratio #home-slider .slide.slide--neo .btns:hover {
  background: #FFF;
  color: #000;
}
@media (max-width: 1280px) {
  #owl-ratio #home-slider .slide.slide--neo section p {
    padding: 15px 0;
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 1200px) and (min-width: 990px) {
  #owl-ratio #home-slider .slide.slide--neo section {
    margin-top: -30px;
  }
  #owl-ratio #home-slider .slide.slide--neo section h3 {
    font-size: 34px;
    line-height: 38px;
  }
  #owl-ratio #home-slider .slide.slide--neo section p {
    font-size: 18px;
    line-height: 24px;
  }
  #owl-ratio #home-slider .slide.slide--neo section .btns {
    padding: 18px 30px;
    font-size: 19px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--neo {
    background: #b9d536;
    /* Old browsers */
    background: -moz-linear-gradient(45deg, #b9d536 0%, #09b49f 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #b9d536 0%, #09b49f 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, #b9d536 0%, #09b49f 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b9d536', endColorstr='#09b49f', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
  }
  #owl-ratio #home-slider .slide.slide--neo .desktop {
    opacity: 0;
  }
  #owl-ratio #home-slider .slide.slide--neo section {
    left: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    margin-top: 0;
    width: 100%;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--neo section {
    top: 50%;
    bottom: auto;
  }
  #owl-ratio #home-slider .slide.slide--neo section .btns {
    position: static;
  }
}
@media (max-width: 580px) {
  #owl-ratio #home-slider .slide.slide--neo section h3 {
    font-size: 24px;
    line-height: 28px;
  }
  #owl-ratio #home-slider .slide.slide--neo section p {
    font-size: 18px;
    line-height: 24px;
  }
  #owl-ratio #home-slider .slide.slide--neo section .btns {
    padding: 18px 30px;
    font-size: 19px;
  }
}
#owl-ratio #home-slider .slide.slide--sprandi {
  background-color: #0076c0;
}
#owl-ratio #home-slider .slide.slide--sprandi section {
  max-width: 40%;
  margin-top: 0;
  width: 100%;
  left: auto;
  right: 0;
  transform: translateY(-50%);
  padding-right: 10px;
}
#owl-ratio #home-slider .slide.slide--sprandi section > img {
  width: auto;
  margin: 0 auto;
}
#owl-ratio #home-slider .slide.slide--sprandi section h3 {
  color: #FFF;
  font-family: ainslie, arial, sans-serif;
  font-size: 38px;
  line-height: 42px;
  margin-top: 50px;
}
#owl-ratio #home-slider .slide.slide--sprandi section p {
  font-size: 25px;
  line-height: 32px;
  color: #FFF;
  font-family: ainslie, arial, sans-serif;
  padding: 35px 0;
}
#owl-ratio #home-slider .slide.slide--sprandi section .btns {
  border-color: #FFF;
  color: #FFF;
  padding: 22px 70px;
  width: auto;
  font-size: 32px;
  letter-spacing: .2em;
}
#owl-ratio #home-slider .slide.slide--sprandi section .btns:hover {
  background-color: #FFF;
  color: #0076c0;
}
@media (max-width: 1580px) {
  #owl-ratio #home-slider .slide.slide--sprandi section h3 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 30px;
  }
}
@media (max-width: 1280px) {
  #owl-ratio #home-slider .slide.slide--sprandi section > img {
    max-height: 70px;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section h3 {
    font-size: 28px;
    line-height: 32px;
    margin-top: 30px;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section p {
    font-size: 20px;
    line-height: 24px;
    padding: 25px 0;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section .btns {
    padding: 16px 40px;
    font-size: 28px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--sprandi .desktop {
    opacity: 0;
    visibility: hidden;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section {
    right: 5%;
    left: 5%;
    max-width: 90%;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section h3 {
    margin-top: 20px;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section p {
    padding: 15px 0;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section .btns {
    padding: 10px 30px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #owl-ratio #home-slider .slide.slide--sprandi section > img {
    max-height: 60px;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section h3 {
    font-size: 22px;
    line-height: 1;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section p {
    padding: 15px 0;
    font-size: 16px;
    line-height: 1;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section .btns {
    padding: 15px 30px;
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--sprandi section {
    bottom: 10px;
    transform: none;
  }
}
#owl-ratio #home-slider .slide.slide--club-hr .mobile {
  display: none;
}
#owl-ratio #home-slider .slide.slide--club-hr section {
  max-width: 690px;
  width: 100%;
  margin-top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
#owl-ratio #home-slider .slide.slide--club-hr section h3 {
  font-family: ainslie, arial, sans-serif;
  color: #FFF;
  font-size: 36px;
  margin: 0;
}
#owl-ratio #home-slider .slide.slide--club-hr section p {
  font-family: ainslie, arial, sans-serif;
  margin-top: 30px;
  font-size: 21px;
  padding: 0;
  color: #FFF;
}
#owl-ratio #home-slider .slide.slide--club-hr section .circles {
  margin: 50px auto;
  display: block;
  max-width: 100%;
}
#owl-ratio #home-slider .slide.slide--club-hr section .btns {
  color: #FFF;
  padding: 18px 35px;
  border-color: #FFF;
  font-size: 45px;
  width: auto;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: ainslie, arial, sans-serif;
}
#owl-ratio #home-slider .slide.slide--club-hr section .btns:hover {
  background: #f8541f;
  border-color: #f8541f;
}
#owl-ratio #home-slider .slide.slide--club-hr .small {
  font-family: ainslie, arial, sans-serif;
  display: inline;
  border: solid #FFF;
  border-width: 0 0 1px 0;
  position: absolute;
  bottom: 40px;
  left: 50%;
  color: #FFF;
  padding-bottom: 2px;
  font-size: 16px;
  -webkit-transform: translateX(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#owl-ratio #home-slider .slide.slide--club-hr .small:hover {
  color: #f8541f;
  border-color: #f8541f;
}
@media (max-width: 1600px) {
  #owl-ratio #home-slider .slide.slide--club-hr section p {
    margin-top: 10px;
  }
  #owl-ratio #home-slider .slide.slide--club-hr section .circles {
    margin: 20px auto;
  }
}
@media (max-width: 1380px) {
  #owl-ratio #home-slider .slide.slide--club-hr section .circles {
    max-width: 550px;
  }
  #owl-ratio #home-slider .slide.slide--club-hr section .btns {
    font-size: 36px;
  }
}
@media (max-width: 1220px) {
  #owl-ratio #home-slider .slide.slide--club-hr section .circles {
    max-width: 400px;
  }
  #owl-ratio #home-slider .slide.slide--club-hr section .btns {
    font-size: 28px;
  }
  #owl-ratio #home-slider .slide.slide--club-hr .small {
    bottom: 20px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--club-hr .desktop {
    display: none!important;
  }
  #owl-ratio #home-slider .slide.slide--club-hr .mobile {
    display: block;
  }
  #owl-ratio #home-slider .slide.slide--club-hr section h3 {
    font-size: 28px;
  }
  #owl-ratio #home-slider .slide.slide--club-hr section p {
    font-size: 16px;
    margin-top: 0;
  }
  #owl-ratio #home-slider .slide.slide--club-hr section .circles {
    max-width: 320px;
    margin: 10px auto;
  }
  #owl-ratio #home-slider .slide.slide--club-hr section .btns {
    font-size: 24px;
    padding: 10px 20px;
  }
  #owl-ratio #home-slider .slide.slide--club-hr .small {
    bottom: 10px;
    font-size: 12px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--club-hr section {
    top: 50%;
    margin-top: -25px;
  }
  #owl-ratio #home-slider .slide.slide--club-hr section .btns {
    position: static;
    display: block;
    width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  #owl-ratio #home-slider .slide.slide--club-hr section {
    top: 50%;
    margin-top: 10px;
    height: 100%;
  }
  #owl-ratio #home-slider .slide.slide--club-hr section h3 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  #owl-ratio #home-slider .slide.slide--club-hr section .circles {
    margin: 15px auto;
    width: 100%;
  }
  #owl-ratio #home-slider .slide.slide--club-hr section .btns {
    position: static;
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    letter-spacing: 0;
    font-size: 19px;
  }
}
#owl-ratio #home-slider .slide.slide--members {
  color: #FFF;
}
#owl-ratio #home-slider .slide.slide--members .mobile {
  display: none;
}
#owl-ratio #home-slider .slide.slide--members .slide_small {
  display: block;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  font-family: ainslie, arial, sans-serif;
  bottom: 40px;
  opacity: 0.5;
  font-size: 16px;
}
#owl-ratio #home-slider .slide.slide--members section {
  width: 100%;
  max-width: 960px;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
#owl-ratio #home-slider .slide.slide--members section h3 {
  font-size: 36px;
  line-height: 42px;
}
#owl-ratio #home-slider .slide.slide--members section p {
  font-size: 21px;
  line-height: 26px;
}
#owl-ratio #home-slider .slide.slide--members section h3,
#owl-ratio #home-slider .slide.slide--members section p {
  color: #FFF;
  font-family: ainslie, arial, sans-serif;
}
#owl-ratio #home-slider .slide.slide--members section a {
  width: auto;
  padding: 20px 40px;
  text-transform: uppercase;
  font-size: 45px;
  letter-spacing: 0;
  color: #FFF;
  border-color: #FFF;
  font-family: ainslie, arial, sans-serif;
}
#owl-ratio #home-slider .slide.slide--members section a:hover {
  background: #FFF;
  color: #f8541f;
}
@media (max-width: 1200px) {
  #owl-ratio #home-slider .slide.slide--members section {
    max-width: 960px;
    margin-top: 0;
  }
  #owl-ratio #home-slider .slide.slide--members section a {
    font-size: 30px;
  }
  #owl-ratio #home-slider .slide.slide--members section h3 {
    font-size: 26px;
    line-height: 32px;
  }
  #owl-ratio #home-slider .slide.slide--members section p {
    font-size: 16px;
    line-height: 20px;
  }
  #owl-ratio #home-slider .slide.slide--members .slide_small {
    font-size: 12px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--members .desktop {
    display: none!important;
  }
  #owl-ratio #home-slider .slide.slide--members .mobile {
    display: block;
  }
  #owl-ratio #home-slider .slide.slide--members .slide_small {
    bottom: 20px;
  }
  #owl-ratio #home-slider .slide.slide--members section {
    margin-top: -20px;
  }
  #owl-ratio #home-slider .slide.slide--members section a {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  #owl-ratio #home-slider .slide.slide--members section a {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--members section {
    margin-top: 0;
    transform: none;
    left: 0;
    top: 0;
    padding: 40px 0;
  }
  #owl-ratio #home-slider .slide.slide--members section h3 {
    font-size: 20px;
    line-height: 24px;
  }
  #owl-ratio #home-slider .slide.slide--members section a {
    bottom: 50px;
  }
  #owl-ratio #home-slider .slide.slide--members section p {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 580px) {
  #owl-ratio #home-slider .slide.slide--members section {
    padding: 20px 2%;
  }
  #owl-ratio #home-slider .slide.slide--members section h3 {
    font-size: 18px;
    line-height: 24px;
  }
  #owl-ratio #home-slider .slide.slide--members section a {
    bottom: 50px;
  }
  #owl-ratio #home-slider .slide.slide--members section p {
    font-size: 14px;
    line-height: 18px;
  }
  #owl-ratio #home-slider .slide.slide--members section br {
    display: none;
  }
}
#owl-ratio #home-slider .slide--go-for-more section {
  max-width: 700px;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
#owl-ratio #home-slider .slide--go-for-more section img {
  margin-bottom: 10px;
}
#owl-ratio #home-slider .slide--go-for-more section a {
  padding: 25px 2px 25px 10px;
  color: #FFF;
  border-color: #FFF;
  font-size: 28px;
}
#owl-ratio #home-slider .slide--go-for-more section a:hover {
  color: #000;
  background: #FFF;
  border-color: #FFF;
}
@media only screen and (max-width: 1200px) and (min-width: 900px) {
  #owl-ratio #home-slider .slide--go-for-more section {
    margin-top: 0!important;
  }
}
@media only screen and (max-width: 899px) and (min-width: 600px) {
  #owl-ratio #home-slider .slide--go-for-more section {
    max-width: 305px;
    margin-top: 0!important;
  }
  #owl-ratio #home-slider .slide--go-for-more section a.btns {
    max-width: 260px;
  }
}
@media only screen and (max-width: 700px) {
  #owl-ratio #home-slider .slide--go-for-more > img {
    left: 50%;
    -webkit-transform: translateX(-50%) translateZ(0) scale(1, 1);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #owl-ratio #home-slider .slide--go-for-more section {
    left: 50%!important;
    bottom: auto!important;
    top: 50%!important;
  }
  #owl-ratio #home-slider .slide--go-for-more section a.btns {
    display: inline-block;
    width: auto;
    position: static;
    margin: 0 auto;
    padding: 10px 16px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 480px) {
  #owl-ratio #home-slider .slide--go-for-more section img {
    max-width: 100%!important;
    margin-bottom: 10px!important;
  }
  #owl-ratio #home-slider .slide--go-for-more section a.btns {
    font-size: 12px;
    letter-spacing: 4px;
  }
}
#owl-ratio #home-slider .slide.slide--goformore-multi .cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 700px) {
  #owl-ratio #home-slider .slide.slide--goformore-multi .cover {
    display: none;
  }
}
#owl-ratio #home-slider .slide.slide--goformore-multi > section {
  top: 20px;
  left: 0;
  max-width: 100%;
  padding: 0 50px;
  transform: translate(0, 0);
}
@media (min-width: 700px) {
  #owl-ratio #home-slider .slide.slide--goformore-multi > section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
#owl-ratio #home-slider .slide.slide--goformore-multi > section .links {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 700px) {
  #owl-ratio #home-slider .slide.slide--goformore-multi > section .links {
    flex-direction: row;
  }
}
@media (min-width: 900px) {
  #owl-ratio #home-slider .slide.slide--goformore-multi > section .links {
    flex-wrap: nowrap;
  }
}
#owl-ratio #home-slider .slide.slide--goformore-multi > section .links__btn {
  position: static;
  padding: 17px 25px;
  font-size: 16px;
  letter-spacing: 0.3em;
}
@media (min-width: 700px) {
  #owl-ratio #home-slider .slide.slide--goformore-multi > section .links__btn {
    margin-right: 27px;
  }
}
@media (min-width: 1200px) {
  #owl-ratio #home-slider .slide.slide--goformore-multi > section .links__btn {
    font-size: 1.34vw;
    padding: 1.4vw 2.5vw;
  }
}
#owl-ratio #home-slider .slide.slide--goformore-multi > section .links__btn:last-of-type {
  margin-right: 0;
}
#owl-ratio #home-slider .slide.slide--contest-end {
  position: relative;
}
#owl-ratio #home-slider .slide.slide--contest-end section {
  max-width: 760px;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 0;
}
#owl-ratio #home-slider .slide.slide--contest-end section h3 {
  color: #FFF;
  font-family: ainslie, arial, sans-serif;
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
}
#owl-ratio #home-slider .slide.slide--contest-end section p {
  font-family: ainslie, arial, sans-serif;
  font-size: 20px;
  color: #FFF;
  margin-bottom: 20px;
}
#owl-ratio #home-slider .slide.slide--contest-end section a {
  width: auto;
  font-size: 45px;
  font-family: ainslie, arial, sans-serif;
  color: #FFF;
  border: 2px solid #FFF;
  text-transform: uppercase;
  padding: 30px 50px;
  letter-spacing: normal;
}
#owl-ratio #home-slider .slide.slide--contest-end section a:hover {
  background: #FFF;
  color: #f8541f;
}
#owl-ratio #home-slider .slide.slide--contest-end .mobile {
  display: none;
}
@media (max-width: 1200px) {
  #owl-ratio #home-slider .slide.slide--contest-end section a {
    font-size: 32px;
    padding: 20px 40px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--contest-end section h3 {
    font-size: 28px;
    line-height: 32px;
  }
  #owl-ratio #home-slider .slide.slide--contest-end .desktop {
    display: none!important;
  }
  #owl-ratio #home-slider .slide.slide--contest-end .mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  #owl-ratio #home-slider .slide.slide--contest-end section {
    min-height: 70%;
  }
  #owl-ratio #home-slider .slide.slide--contest-end section h3 {
    font-size: 24px;
    line-height: 28px;
  }
  #owl-ratio #home-slider .slide.slide--contest-end section a {
    font-size: 24px;
    position: static;
  }
}
@media (max-width: 480px) {
  #owl-ratio #home-slider .slide.slide--contest-end section h3 {
    font-size: 18px;
    line-height: 24px;
  }
  #owl-ratio #home-slider .slide.slide--contest-end section p {
    font-size: 16px;
    line-height: 20px;
  }
  #owl-ratio #home-slider .slide.slide--contest-end section a {
    font-size: 20px;
  }
}
#owl-ratio #home-slider .slide.slide--contest section {
  max-width: 800px;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 0;
  left: 25%;
}
#owl-ratio #home-slider .slide.slide--contest section h3 {
  color: #FFF;
  font-family: ainslie, arial, sans-serif;
  font-size: 73px;
  text-transform: uppercase;
}
#owl-ratio #home-slider .slide.slide--contest section h3 span {
  font-family: ainslie, arial, sans-serif;
  color: #f8541f;
  font-size: 73px;
}
#owl-ratio #home-slider .slide.slide--contest section p {
  color: #FFF;
  font-family: ainslie, arial, sans-serif;
  font-size: 46px;
  text-transform: uppercase;
  line-height: normal;
}
#owl-ratio #home-slider .slide.slide--contest section .btns {
  padding: 25px 40px;
  background: none;
  color: #FFF;
  border: 1px solid #FFF;
  height: auto;
  font-size: 45px;
  letter-spacing: 0;
  text-transform: uppercase;
  width: auto;
  display: inline-block;
  text-align: center;
  margin: 60px auto 0 auto;
  font-family: ainslie, arial, sans-serif;
}
#owl-ratio #home-slider .slide.slide--contest section .btns:hover {
  background: #FFF;
  color: #f8541f;
}
#owl-ratio #home-slider .slide.slide--contest .mobile {
  display: none;
}
@media (max-width: 1600px) {
  #owl-ratio #home-slider .slide.slide--contest section {
    left: 30%;
  }
  #owl-ratio #home-slider .slide.slide--contest section h3 {
    font-size: 52px;
  }
  #owl-ratio #home-slider .slide.slide--contest section h3 span {
    font-size: 52px;
  }
  #owl-ratio #home-slider .slide.slide--contest section p {
    font-size: 38px;
    line-height: 42px;
  }
  #owl-ratio #home-slider .slide.slide--contest section .btns {
    font-size: 40px;
    margin-top: 30px;
  }
}
@media (max-width: 1280px) {
  #owl-ratio #home-slider .slide.slide--contest section {
    max-width: 520px;
    left: 27%;
  }
  #owl-ratio #home-slider .slide.slide--contest section h3 {
    font-size: 46px;
  }
  #owl-ratio #home-slider .slide.slide--contest section h3 span {
    font-size: 46px;
  }
  #owl-ratio #home-slider .slide.slide--contest section p {
    font-size: 30px;
    line-height: 34px;
  }
  #owl-ratio #home-slider .slide.slide--contest section .btns {
    font-size: 30px;
    padding: 30px 50px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--contest section {
    left: 0;
    -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    right: 0;
    max-width: none;
  }
  #owl-ratio #home-slider .slide.slide--contest section h3 {
    font-size: 40px;
  }
  #owl-ratio #home-slider .slide.slide--contest section h3 span {
    font-size: 40px;
  }
  #owl-ratio #home-slider .slide.slide--contest section .btns {
    padding: 20px 50px;
  }
}
@media only screen and (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--contest section {
    -webkit-transform: none translateZ(0) scale(1, 1);
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
  }
  #owl-ratio #home-slider .slide.slide--contest section .btns {
    position: static;
    margin-top: 10px;
  }
}
@media (max-width: 530px) {
  #owl-ratio #home-slider .slide.slide--contest .desktop {
    display: none !important;
  }
  #owl-ratio #home-slider .slide.slide--contest .mobile {
    display: block !important;
  }
  #owl-ratio #home-slider .slide.slide--contest section p {
    font-size: 25px;
    line-height: 28px;
  }
  #owl-ratio #home-slider .slide.slide--contest section .btns {
    font-size: 25px;
    padding: 10px 30px;
  }
}
@media (max-width: 480px) {
  #owl-ratio #home-slider .slide.slide--contest section h3 {
    font-size: 32px;
  }
  #owl-ratio #home-slider .slide.slide--contest section h3 span {
    font-size: 32px;
  }
  #owl-ratio #home-slider .slide.slide--contest p {
    font-size: 20px;
    line-height: 22px;
  }
  #owl-ratio #home-slider .slide.slide--contest .btns {
    margin-top: 20px;
    font-size: 20px;
    padding: 10px 30px;
  }
}
#owl-ratio #home-slider .slide-02 p {
  color: #FFF;
}
#owl-ratio #home-slider .slide-02 section a {
  color: #FFF;
  border: 1px solid #FFF;
  background-color: rgba(255, 255, 255, 0);
}
#owl-ratio #home-slider .slide-02 section a:hover {
  color: #000;
  background-color: #ffffff;
}
#owl-ratio #home-slider .slide-03 p {
  color: #FFF;
}
#owl-ratio #home-slider .slide-03 section p {
  display: block;
  width: 280px;
  margin: 0 auto;
}
#owl-ratio #home-slider .slide-03 section a {
  width: 220px;
  color: #FFF;
  border: 1px solid #FFF;
  background-color: rgba(255, 255, 255, 0);
}
#owl-ratio #home-slider .slide-03 section a:hover {
  color: #000;
  background-color: #ffffff;
}
#owl-ratio #home-slider .fw-2015 section {
  margin-top: -50px;
}
#owl-ratio #home-slider .fw-2015 section p {
  display: block;
  margin: 0 auto;
}
#owl-ratio #home-slider .slide.slide--neo section {
  left: auto;
  right: 0;
  margin-top: 0;
  width: 41%;
  max-width: none;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  padding: 0 20px;
}
#owl-ratio #home-slider .slide.slide--neo section h3 {
  color: #FFF;
  font-family: ainslie, arial, sans-serif;
  font-size: 37px;
  line-height: 42px;
  text-transform: uppercase;
}
#owl-ratio #home-slider .slide.slide--neo section p {
  font-family: ainslie, arial, sans-serif;
  font-size: 25px;
  color: #FFF;
  line-height: 31px;
  padding: 20px 0 30px 0;
}
#owl-ratio #home-slider .slide.slide--neo .btns {
  color: #FFF;
  border-color: #FFF;
  width: auto;
  letter-spacing: 0.2em;
  padding: 22px 30px;
  font-size: 32px;
}
#owl-ratio #home-slider .slide.slide--neo .btns:hover {
  background: #FFF;
  color: #000;
}
@media (max-width: 1280px) {
  #owl-ratio #home-slider .slide.slide--neo section p {
    padding: 15px 0;
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 1200px) and (min-width: 990px) {
  #owl-ratio #home-slider .slide.slide--neo section {
    margin-top: -30px;
  }
  #owl-ratio #home-slider .slide.slide--neo section h3 {
    font-size: 34px;
    line-height: 38px;
  }
  #owl-ratio #home-slider .slide.slide--neo section p {
    font-size: 18px;
    line-height: 24px;
  }
  #owl-ratio #home-slider .slide.slide--neo section .btns {
    padding: 18px 30px;
    font-size: 19px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--neo {
    background: #b9d536;
    /* Old browsers */
    background: -moz-linear-gradient(45deg, #b9d536 0%, #09b49f 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #b9d536 0%, #09b49f 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, #b9d536 0%, #09b49f 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b9d536', endColorstr='#09b49f', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
  }
  #owl-ratio #home-slider .slide.slide--neo .desktop {
    opacity: 0;
  }
  #owl-ratio #home-slider .slide.slide--neo section {
    left: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    margin-top: 0;
    width: 100%;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--neo section {
    top: 50%;
    bottom: auto;
  }
  #owl-ratio #home-slider .slide.slide--neo section .btns {
    position: static;
  }
}
@media (max-width: 580px) {
  #owl-ratio #home-slider .slide.slide--neo section h3 {
    font-size: 24px;
    line-height: 28px;
  }
  #owl-ratio #home-slider .slide.slide--neo section p {
    font-size: 18px;
    line-height: 24px;
  }
  #owl-ratio #home-slider .slide.slide--neo section .btns {
    padding: 18px 30px;
    font-size: 19px;
  }
}
#owl-ratio #home-slider .slide.slide--sprandi {
  background-color: #0076c0;
}
#owl-ratio #home-slider .slide.slide--sprandi section {
  max-width: 40%;
  margin-top: 0;
  width: 100%;
  left: auto;
  right: 0;
  transform: translateY(-50%);
  padding-right: 10px;
}
#owl-ratio #home-slider .slide.slide--sprandi section > img {
  width: auto;
  margin: 0 auto;
}
#owl-ratio #home-slider .slide.slide--sprandi section h3 {
  color: #FFF;
  font-family: ainslie, arial, sans-serif;
  font-size: 38px;
  line-height: 42px;
  margin-top: 50px;
}
#owl-ratio #home-slider .slide.slide--sprandi section p {
  font-size: 25px;
  line-height: 32px;
  color: #FFF;
  font-family: ainslie, arial, sans-serif;
  padding: 35px 0;
}
#owl-ratio #home-slider .slide.slide--sprandi section .btns {
  border-color: #FFF;
  color: #FFF;
  padding: 22px 70px;
  width: auto;
  font-size: 32px;
  letter-spacing: .2em;
}
#owl-ratio #home-slider .slide.slide--sprandi section .btns:hover {
  background-color: #FFF;
  color: #0076c0;
}
@media (max-width: 1580px) {
  #owl-ratio #home-slider .slide.slide--sprandi section h3 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 30px;
  }
}
@media (max-width: 1280px) {
  #owl-ratio #home-slider .slide.slide--sprandi section > img {
    max-height: 70px;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section h3 {
    font-size: 28px;
    line-height: 32px;
    margin-top: 30px;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section p {
    font-size: 20px;
    line-height: 24px;
    padding: 25px 0;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section .btns {
    padding: 16px 40px;
    font-size: 28px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--sprandi .desktop {
    opacity: 0;
    visibility: hidden;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section {
    right: 5%;
    left: 5%;
    max-width: 90%;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section h3 {
    margin-top: 20px;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section p {
    padding: 15px 0;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section .btns {
    padding: 10px 30px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #owl-ratio #home-slider .slide.slide--sprandi section > img {
    max-height: 60px;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section h3 {
    font-size: 22px;
    line-height: 1;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section p {
    padding: 15px 0;
    font-size: 16px;
    line-height: 1;
  }
  #owl-ratio #home-slider .slide.slide--sprandi section .btns {
    padding: 15px 30px;
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--sprandi section {
    bottom: 10px;
    transform: none;
  }
}
#owl-ratio #home-slider .slide.slide--new-collection section {
  max-width: none;
  margin-top: 0;
  left: 15%;
  right: 15%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
#owl-ratio #home-slider .slide.slide--new-collection section img {
  width: auto;
  max-width: 100%;
  margin: 0 auto 90px auto;
}
#owl-ratio #home-slider .slide.slide--new-collection section a {
  color: #FFF;
  border-color: #FFF;
  min-width: 300px;
  width: auto;
  font-size: 36px;
  padding: 18px 30px;
}
#owl-ratio #home-slider .slide.slide--new-collection section a:hover {
  background: #FFF;
  color: #000;
}
@media (max-width: 1280px) {
  #owl-ratio #home-slider .slide.slide--new-collection section img {
    margin-bottom: 50px;
    max-width: 80%;
  }
  #owl-ratio #home-slider .slide.slide--new-collection section a {
    font-size: 28px;
    min-width: 250px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--new-collection section img {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--new-collection section {
    width: auto;
    left: 0;
    right: 0;
  }
  #owl-ratio #home-slider .slide.slide--new-collection section a {
    font-size: 20px;
    min-width: 0;
    position: static;
  }
}
#owl-ratio #home-slider .slide.slide--style-shop section {
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 0;
  left: 28%;
  max-width: 100%;
}
#owl-ratio #home-slider .slide.slide--style-shop section h3 {
  font-family: ainslie, arial, sans-serif;
  font-size: 66px;
  color: #fff;
}
#owl-ratio #home-slider .slide.slide--style-shop section p {
  font-family: ainslie, arial, sans-serif;
  font-size: 25px;
  line-height: 30px;
  color: #fff;
}
#owl-ratio #home-slider .slide.slide--style-shop section .price {
  padding: 10px 0 0px;
  font-family: ProximaNovaA-Bold, arial, sans-serif;
  font-size: 152px;
  line-height: 1;
}
#owl-ratio #home-slider .slide.slide--style-shop section .info {
  padding: 50px 0 0;
  font-size: 15px;
}
#owl-ratio #home-slider .slide.slide--style-shop section .gold {
  color: #eab77e;
}
@media (max-width: 1500px) {
  #owl-ratio #home-slider .slide.slide--style-shop section {
    -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 110px;
  }
  #owl-ratio #home-slider .slide.slide--style-shop section h3 {
    font-size: 56px;
  }
  #owl-ratio #home-slider .slide.slide--style-shop section p {
    padding: 10px 0;
    font-size: 20px;
    line-height: 25px;
  }
  #owl-ratio #home-slider .slide.slide--style-shop section .price {
    padding: 0;
    font-size: 140px;
  }
  #owl-ratio #home-slider .slide.slide--style-shop section .info {
    padding: 0;
  }
}
@media (max-width: 1280px) {
  #owl-ratio #home-slider .slide.slide--style-shop section {
    left: 30px;
  }
  #owl-ratio #home-slider .slide.slide--style-shop section h3 {
    font-size: 46px;
  }
  #owl-ratio #home-slider .slide.slide--style-shop section p {
    font-size: 16px;
    line-height: 23px;
  }
  #owl-ratio #home-slider .slide.slide--style-shop section .info {
    font-size: 14px;
  }
  #owl-ratio #home-slider .slide.slide--style-shop section .price {
    font-size: 130px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--style-shop::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }
  #owl-ratio #home-slider .slide.slide--style-shop section {
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    max-width: none;
    -webkit-transform: 0 -50% translateZ(0) scale(1, 1);
    -moz-transform: 0 -50%;
    -o-transform: 0 -50%;
    -ms-transform: 0 -50%;
    transform: 0 -50%;
    z-index: 2;
  }
  #owl-ratio #home-slider .slide.slide--style-shop section h3 {
    font-size: 36px;
  }
  #owl-ratio #home-slider .slide.slide--style-shop section .price {
    font-size: 80px;
  }
}
@media (max-width: 480px) {
  #owl-ratio #home-slider .slide.slide--style-shop section h3 {
    font-size: 30px;
  }
  #owl-ratio #home-slider .slide.slide--style-shop section .price {
    font-size: 60px;
  }
}
#owl-ratio #home-slider .slide.slide--club-discount .mobile {
  display: none;
}
#owl-ratio #home-slider .slide.slide--club-discount section {
  display: flex;
  flex-direction: row-reverse;
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: 0;
  left: 13%;
  max-width: 100%;
}
#owl-ratio #home-slider .slide.slide--club-discount section .btns {
  width: auto;
  padding: 25px 85px;
  font-size: 32px;
  color: #f0580d;
  border-color: #f0580d;
}
#owl-ratio #home-slider .slide.slide--club-discount section .btn_container--mobile {
  display: none;
}
#owl-ratio #home-slider .slide.slide--club-discount section .discount__info {
  padding: 35px 0;
  border-top: 1px dashed #f0580d;
  border-bottom: 1px dashed #f0580d;
}
#owl-ratio #home-slider .slide.slide--club-discount section .discount__info h3 {
  font-size: 28px;
  font-family: montserratbold, arial, sans-serif;
}
#owl-ratio #home-slider .slide.slide--club-discount section .discount__join {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 95px;
}
#owl-ratio #home-slider .slide.slide--club-discount section .discount__join h3 {
  font-family: montserratlight, arial, sans-serif;
  font-size: 51px;
  padding-bottom: 45px;
}
#owl-ratio #home-slider .slide.slide--club-discount section .discount__join .orange {
  font-family: ProximaNovaA-Bold, arial, sans-serif;
  font-size: 51px;
}
#owl-ratio #home-slider .slide.slide--club-discount section p {
  padding: 20px 0 0;
  font-family: montserratbold, arial, sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: #000;
}
#owl-ratio #home-slider .slide.slide--club-discount section .price {
  padding: 10px 0 0;
  font-family: ProximaNovaA-Bold, arial, sans-serif;
  font-size: 190px;
  line-height: 150px;
}
#owl-ratio #home-slider .slide.slide--club-discount section .info {
  padding: 20px 0 0;
  font-size: 9px;
  line-height: 12px;
}
#owl-ratio #home-slider .slide.slide--club-discount section .orange {
  color: #f0580d;
}
@media (max-width: 1700px) {
  #owl-ratio #home-slider .slide.slide--club-discount section {
    left: 6%;
  }
}
@media (max-width: 1500px) {
  #owl-ratio #home-slider .slide.slide--club-discount section {
    -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 110px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .btns {
    padding: 20px 45px;
    max-width: 100%;
    font-size: 22px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__info {
    padding: 25px 0;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__join {
    margin-left: 50px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__join h3 {
    padding-bottom: 25px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__join h3,
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__join .orange {
    font-size: 40px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section p {
    padding: 10px 0;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .price {
    padding: 0;
    font-size: 140px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .info {
    padding: 0;
  }
}
@media (max-width: 1320px) {
  #owl-ratio #home-slider .slide.slide--club-discount img {
    transform: translateX(12%);
  }
  #owl-ratio #home-slider .slide.slide--club-discount section {
    left: 9%;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .btns {
    padding: 15px 40px;
    font-size: 20px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__join h3,
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__join .orange {
    font-size: 30px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .price {
    font-size: 130px;
    line-height: 120px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--club-discount img {
    transform: translateX(0);
  }
  #owl-ratio #home-slider .slide.slide--club-discount .desktop {
    display: none !important;
  }
  #owl-ratio #home-slider .slide.slide--club-discount .mobile {
    display: block;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section {
    justify-content: center;
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    max-width: none;
    -webkit-transform: 0 -50% translateZ(0) scale(1, 1);
    -moz-transform: 0 -50%;
    -o-transform: 0 -50%;
    -ms-transform: 0 -50%;
    transform: 0 -50%;
    z-index: 2;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__info {
    padding: 15px 0;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__join {
    margin-left: 5%;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .price {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--club-discount section {
    flex-direction: column;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .btns {
    position: static;
    display: inline-block;
    margin-top: 15px;
    padding: 15px 40px;
    font-size: 16px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__join {
    margin-left: 0;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__join h3,
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__join .orange {
    font-size: 20px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__join h3 {
    padding-bottom: 10px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__info {
    margin: 0 auto;
    padding: 10px 0;
    width: 400px;
    max-width: 100%;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .discount__info h3 {
    font-size: 18px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .price {
    font-size: 65px;
    line-height: 55px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section p {
    font-size: 14px;
    line-height: 15px;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .btn_container--desktop {
    display: none;
  }
  #owl-ratio #home-slider .slide.slide--club-discount section .btn_container--mobile {
    display: block;
  }
}
#owl-ratio #home-slider .slide.slide--sale {
  overflow: hidden;
  position: relative;
  height: 100%;
}
#owl-ratio #home-slider .slide.slide--sale section {
  background: #ed1a3b;
  position: absolute;
  margin: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  padding: 40px 20px;
  max-width: 550px;
  width: 100%;
}
#owl-ratio #home-slider .slide.slide--sale section h3 {
  color: #FFF;
  font-family: ProximaNova-Bold, arial, sans-serif;
  font-weight: bold;
  font-size: 35px;
  line-height: 45px;
  letter-spacing: 4px;
  text-align: center;
}
#owl-ratio #home-slider .slide.slide--sale section .percent {
  margin: 40px auto;
  height: 10vw;
  width: auto;
}
#owl-ratio #home-slider .slide.slide--sale section p {
  color: #FFF;
}
#owl-ratio #home-slider .slide.slide--sale section .btns {
  font-family: ainslie, arial, sans-serif;
  text-transform: uppercase;
  color: #FFF;
  border-color: #FFF;
  font-size: 34px;
  letter-spacing: 2px;
}
#owl-ratio #home-slider .slide.slide--sale section .btns:hover {
  background: #FFF;
  color: #ed1a3b;
}
#owl-ratio #home-slider .slide.slide--sale .mobile {
  display: none;
}
#owl-ratio #home-slider .slide.slide--sale .desktop {
  display: block;
}
@media (max-width: 1600px) {
  #owl-ratio #home-slider .slide.slide--sale section h3 {
    font-size: 35px;
    line-height: 45px;
  }
  #owl-ratio #home-slider .slide.slide--sale section .percent {
    margin: 30px auto;
  }
}
@media (max-width: 1366px) {
  #owl-ratio #home-slider .slide.slide--sale section h3 {
    font-size: 30px;
    line-height: 35px;
  }
  #owl-ratio #home-slider .slide.slide--sale section .percent {
    margin: 20px auto;
  }
  #owl-ratio #home-slider .slide.slide--sale section .btns {
    font-size: 28px;
  }
}
@media (max-width: 1180px) {
  #owl-ratio #home-slider .slide.slide--sale section {
    max-height: 90%;
    padding: 20px 20px;
  }
  #owl-ratio #home-slider .slide.slide--sale section .at--font {
    font-size: 25px;
    line-height: 26px;
  }
  #owl-ratio #home-slider .slide.slide--sale section a {
    padding: 14px 10px;
  }
  #owl-ratio #home-slider .slide.slide--sale section .percent {
    margin: 20px auto;
    max-height: 90px;
  }
  #owl-ratio #home-slider .slide.slide--sale section .btns {
    font-size: 18px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--sale .mobile {
    display: block;
  }
  #owl-ratio #home-slider .slide.slide--sale.slide--sale-half .desktop {
    display: none !important;
  }
  #owl-ratio #home-slider .slide.slide--sale section {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
    max-width: none;
    max-height: 100%;
    padding: 40px 20px;
  }
}
@media (max-width: 870px) {
  #owl-ratio #home-slider .slide.slide--sale section {
    padding: 20px 20px;
  }
  #owl-ratio #home-slider .slide.slide--sale section h3.bg--font,
  #owl-ratio #home-slider .slide.slide--sale section h3.at--font {
    font-size: 23px;
    line-height: 26px;
    margin-top: -10px;
  }
  #owl-ratio #home-slider .slide.slide--sale section .percent {
    margin-bottom: 15px;
  }
}
@media (max-width: 640px) {
  #owl-ratio #home-slider .slide.slide--sale section .percent {
    max-height: 85px;
    height: 100%;
  }
}
@media (max-width: 470px) {
  #owl-ratio #home-slider .slide.slide--sale section h3 {
    font-size: 24px;
    line-height: 28px;
  }
  #owl-ratio #home-slider .slide.slide--sale section .percent {
    max-height: 68px;
  }
}
#owl-ratio #home-slider .slide.slide--sale section.slide--double .percent {
  margin: 0 auto;
}
#owl-ratio #home-slider .slide.slide--sale section.slide--double h3 {
  margin-bottom: 15px;
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--sale section.slide--double .percent {
    margin-bottom: 15px;
  }
}
#owl-ratio #home-slider .slide.slide--sale-new section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 991px) {
  #owl-ratio #home-slider .slide.slide--sale-new section {
    width: 28.65vw;
    height: 28.65vw;
    max-width: 100%;
  }
}
#owl-ratio #home-slider .slide.slide--sale-new section h3,
#owl-ratio #home-slider .slide.slide--sale-new section h4 {
  font-family: "gordita", "ProximaNova-Bold";
  color: #fff;
}
#owl-ratio #home-slider .slide.slide--sale-new section h3 {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 33px;
  font-weight: 900;
}
#owl-ratio #home-slider .slide.slide--sale-new section h4 {
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 400;
}
#owl-ratio #home-slider .slide.slide--sale-new section .percent {
  margin: 20px auto 30px;
  height: 90px;
  max-height: 90px;
}
#owl-ratio #home-slider .slide.slide--sale-new section a {
  position: static;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}
#owl-ratio #home-slider .slide.slide--sale-new section .small--title {
  font-family: "ProximaNova-Bold";
  line-height: 1.1;
}
#owl-ratio #home-slider .slide.slide--sale-new section .small--desc {
  font-family: "ProximaNova";
  line-height: 1.2;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-new section h3 {
    font-size: 3.4vw;
    line-height: 3.6vw;
  }
  #owl-ratio #home-slider .slide.slide--sale-new section h4 {
    font-size: 2.2vw;
  }
  #owl-ratio #home-slider .slide.slide--sale-new section .percent {
    margin: 3vw auto 2vw;
    height: 9vw;
  }
  #owl-ratio #home-slider .slide.slide--sale-new section a {
    width: 295px;
  }
}
@media (min-width: 991px) {
  #owl-ratio #home-slider .slide.slide--sale-new section {
    padding: 2.1vw 1vw;
  }
  #owl-ratio #home-slider .slide.slide--sale-new section h3 {
    margin-bottom: 1.2vw;
    font-size: 2.8vw;
    line-height: 3.4vw;
    letter-spacing: 0.25vw;
  }
  #owl-ratio #home-slider .slide.slide--sale-new section h3.small {
    font-size: 2.5vw;
  }
  #owl-ratio #home-slider .slide.slide--sale-new section h4 {
    font-size: 1.7vw;
    letter-spacing: 0.1vw;
  }
  #owl-ratio #home-slider .slide.slide--sale-new section .percent {
    width: auto;
    height: 7.6vw;
    max-height: 100%;
    margin: 1.6vw auto 1.9vw;
  }
  #owl-ratio #home-slider .slide.slide--sale-new section .btns {
    font-size: 1.8vw;
  }
  #owl-ratio #home-slider .slide.slide--sale-new section a {
    padding: 1.12vw 10px;
  }
  #owl-ratio #home-slider .slide.slide--sale-new section .small--title {
    margin-bottom: 1.4vw;
    font-size: 3.05vw;
  }
  #owl-ratio #home-slider .slide.slide--sale-new section .small--desc {
    margin-bottom: 4.1vw;
    font-size: 1.55vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-half {
  /*@media (max-width: 990px) {
        section {width: 100%; max-height: 100%; background: #ed1a3b; padding: 0 20px; }
        .sale-list {max-width: none; position: absolute; top: 50%; .translate(0, -50%);
          li { padding: 2% 0;
            &:last-child { border-bottom: 0;}
            .sale-list__logo {width: 15%;}
            .sale-list__title {width: 30%;}
            .sale-list__sale-price { padding-bottom: 0; font-size: 18px;
              & > span {font-size: 28px;}
            }
          }
        }
      }*/
}
#owl-ratio #home-slider .slide.slide--sale-half .cta {
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
#owl-ratio #home-slider .slide.slide--sale-half .cta__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
#owl-ratio #home-slider .slide.slide--sale-half .cta__inner img {
  margin-bottom: 30px;
}
#owl-ratio #home-slider .slide.slide--sale-half .cta__inner .btns {
  background: none;
  border: 1px solid #FFF;
  text-align: center;
  font-family: ainslie, arial, sans-serif;
  text-transform: uppercase;
  font-size: 26px;
  padding: 14px 24px;
  height: auto;
  letter-spacing: 2px;
}
#owl-ratio #home-slider .slide.slide--sale-half .cta__inner .btns:hover {
  background: #FFF;
  color: #fe667d;
}
#owl-ratio #home-slider .slide.slide--sale-half section {
  width: 50%;
  background: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
  transform: translate(0, 0) translateZ(0) scale(1, 1);
  max-width: none;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li {
  zoom: 1;
  padding: 40px 0;
  display: table;
  width: 100%;
  border-bottom: 1px solid #fe667d;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li:before {
  content: '';
  display: block;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li:after {
  content: '';
  display: table;
  clear: both;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__logo {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  width: 200px;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__logo img {
  width: auto;
  display: inline;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__icon {
  width: auto;
  height: 49px;
  margin: 0 auto 10px;
  display: block;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__title {
  display: table-cell;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: center;
  width: 240px;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__title,
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__title span {
  color: #FFF;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 1px;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__regular-price {
  position: relative;
  display: table-cell;
  padding: 0 0 23px 33px;
  width: 213px;
  vertical-align: bottom;
  color: #FFF;
  font-family: ProximaNova, arial, sans-serif;
  font-size: 38px;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__regular-price:before {
  content: '';
  width: 50px;
  height: 4px;
  background: #231f20;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translate(-50%, -37px) rotate(-39deg) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -37px) rotate(-39deg);
  -o-transform: translate(-50%, -37px) rotate(-39deg);
  -ms-transform: translate(-50%, -37px) rotate(-39deg);
  transform: translate(-50%, -37px) rotate(-39deg);
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__regular-price .price-val {
  position: relative;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__regular-price .price-val:before {
  content: '';
  width: 45px;
  height: 4px;
  background: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__regular-price > span {
  font-size: 30px;
  line-height: 36px;
  color: #FFF;
  font-family: ProximaNova-Bold, arial, sans-serif;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__regular-price .currency {
  font-size: 17px;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__arrow {
  display: table-cell;
  vertical-align: bottom;
  width: 58px;
  padding-bottom: 16px;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__arrow img {
  vertical-align: bottom;
  width: auto;
  margin: 0 5px;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__sale-price {
  display: table-cell;
  text-align: left;
  vertical-align: bottom;
  color: #FFF;
  padding-bottom: 10px;
  font-family: ProximaNova, arial, sans-serif;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__sale-price > span {
  font-size: 55px;
  line-height: 55px;
  color: #FFF;
  font-family: ProximaNova-Bold, arial, sans-serif;
}
#owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__sale-price .currency {
  font-size: 30px;
}
body.hu #owl-ratio #home-slider .slide.slide--sale-half .sale-list .sale-list__regular-price {
  font-size: 10px;
}
@media (max-width: 1800px) {
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li {
    padding: 35px 0;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__icon {
    width: auto;
    height: 39px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__title {
    width: 200px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__title,
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__title span {
    font-size: 18px;
    line-height: 22px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__regular-price {
    padding: 0 0 23px 0;
    width: 150px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__regular-price:before {
    left: 43%;
    -webkit-transform: translate(-50%, -34px) rotate(-39deg) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -34px) rotate(-39deg);
    -o-transform: translate(-50%, -34px) rotate(-39deg);
    -ms-transform: translate(-50%, -34px) rotate(-39deg);
    transform: translate(-50%, -34px) rotate(-39deg);
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__regular-price > span {
    font-size: 24px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__arrow {
    padding-bottom: 0;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__arrow img {
    margin-bottom: 14px;
  }
}
@media (max-width: 1600px) {
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li {
    padding: 25px 0;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__sale-price {
    padding-bottom: 15px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__sale-price > span {
    font-size: 35px;
  }
}
@media (max-width: 1420px) {
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li {
    padding: 25px 0;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__icon {
    width: auto;
    height: 29px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__title {
    width: 150px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__title,
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__title span {
    font-size: 14px;
    line-height: 18px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__regular-price > span {
    font-size: 20px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__arrow {
    width: 43px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__arrow > img {
    margin: 0 10px 15px 0px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__sale-price > span {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li {
    padding: 20px 0;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__arrow {
    width: 38px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__arrow > img {
    margin: 0 5px 14px 0;
    max-width: 15px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__regular-price {
    padding: 0 0 14px 0;
    width: 120px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__regular-price::before {
    bottom: -14%;
    width: 36px;
    -webkit-transform: translate(-50%, -34px) rotate(-39deg) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -34px) rotate(-39deg);
    -o-transform: translate(-50%, -34px) rotate(-39deg);
    -ms-transform: translate(-50%, -34px) rotate(-39deg);
    transform: translate(-50%, -34px) rotate(-39deg);
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__sale-price {
    padding-bottom: 3px;
    font-size: 18px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__sale-price > span {
    font-size: 20px;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .sale-list li .sale-list__sale-price .currency {
    font-size: 20px;
  }
}
@media (max-width: 1110px) {
  #owl-ratio #home-slider .slide.slide--sale-half section {
    right: 8%;
    left: auto;
    max-height: 100%;
    background: #ed1a3b;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--sale-half section {
    display: none;
  }
  #owl-ratio #home-slider .slide.slide--sale-half .cta {
    width: 100%;
  }
}
@media only screen and (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--sale-half .mobile {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-40%) translateZ(0) scale(1, 1);
    -ms-transform: translateX(-40%);
    transform: translateX(-40%);
  }
}
#owl-ratio #home-slider .slide.slide--gentelmen .mobile {
  display: none;
}
#owl-ratio #home-slider .slide.slide--gentelmen .logo {
  width: auto;
  margin: 0 auto 90px auto;
}
#owl-ratio #home-slider .slide.slide--gentelmen p {
  font-family: bebas, arial, sans-serif;
  font-size: 45px;
  color: #8c8b92;
  line-height: 48px;
  max-width: 450px;
  margin: 0 auto;
}
#owl-ratio #home-slider .slide.slide--gentelmen p img {
  display: inline;
  width: auto;
}
#owl-ratio #home-slider .slide.slide--gentelmen p.small {
  font-size: 30px;
  padding-top: 0;
}
#owl-ratio #home-slider .slide.slide--gentelmen .btns {
  color: #8c8b92;
  border-color: #8c8b92;
  max-width: 225px;
  margin: 0 auto;
}
#owl-ratio #home-slider .slide.slide--gentelmen .btns:hover {
  background: #8c8b92;
  color: #FFF;
}
#owl-ratio #home-slider .slide.slide--gentelmen section {
  margin-top: 0;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 38%;
  max-width: none;
  left: 0;
}
@media only screen and (max-width: 1200px) and (min-width: 900px) {
  #owl-ratio #home-slider .slide.slide--gentelmen .logo {
    margin: 0 auto 20px auto;
  }
  #owl-ratio #home-slider .slide.slide--gentelmen p {
    font-size: 30px;
    line-height: 36px;
    max-width: 370px;
  }
  #owl-ratio #home-slider .slide.slide--gentelmen p.small {
    font-size: 24px;
    line-height: 28px;
  }
  #owl-ratio #home-slider .slide.slide--gentelmen section {
    margin-top: 0;
    max-width: none;
    padding: 20px;
  }
}
@media only screen and (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--gentelmen .desktop {
    display: none !important;
  }
  #owl-ratio #home-slider .slide.slide--gentelmen .mobile {
    display: block;
  }
  #owl-ratio #home-slider .slide.slide--gentelmen .owl-inner {
    display: block;
  }
  #owl-ratio #home-slider .slide.slide--gentelmen section {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    padding: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #owl-ratio #home-slider .slide.slide--gentelmen section p {
    font-size: 26px;
    line-height: 28px;
    max-width: 260px;
  }
  #owl-ratio #home-slider .slide.slide--gentelmen section p img {
    width: 65px;
    padding-left: 5px;
  }
  #owl-ratio #home-slider .slide.slide--gentelmen section p.small {
    font-size: 18px;
    line-height: 24px;
  }
  #owl-ratio #home-slider .slide.slide--gentelmen section a {
    position: static;
  }
  #owl-ratio #home-slider .slide.slide--gentelmen section .logo {
    width: 200px;
    margin: 0 auto 20px auto;
  }
}
@media only screen and (max-width: 580px) {
  #owl-ratio #home-slider .slide.slide--gentelmen section {
    width: 90%;
  }
}
#owl-ratio #home-slider .slide.slide--eobuwie .mobile {
  display: none;
}
#owl-ratio #home-slider .slide.slide--eobuwie .logo {
  width: auto;
  margin: 0 auto 90px auto;
  max-width: 295px;
  display: block;
}
#owl-ratio #home-slider .slide.slide--eobuwie p {
  font-family: bebas, arial, sans-serif;
  font-size: 45px;
  color: #8c8b92;
  line-height: 48px;
  max-width: 450px;
  margin: 0 auto;
}
#owl-ratio #home-slider .slide.slide--eobuwie p img {
  display: inline;
  width: auto;
  vertical-align: middle;
}
#owl-ratio #home-slider .slide.slide--eobuwie .btns {
  color: #8c8b92;
  border-color: #8c8b92;
  width: auto;
  padding: 18px 40px;
  margin: 0 auto;
}
#owl-ratio #home-slider .slide.slide--eobuwie .btns:hover {
  background: #8c8b92;
  color: #FFF;
}
#owl-ratio #home-slider .slide.slide--eobuwie section {
  margin-top: 0;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 38%;
  max-width: none;
  left: 0;
}
@media only screen and (max-width: 1200px) and (min-width: 900px) {
  #owl-ratio #home-slider .slide.slide--eobuwie .logo {
    margin: 0 auto 20px auto;
  }
  #owl-ratio #home-slider .slide.slide--eobuwie p {
    font-size: 36px;
    line-height: 42px;
    max-width: 370px;
  }
  #owl-ratio #home-slider .slide.slide--eobuwie section {
    margin-top: 0;
    max-width: none;
    padding: 20px;
  }
}
@media only screen and (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--eobuwie .desktop {
    display: none !important;
  }
  #owl-ratio #home-slider .slide.slide--eobuwie .mobile {
    display: block;
  }
  #owl-ratio #home-slider .slide.slide--eobuwie .owl-inner {
    display: block;
  }
  #owl-ratio #home-slider .slide.slide--eobuwie section {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    padding: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #owl-ratio #home-slider .slide.slide--eobuwie section p {
    font-size: 26px;
    line-height: 38px;
    max-width: 260px;
  }
  #owl-ratio #home-slider .slide.slide--eobuwie section p img {
    width: 65px;
    padding-left: 5px;
  }
  #owl-ratio #home-slider .slide.slide--eobuwie section a {
    position: static;
  }
  #owl-ratio #home-slider .slide.slide--eobuwie section .logo {
    width: 200px;
    margin: 0 auto 20px auto;
  }
}
@media only screen and (max-width: 580px) {
  #owl-ratio #home-slider .slide.slide--eobuwie section {
    width: 90%;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section {
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  border-radius: 100%;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section {
    width: 30vw;
    height: 30vw;
    background-color: #e84e0e;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section::before {
  content: '';
  position: absolute;
  top: -80px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  height: 320px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section::before {
    display: none;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section .circle-container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  padding: 0 30px;
  width: 400px;
  max-width: 100%;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container {
    width: auto;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--ru h4 {
  margin-bottom: 20px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--ru h4 {
    margin-bottom: 1vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--ro h3 {
  font-size: 30px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--ro h4 {
    font-size: 1.4vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--hu .circle-container__image {
  margin: 10px auto 20px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--hu .circle-container__image {
    margin: 1.3vw auto 1.7vw;
    height: 6vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--hu h3 {
  font-size: 30px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--hu h3 {
    font-size: 2vw;
    margin-bottom: 0;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--hu h4 {
  margin-bottom: 10px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--hu h4 {
    margin-bottom: 0.6vw;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--de-at h3 {
    margin-bottom: 15px;
    font-size: 30px;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--de-at h3:first-of-type {
    margin-bottom: 0.9vw;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--de-at h4 {
    margin-bottom: 1.2vw;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--de-at .btns {
    padding: 1.4vw;
    font-size: 1.4vw;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--lt h3 {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 30px;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--lt h3 {
    font-size: 2vw;
    letter-spacing: 0.18vw;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--lt h3:nth-of-type(2) {
    margin-bottom: 1.4vw;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--lt .circle-container__image {
    height: 6vw;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container--lt .btns {
    margin-top: 0.8vw;
    padding: 1.4vw;
    font-size: 1.4vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section .circle-container__image {
  margin: 0 auto 30px;
  width: auto;
  height: 70px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .circle-container__image {
    margin: 0 auto 1.7vw;
    height: 7.2vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section .circle-container__image + .btns {
  margin-top: 0;
}
#owl-ratio #home-slider .slide.slide--sale-circle section h3,
#owl-ratio #home-slider .slide.slide--sale-circle section h4 {
  font-family: "gordita", "ProximaNova-Bold";
  font-weight: 900;
  color: #fff;
}
#owl-ratio #home-slider .slide.slide--sale-circle section h3 {
  margin-bottom: 20px;
  font-size: 36px;
  letter-spacing: 3px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section h3 {
    margin-bottom: 0.7vw;
    font-size: 2.4vw;
    letter-spacing: 0.25vw;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section h3.small-mobile {
    font-size: 30px;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section h3 + .circle-container__image {
  margin-bottom: 15px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section h3 + .circle-container__image {
    margin-bottom: 1.3vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section h4 {
  margin-bottom: 30px;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 17px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section h4 {
    margin-bottom: 1.7vw;
    font-size: 1.5vw;
    letter-spacing: 0.14vw;
    line-height: 1.9vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section h4 + .btns {
  margin-top: 0;
}
#owl-ratio #home-slider .slide.slide--sale-circle section .btns {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: auto;
  border-color: #FFF;
  color: #fff;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .btns {
    margin-top: 1.7vw;
    padding: 1.4vw 2vw 1.4vw 2.4vw;
    font-size: 1.6vw;
    letter-spacing: 0.36vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-circle section .btns:hover {
  background: #FFF;
  color: #000;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-circle section .btns--small {
    padding: 1.2vw;
    font-size: 1.4vw;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section {
    width: 32vw;
    height: 32vw;
    background-color: #000;
  }
}
#owl-ratio #home-slider .slide.slide--sale-black-friday section h3,
#owl-ratio #home-slider .slide.slide--sale-black-friday section h4,
#owl-ratio #home-slider .slide.slide--sale-black-friday section p {
  color: #e84e0e;
}
#owl-ratio #home-slider .slide.slide--sale-black-friday section h3 {
  margin-bottom: 10px;
  font-size: 32px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section h3 {
    margin-bottom: 0.8vw;
    font-size: 3.4vw;
    letter-spacing: 0.15vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-black-friday section h4 {
  margin-bottom: 10px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section h4 {
    margin-bottom: 0.9vw;
    font-size: 1.9vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-black-friday section .fnt--26 {
  font-size: 26px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section .fnt--26 {
    font-size: 1.4vw;
    letter-spacing: 0.05vw;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section .fnt--46 {
    font-size: 2.4vw;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section .fnt--57 {
    margin-bottom: 0;
    font-size: 3vw;
    letter-spacing: 0.1vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-black-friday section p {
  padding: 0;
  font-family: "gordita", "ProximaNova-Bold";
  font-weight: 900;
}
#owl-ratio #home-slider .slide.slide--sale-black-friday section .btns--small {
  margin-top: 10px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section .btns--small {
    margin-top: 1vw;
    padding: 1.2vw 2vw;
  }
}
@media (min-width: 1200px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section .btns--small {
    margin-top: 1.7vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-black-friday section .circle-container--ro .circle-container__info {
  margin-bottom: 10px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section .circle-container--ro .circle-container__info {
    margin-bottom: 0.9vw;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section .circle-container--ro h3 {
    font-size: 3.4vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-black-friday section .circle-container__image {
  margin: 0 auto 10px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section .circle-container__image {
    margin: 0 auto 0.4vw;
    height: 6.4vw;
  }
}
@media (min-width: 1200px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section .circle-container__image {
    margin: 0 auto 1.5vw;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section .circle-container__data {
    font-size: 1.3vw;
  }
}
#owl-ratio #home-slider .slide.slide--sale-black-friday section .circle-container__info {
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section .circle-container__info {
    margin-top: 0.8vw;
    padding: 0 4vw;
    line-height: 1.2vw;
    font-size: 0.8vw;
    letter-spacing: 0.04vw;
  }
}
@media (min-width: 1200px) {
  #owl-ratio #home-slider .slide.slide--sale-black-friday section .circle-container__info {
    font-size: 0.55vw;
  }
}
#owl-ratio #home-slider .slide--helloccc section {
  top: 30px;
  margin-top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#owl-ratio #home-slider .slide--helloccc section > img {
  width: auto;
  margin: 0 auto;
}
#owl-ratio #home-slider .slide--helloccc section p {
  text-transform: uppercase;
  font-family: bebas, arial, sans-serif;
  color: #000;
  font-size: 24px;
  padding: 15px 0;
  line-height: 28px;
}
#owl-ratio #home-slider .slide--helloccc section a {
  width: auto;
  padding: 18px 7px 18px 15px;
  border-color: #f8541f;
  border-width: 2px;
  color: #f8541f;
}
#owl-ratio #home-slider .slide--helloccc section a:hover {
  background: #f8541f;
}
@media (max-width: 1500px) {
  #owl-ratio #home-slider .slide--helloccc section {
    top: 0;
  }
  #owl-ratio #home-slider .slide--helloccc p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 1280px) {
  #owl-ratio #home-slider .slide--helloccc section {
    margin-top: 0 !important;
  }
  #owl-ratio #home-slider .slide--helloccc section > img {
    max-height: 40px;
    margin-bottom: 10px;
  }
  #owl-ratio #home-slider .slide--helloccc section p {
    font-size: 16px;
    line-height: 20px;
  }
  #owl-ratio #home-slider .slide--helloccc section a {
    padding: 10px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide--helloccc section img {
    margin-bottom: 0;
    max-height: 30px;
  }
  #owl-ratio #home-slider .slide--helloccc section p {
    padding: 5px 0;
  }
  #owl-ratio #home-slider .slide--helloccc section a {
    padding: 5px !important;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide--helloccc {
    background: #fff9ff;
  }
  #owl-ratio #home-slider .slide--helloccc > img {
    display: none !important;
  }
  #owl-ratio #home-slider .slide--helloccc section {
    -webkit-transform: translateX(0) translateZ(0) scale(1, 1);
    -ms-transform: translateX(0);
    transform: translateX(0);
    top: 20px !important;
  }
  #owl-ratio #home-slider .slide--helloccc section > img {
    max-height: none;
  }
  #owl-ratio #home-slider .slide--helloccc section p {
    font-size: 24px;
    line-height: 28px;
    padding: 30px;
  }
  #owl-ratio #home-slider .slide--helloccc section a {
    padding: 18px 15px !important;
    display: inline-block !important;
    width: auto !important;
    position: static !important;
  }
}
@media (max-width: 420px) {
  #owl-ratio #home-slider .slide--helloccc section p {
    font-size: 18px !important;
    line-height: 22px !important;
  }
}
#owl-ratio #home-slider .slide.slide--lesson-plan section {
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 0;
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--lesson-plan section {
    top: 50%;
    left: 50%;
    width: auto;
    bottom: auto;
  }
}
#owl-ratio #home-slider .slide.slide--lesson-plan section .section__container {
  padding: 15px;
  border: 5px solid #ed1a3b;
  width: 315px;
}
@media (max-width: 900px) {
  #owl-ratio #home-slider .slide.slide--lesson-plan section .section__container {
    border: none;
  }
}
@media (min-width: 901px) {
  #owl-ratio #home-slider .slide.slide--lesson-plan section .section__container {
    height: 315px;
    border: 5px solid #ed1a3b;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--lesson-plan section .section__container {
    border: 5px solid #ed1a3b;
  }
}
#owl-ratio #home-slider .slide.slide--lesson-plan section .section__container:hover a {
  background-color: #ed1a3b;
}
#owl-ratio #home-slider .slide.slide--lesson-plan section a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: none;
  background-color: rgba(237, 26, 59, 0.7);
  transition: all 0.4s;
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--lesson-plan section a {
    position: static;
  }
}
#owl-ratio #home-slider .slide.slide--lesson-plan section p {
  padding: 15px 0 0;
  color: #fff;
  font-family: bebas, arial, sans-serif;
  font-size: 32px;
  letter-spacing: 5px;
  line-height: 36px;
  text-transform: uppercase;
}
#owl-ratio #home-slider .slide.slide--lesson-plan section img {
  transform: rotate(-30deg);
  margin: 0 auto;
  width: 92px;
  height: 92px;
}
#owl-ratio #home-slider .slide.slide--cccnakupnaparty section {
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  margin-top: 0;
  padding: 0 20px;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.72);
}
@media (min-width: 991px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section {
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: 27.4vw;
    height: 27.5vw;
  }
}
#owl-ratio #home-slider .slide.slide--cccnakupnaparty section .text {
  font-family: "gordita";
  color: #fff;
  font-weight: 400;
}
#owl-ratio #home-slider .slide.slide--cccnakupnaparty section .date {
  padding-top: 40px;
  padding-bottom: 0;
  font-size: 20px;
  color: #f15922;
  font-weight: 800;
  line-height: 1;
}
@media (min-width: 700px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section .date {
    padding-top: 20px;
  }
}
@media (min-width: 850px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section .date {
    padding-top: 40px;
  }
}
@media (min-width: 991px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section .date {
    padding: 2.25vw 0 0;
    font-size: 2.25vw;
    letter-spacing: 0.45vw;
  }
}
#owl-ratio #home-slider .slide.slide--cccnakupnaparty section .title {
  font-size: 26px;
  padding: 15px 0 0;
  line-height: 1.45;
}
@media (min-width: 700px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section .title {
    font-size: 23px;
  }
}
@media (min-width: 850px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section .title {
    font-size: 26px;
  }
}
@media (min-width: 991px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section .title {
    padding: 0.6vw 0;
    line-height: 1.15;
    font-size: 3vw;
    letter-spacing: 0.55vw;
  }
}
@media (min-width: 991px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section .info {
    padding: 1.5vw 0 2.7vw;
    font-size: 1.2vw;
    letter-spacing: 0.3vw;
  }
}
#owl-ratio #home-slider .slide.slide--cccnakupnaparty section a {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  letter-spacing: 5px;
  font-size: 16px;
}
@media (min-width: 991px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section a {
    font-size: 1.2vw;
  }
}
@media (min-width: 1200px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section a {
    letter-spacing: 7px;
    font-size: 1vw;
  }
}
#owl-ratio #home-slider .slide.slide--cccnakupnaparty section .btns {
  margin: 0 auto;
  padding: 15px;
  width: auto;
  max-width: 397px;
  color: #fff;
  border-color: #fff;
}
@media (min-width: 700px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section .btns {
    padding: 10px 15px;
  }
}
@media (min-width: 850px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section .btns {
    padding: 15px;
  }
}
@media (min-width: 991px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section .btns {
    width: 100%;
    max-width: 397px;
  }
}
@media (min-width: 1200px) {
  #owl-ratio #home-slider .slide.slide--cccnakupnaparty section .btns {
    padding: 18px 10px;
  }
}
#owl-ratio #home-slider .slide.slide--cccnakupnaparty section .btns:hover {
  color: #000;
  border-color: #000;
  background-color: #fff;
}
#owl-ratio #home-slider .slide.slide--fun-contest section,
#owl-ratio #home-slider .slide.slide--tests section {
  margin-top: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  width: 1355px;
  max-width: 100%;
  text-align: center;
}
#owl-ratio #home-slider .slide.slide--fun-contest section h3,
#owl-ratio #home-slider .slide.slide--tests section h3 {
  display: inline-block;
  font-size: 70px;
  line-height: 66px;
  color: #FFF;
  margin-bottom: 40px;
  font-family: ainslie, arial, sans-serif;
}
#owl-ratio #home-slider .slide.slide--fun-contest section h3 span,
#owl-ratio #home-slider .slide.slide--tests section h3 span {
  color: #ff3300;
  font-size: 70px;
}
#owl-ratio #home-slider .slide.slide--fun-contest section a,
#owl-ratio #home-slider .slide.slide--tests section a {
  display: block;
  margin: 0 auto;
}
#owl-ratio #home-slider .slide.slide--fun-contest section .btns,
#owl-ratio #home-slider .slide.slide--tests section .btns {
  border-color: #FFF;
  color: #FFF;
  width: 387px;
  max-width: 100%;
  font-size: 21px;
  letter-spacing: 5px;
}
#owl-ratio #home-slider .slide.slide--fun-contest section .btns:hover,
#owl-ratio #home-slider .slide.slide--tests section .btns:hover {
  border-color: #000;
}
#owl-ratio #home-slider .slide.slide--fun-contest section .btns > img,
#owl-ratio #home-slider .slide.slide--tests section .btns > img {
  display: inline-block;
  width: 20px;
  height: 24px;
  vertical-align: middle;
}
@media (max-width: 1500px) {
  #owl-ratio #home-slider .slide.slide--fun-contest section h3,
  #owl-ratio #home-slider .slide.slide--tests section h3 {
    font-size: 50px;
    line-height: 56px;
  }
  #owl-ratio #home-slider .slide.slide--fun-contest section h3 span,
  #owl-ratio #home-slider .slide.slide--tests section h3 span {
    font-size: 50px;
  }
}
@media (max-width: 1092px) {
  #owl-ratio #home-slider .slide.slide--fun-contest section h3,
  #owl-ratio #home-slider .slide.slide--tests section h3 {
    font-size: 40px;
    line-height: 56px;
  }
  #owl-ratio #home-slider .slide.slide--fun-contest section h3 span,
  #owl-ratio #home-slider .slide.slide--tests section h3 span {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  #owl-ratio #home-slider .slide.slide--fun-contest section .btns,
  #owl-ratio #home-slider .slide.slide--tests section .btns {
    width: 350px;
    font-size: 19px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--fun-contest section h3,
  #owl-ratio #home-slider .slide.slide--tests section h3 {
    font-size: 28px;
    line-height: 32px;
  }
  #owl-ratio #home-slider .slide.slide--fun-contest section h3 span,
  #owl-ratio #home-slider .slide.slide--tests section h3 span {
    font-size: 28px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--fun-contest img,
  #owl-ratio #home-slider .slide.slide--tests img {
    transform: translateX(-20%);
  }
}
@media (max-width: 690px) {
  #owl-ratio #home-slider .slide.slide--fun-contest section .btns,
  #owl-ratio #home-slider .slide.slide--tests section .btns {
    width: 281px;
    font-size: 15px;
    -webkit-transform: translateY(100%) translateZ(0) scale(1, 1);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-backface-visibility: hidden;
  }
}
@media (max-width: 480px) {
  #owl-ratio #home-slider .slide.slide--fun-contest img,
  #owl-ratio #home-slider .slide.slide--tests img {
    transform: translateX(-25%);
  }
  #owl-ratio #home-slider .slide.slide--fun-contest section h3,
  #owl-ratio #home-slider .slide.slide--tests section h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  #owl-ratio #home-slider .slide.slide--fun-contest section h3 span,
  #owl-ratio #home-slider .slide.slide--tests section h3 span {
    font-size: 24px;
  }
  #owl-ratio #home-slider .slide.slide--fun-contest section .btns,
  #owl-ratio #home-slider .slide.slide--tests section .btns {
    letter-spacing: .2em;
    width: 256px;
    font-size: 13px;
  }
}
@media (max-width: 350px) {
  #owl-ratio #home-slider .slide.slide--fun-contest section,
  #owl-ratio #home-slider .slide.slide--tests section {
    top: 42%;
  }
  #owl-ratio #home-slider .slide.slide--fun-contest section .btns,
  #owl-ratio #home-slider .slide.slide--tests section .btns {
    -webkit-transform: translateY(140%) translateZ(0) scale(1, 1);
    -ms-transform: translateY(140%);
    transform: translateY(140%);
    -webkit-backface-visibility: hidden;
  }
}
#owl-ratio #home-slider .slide.slide--fun-contest section h3 {
  font-size: 37px;
  line-height: 42px;
}
@media (max-width: 1500px) {
  #owl-ratio #home-slider .slide.slide--fun-contest section h3 {
    font-size: 37px;
    line-height: 42px;
  }
}
@media (max-width: 1092px) {
  #owl-ratio #home-slider .slide.slide--fun-contest section h3 {
    font-size: 37px;
    line-height: 42px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--fun-contest section h3 {
    font-size: 28px;
    line-height: 32px;
  }
}
#owl-ratio #home-slider .slide.slide--my-shop {
  position: relative;
  background-color: #fff;
}
#owl-ratio #home-slider .slide.slide--my-shop .object {
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 2;
  width: 400px;
  max-width: 100%;
}
#owl-ratio #home-slider .slide.slide--my-shop .object .phone,
#owl-ratio #home-slider .slide.slide--my-shop .object .card {
  margin: 0 auto;
  max-width: 100%;
}
#owl-ratio #home-slider .slide.slide--my-shop .object .phone {
  width: 193px;
}
#owl-ratio #home-slider .slide.slide--my-shop .object .card {
  width: 229px;
  position: absolute;
  left: 0;
  top: 71%;
}
#owl-ratio #home-slider .slide.slide--my-shop section {
  left: 100px;
  text-align: left;
  max-width: 500px;
  top: 143px;
}
#owl-ratio #home-slider .slide.slide--my-shop section h3 {
  font-family: ainslie, arial, sans-serif;
  font-size: 60px;
  padding-top: 99px;
}
#owl-ratio #home-slider .slide.slide--my-shop section h3 .orange {
  font-size: 60px;
  color: #ff3300;
}
#owl-ratio #home-slider .slide.slide--my-shop section p {
  font-size: 20px;
  text-transform: uppercase;
  font-family: ainslie, arial, sans-serif;
  color: #000;
}
#owl-ratio #home-slider .slide.slide--my-shop section a {
  width: 258px;
}
#owl-ratio #home-slider .slide.slide--my-shop .shop {
  position: absolute;
  top: 0;
  right: 40px;
  width: 77px;
}
@media (max-width: 1573px) {
  #owl-ratio #home-slider .slide.slide--my-shop .object .phone {
    width: 155px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop .object .card {
    width: 185px;
    left: 47px;
    top: 64%;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section h3 {
    font-size: 35px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section h3 .orange {
    font-size: 35px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section p {
    width: 220px;
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  #owl-ratio #home-slider .slide.slide--my-shop .object {
    top: 29px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section {
    top: 211px;
    left: 49px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section h3 {
    padding-top: 0;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section p {
    font-size: 15px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section a {
    height: 50px;
    font-size: 15px;
  }
}
@media (max-width: 1065px) {
  #owl-ratio #home-slider .slide.slide--my-shop .object .phone {
    width: 135px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop .object .card {
    width: 165px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section {
    top: 164px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section a {
    width: 185px;
  }
}
@media (max-width: 957px) {
  #owl-ratio #home-slider .slide.slide--my-shop .object .phone {
    width: 125px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop .object .card {
    width: 145px;
  }
}
@media (max-width: 925px) {
  #owl-ratio #home-slider .slide.slide--my-shop .object .phone {
    width: 110px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop .object .card {
    width: 130px;
    left: 97px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop .shop {
    width: 57px;
    height: auto;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section {
    top: 171px;
    left: 39px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section h3 {
    font-size: 25px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section p {
    font-size: 13px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section a {
    height: 41px;
    font-size: 12px;
    padding: 14px 0;
  }
}
@media (max-width: 768px) {
  #owl-ratio #home-slider .slide.slide--my-shop .object {
    top: 5px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop .object .card {
    left: 0;
    right: 0;
    marign: 0 auto;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section {
    top: 144px;
    left: 24px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--my-shop {
    background: url("../img/my-shop/banner-my-shop.jpg") no-repeat;
    background-size: cover;
    background-position-x: 50%;
  }
  #owl-ratio #home-slider .slide.slide--my-shop .object {
    top: 36px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop .desktop {
    display: none !important;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section {
    top: 30px;
    left: 24px;
    width: 228px;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section a {
    transform: translateY(-85%);
    -webkit-transform: translateY(-85%);
    width: 150px;
  }
}
@media (max-width: 600px) {
  #owl-ratio #home-slider .slide.slide--my-shop {
    background: url("../img/my-shop/shop_img_2.jpg") no-repeat;
    background-size: cover;
  }
  #owl-ratio #home-slider .slide.slide--my-shop .desktop {
    display: none !important;
  }
  #owl-ratio #home-slider .slide.slide--my-shop .mobile {
    display: block;
    width: 100%;
  }
  #owl-ratio #home-slider .slide.slide--my-shop .object {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: -100%;
  }
  #owl-ratio #home-slider .slide.slide--my-shop .shop {
    right: 20px;
    z-index: 3;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section h3,
  #owl-ratio #home-slider .slide.slide--my-shop section p,
  #owl-ratio #home-slider .slide.slide--my-shop section a {
    color: #fff;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section a {
    border-color: #fff;
  }
  #owl-ratio #home-slider .slide.slide--my-shop section a:hover {
    color: #000;
    border-color: #000;
    background-color: #fff;
  }
}
#owl-ratio #home-slider .slide.slide--studia {
  background-color: #f3f3f3;
}
#owl-ratio #home-slider .slide.slide--studia section {
  max-width: 40%;
  margin-top: 0;
  width: 100%;
  left: auto;
  right: 0;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  padding-right: 10px;
}
#owl-ratio #home-slider .slide.slide--studia section > img {
  width: auto;
  margin: 0 auto;
}
#owl-ratio #home-slider .slide.slide--studia section h3 {
  color: #000;
  font-family: ainslie, arial, sans-serif;
  font-size: 38px;
  line-height: 42px;
  margin-top: 50px;
}
#owl-ratio #home-slider .slide.slide--studia section p {
  font-size: 20px;
  line-height: 32px;
  color: #000;
  font-family: ainslie, arial, sans-serif;
  padding: 16px 0 45px 0;
}
#owl-ratio #home-slider .slide.slide--studia section p .orange {
  font-size: 20px;
  color: #f15a22;
}
#owl-ratio #home-slider .slide.slide--studia section .btns {
  border-color: #000;
  color: #000;
  padding: 22px 70px;
  width: auto;
  font-size: 24px;
  letter-spacing: .2em;
}
#owl-ratio #home-slider .slide.slide--studia section .btns:hover {
  background-color: #000;
  color: #FFF;
}
@media (max-width: 1580px) {
  #owl-ratio #home-slider .slide.slide--studia section h3 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 30px;
  }
}
@media (max-width: 1280px) {
  #owl-ratio #home-slider .slide.slide--studia section > img {
    max-height: 70px;
  }
  #owl-ratio #home-slider .slide.slide--studia section h3 {
    font-size: 28px;
    line-height: 32px;
    margin-top: 30px;
  }
  #owl-ratio #home-slider .slide.slide--studia section p {
    font-size: 20px;
    line-height: 24px;
    padding: 25px 0;
  }
  #owl-ratio #home-slider .slide.slide--studia section .btns {
    padding: 16px 40px;
    font-size: 28px;
  }
}
@media (max-width: 990px) {
  #owl-ratio #home-slider .slide.slide--studia .desktop {
    opacity: 0;
    visibility: hidden;
  }
  #owl-ratio #home-slider .slide.slide--studia section {
    right: 5%;
    left: 5%;
    max-width: 90%;
  }
  #owl-ratio #home-slider .slide.slide--studia section h3 {
    margin-top: 20px;
  }
  #owl-ratio #home-slider .slide.slide--studia section p {
    padding: 15px 0;
  }
  #owl-ratio #home-slider .slide.slide--studia section .btns {
    padding: 10px 30px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #owl-ratio #home-slider .slide.slide--studia section > img {
    max-height: 60px;
  }
  #owl-ratio #home-slider .slide.slide--studia section h3 {
    font-size: 22px;
    line-height: 1;
  }
  #owl-ratio #home-slider .slide.slide--studia section p {
    padding: 5px 0 15px 0;
    font-size: 16px;
    line-height: 1;
  }
  #owl-ratio #home-slider .slide.slide--studia section p .orange {
    font-size: 16px;
  }
  #owl-ratio #home-slider .slide.slide--studia section .btns {
    padding: 15px 30px;
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  #owl-ratio #home-slider .slide.slide--studia section {
    bottom: 10px;
    transform: none;
  }
}
#owl-ratio #home-slider .slide.slide--gift-card img.desktop {
  display: none !important;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--gift-card img.desktop {
    display: block !important;
  }
}
#owl-ratio #home-slider .slide.slide--gift-card img.mobile {
  display: block !important;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--gift-card img.mobile {
    display: none !important;
  }
}
#owl-ratio #home-slider .slide.slide--gift-card section {
  max-width: 100%;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--gift-card section {
    margin-top: 0;
    right: 6.7vw;
    left: auto;
    top: 8.2vw;
  }
}
@media (min-width: 991px) {
  #owl-ratio #home-slider .slide.slide--gift-card section {
    right: 11.7vw;
  }
}
#owl-ratio #home-slider .slide.slide--gift-card section h3 {
  font-size: 36px;
  margin-bottom: 15px;
}
@media (min-width: 439px) {
  #owl-ratio #home-slider .slide.slide--gift-card section h3 {
    margin-bottom: 35px;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--gift-card section h3 {
    margin-bottom: 1.5vw;
    line-height: 3.8vw;
    font-size: 3.3vw;
    letter-spacing: 0.2vw;
  }
}
@media (min-width: 991px) {
  #owl-ratio #home-slider .slide.slide--gift-card section h3 {
    line-height: 2.9vw;
    font-size: 2.6vw;
  }
}
#owl-ratio #home-slider .slide.slide--gift-card section h4 {
  font-family: arial, sans-serif;
  line-height: 17px;
}
@media (min-width: 439px) {
  #owl-ratio #home-slider .slide.slide--gift-card section h4 {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--gift-card section h4 {
    margin-bottom: 4.25vw;
    line-height: 2.3vw;
    font-size: 1.55vw;
  }
}
@media (min-width: 991px) {
  #owl-ratio #home-slider .slide.slide--gift-card section h4 {
    line-height: 1.65vw;
    font-size: 1.15vw;
  }
}
#owl-ratio #home-slider .slide.slide--gift-card section .btns {
  margin: 0 auto;
  width: 290px;
  max-width: 100%;
  color: #000;
  border-color: #000;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--gift-card section .btns {
    padding: 1.3vw 3.4vw;
    width: auto;
    max-width: 100%;
    font-size: 2.8vw;
    letter-spacing: 0.5vw;
  }
}
@media (min-width: 991px) {
  #owl-ratio #home-slider .slide.slide--gift-card section .btns {
    font-size: 2vw;
  }
}
#owl-ratio #home-slider .slide.slide--gift-card section .btns:hover {
  background-color: #000;
  color: #fff;
}
#owl-ratio #home-slider .slide.slide--gift-card-new img {
  z-index: 0;
}
#owl-ratio #home-slider .slide.slide--gift-card-new img.desktop {
  display: none !important;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--gift-card-new img.desktop {
    display: block !important;
  }
}
#owl-ratio #home-slider .slide.slide--gift-card-new .bg-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../img/home/slider/gift-card/gift-card-new-mobile.jpg") no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  z-index: 9;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--gift-card-new .bg-cover {
    background: url("../img/home/slider/gift-card/gift-card-new-bg.jpg") no-repeat;
    background-position: 50% 50%;
    background-size: cover;
  }
}
#owl-ratio #home-slider .slide.slide--gift-card-new section {
  top: 9%;
  left: 0;
  right: 0;
  margin-top: 0;
  padding: 0 10px;
  max-width: 100%;
  text-align: center;
  z-index: 10;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--gift-card-new section {
    top: 10%;
    padding: 0 30px;
  }
}
#owl-ratio #home-slider .slide.slide--gift-card-new section h3 {
  font-family: ProximaNova, arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
}
@media (min-width: 701px) {
  #owl-ratio #home-slider .slide.slide--gift-card-new section h3 {
    font-size: 2.6vw;
    letter-spacing: 0.2vw;
  }
}
#owl-ratio #home-slider .special-offer a.full-href {
  display: block;
  min-height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
}
#owl-ratio #home-slider .special-offer a.full-href .banner-start {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  -ms-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  -o-transform: translate(0px);
}
#owl-ratio #home-slider .special-offer a.full-href .banner-hover {
  position: absolute;
  top: 0;
  width: 100%;
  min-height: 100%;
  background-color: red;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  -ms-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  -o-transform: translate(0px);
  background-size: 100% 100%;
  background-position: center;
}
#owl-ratio #home-slider .special-offer a.full-href .banner-hover.banner-hover-at {
  background-image: url(../img/home/owl/special-offer/at_hover.jpg);
}
#owl-ratio #home-slider .special-offer a.full-href .banner-hover.banner-hover-bg {
  background-image: url(../img/home/owl/special-offer/bg_hover.jpg);
}
#owl-ratio #home-slider .special-offer a.full-href .banner-hover.banner-hover-cz {
  background-image: url(../img/home/owl/special-offer/cz_hover.jpg);
}
#owl-ratio #home-slider .special-offer a.full-href .banner-hover.banner-hover-de {
  background-image: url(../img/home/owl/special-offer/de_hover.jpg);
}
#owl-ratio #home-slider .special-offer a.full-href .banner-hover.banner-hover-hr {
  background-image: url(../img/home/owl/special-offer/hr_hover.jpg);
}
#owl-ratio #home-slider .special-offer a.full-href .banner-hover.banner-hover-hu {
  background-image: url(../img/home/owl/special-offer/hu_hover.jpg);
}
#owl-ratio #home-slider .special-offer a.full-href .banner-hover.banner-hover-pl {
  background-image: url(../img/home/owl/special-offer/pl_hover.jpg);
}
#owl-ratio #home-slider .special-offer a.full-href .banner-hover.banner-hover-ro {
  background-image: url(../img/home/owl/special-offer/ro_hover.jpg);
}
#owl-ratio #home-slider .special-offer a.full-href .banner-hover.banner-hover-si {
  background-image: url(../img/home/owl/special-offer/si_hover.jpg);
}
#owl-ratio #home-slider .special-offer a.full-href .banner-hover.banner-hover-sk {
  background-image: url(../img/home/owl/special-offer/sk_hover.jpg);
}
#owl-ratio #home-slider .special-offer a.full-href .banner-hover.banner-hover-ua {
  background-image: url(../img/home/owl/special-offer/ua_hover.jpg);
}
#owl-ratio #home-slider .special-offer a.full-href .banner-hover.banner-hover-en {
  background-image: url(../img/home/owl/special-offer/en_hover.jpg);
}
#owl-ratio #home-slider .special-offer a.full-href:hover .banner-hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
@media (max-width: 923px) {
  #owl-ratio #home-slider .slide.slide--bridget-hu {
    padding: 15px;
  }
  #owl-ratio #home-slider .slide.slide--bridget-hu section h3 {
    font-size: 16px;
    line-height: 22px;
  }
  #owl-ratio #home-slider .slide.slide--bridget-hu section h3 strong {
    font-size: 43px;
    line-height: 43px;
  }
  #owl-ratio #home-slider .slide.slide--bridget-hu section p {
    padding-top: 0;
    font-size: 21px;
    line-height: 30px;
  }
  #owl-ratio #home-slider .slide.slide--bridget-hu section p {
    padding: 10px 0 18px 0;
  }
  #owl-ratio #home-slider .slide.slide--bridget-hu section .btns {
    padding: 15px 45px;
    font-size: 14px;
  }
}
#wrap-category .wrap-narrow {
  max-width: 1180px;
  margin: 0 auto;
}
.top_banner {
  position: relative;
  overflow: hidden;
}
.top_banner.top_banner--video {
  height: 475px;
  position: relative;
}
.top_banner.top_banner--video .video-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
  background-size: cover;
}
.top_banner.top_banner--video .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  width: 60px;
  height: 60px;
  background: url("../img/video/video-play.png") 50% 50% no-repeat;
  background-size: contain;
  line-height: 210px;
  text-align: center;
  font-family: montserratlight, arial, sans-serif;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-indent: -9999px;
}
.top_banner.top_banner--video .close {
  display: inline-block;
  border: 0;
  font-size: 32px;
  text-indent: -99999px;
  margin-left: 15px;
  position: absolute !important;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  background: #000 url(../img/close-cross.png) 50% 50% no-repeat;
  background-size: 14px 14px;
  z-index: 99;
  display: none;
}
.top_banner.top_banner--video .close:hover {
  background-color: #f8541f;
}
.top_banner.top_banner--puma {
  position: relative;
}
.top_banner.top_banner--puma .banner__text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 20px;
  width: 100%;
  text-align: center;
}
@media (min-width: 570px) {
  .top_banner.top_banner--puma .logo {
    display: inline-block;
  }
}
.top_banner.top_banner--puma .logo__nb {
  display: block;
  margin: 0 auto;
  width: 133px;
}
@media (min-width: 570px) {
  .top_banner.top_banner--puma .logo__nb {
    margin-bottom: 20px;
  }
}
@media (min-width: 970px) {
  .top_banner.top_banner--puma .logo__nb {
    margin-bottom: 30px;
    width: 254px;
  }
}
.top_banner.top_banner--puma .logo__puma {
  width: 133px;
  margin-left: 35px;
}
@media (min-width: 570px) {
  .top_banner.top_banner--puma .logo__puma {
    margin-right: 6px;
    margin-left: 0;
  }
}
@media (min-width: 970px) {
  .top_banner.top_banner--puma .logo__puma {
    width: 213px;
    margin-right: 12px;
  }
}
.top_banner.top_banner--puma .logo__ccc {
  width: 89px;
}
@media (min-width: 570px) {
  .top_banner.top_banner--puma .logo__ccc {
    margin-left: 15px;
  }
}
@media (min-width: 970px) {
  .top_banner.top_banner--puma .logo__ccc {
    width: 149px;
    margin-left: 26px;
  }
}
@media (min-width: 570px) {
  .top_banner.top_banner--puma .logo__ccc--center {
    margin: 0 10px 0 7px;
  }
}
@media (min-width: 970px) {
  .top_banner.top_banner--puma .logo__ccc--center {
    margin: 0 20px 0 10px;
  }
}
.top_banner.top_banner--puma .description {
  margin: 20px 0;
  font-family: 'bebas';
  font-size: 41px;
  letter-spacing: 4px;
  color: #FFF;
}
@media (min-width: 570px) {
  .top_banner.top_banner--puma .description {
    display: inline-block;
    margin: 0;
  }
}
@media (min-width: 970px) {
  .top_banner.top_banner--puma .description {
    font-size: 71px;
    letter-spacing: 10px;
  }
}
.top_banner.top_banner--puma video {
  position: static;
  transform: none;
}
.top_banner.top_banner--sale {
  background: #ed1a3b;
}
.top_banner.top_banner--sale .banner_content {
  zoom: 1;
  padding: 0 15px;
}
.top_banner.top_banner--sale .banner_content:before {
  content: '';
  display: block;
}
.top_banner.top_banner--sale .banner_content:after {
  content: '';
  display: table;
  clear: both;
}
.top_banner.top_banner--sale .banner_content h2 {
  font-family: ProximaNovaA-Bold, arial, sans-serif;
  font-size: 51px;
  max-width: 930px;
  line-height: 61px;
  letter-spacing: 4px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.top_banner.top_banner--sale .banner_content img {
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 990px) {
  .top_banner.top_banner--sale .banner_content h2 {
    margin-right: 0;
  }
  .top_banner.top_banner--sale .banner_content img {
    max-height: 150px;
  }
}
@media (max-width: 768px) {
  .top_banner.top_banner--sale .banner_content h2 {
    font-size: 40px;
    line-height: 41px;
  }
  .top_banner.top_banner--sale .banner_content img {
    max-width: 280px;
    width: 100%;
  }
}
@media (max-width: 580px) {
  .top_banner.top_banner--sale .banner_content h2 {
    line-height: 33px;
    font-size: 32px;
    letter-spacing: 2px;
  }
}
@media (max-width: 370px) {
  .top_banner.top_banner--sale .banner_content h2 {
    line-height: 26px;
    font-size: 26px;
  }
}
.top_banner.top_banner--sale .banner_content .double-text img {
  display: block;
  margin: 0 auto 10px;
}
@media (min-width: 991px) {
  .top_banner.top_banner--sale .banner_content .double-text h2 {
    display: block;
    max-width: 100%;
    font-size: 47px;
  }
  .top_banner.top_banner--sale .banner_content .double-text img {
    max-height: 150px;
  }
}
.top_banner.top_banner--sale-new .banner_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 825px) {
  .top_banner.top_banner--sale-new .banner_content {
    flex-direction: row;
    padding: 0 30px;
  }
}
.top_banner.top_banner--sale-new .banner_content h2,
.top_banner.top_banner--sale-new .banner_content h3 {
  line-height: 1.2;
  color: #fff;
}
.top_banner.top_banner--sale-new .banner_content h2 {
  font-family: "ProximaNova-Bold";
  margin-right: 0;
  max-width: 1310px;
  font-size: 35px;
  font-weight: 900;
}
@media (min-width: 825px) {
  .top_banner.top_banner--sale-new .banner_content h2 {
    margin-bottom: 10px;
    font-size: 45px;
  }
}
@media (min-width: 1000px) {
  .top_banner.top_banner--sale-new .banner_content h2 {
    margin-bottom: 1vw;
    font-size: 5.95vw;
  }
}
.top_banner.top_banner--sale-new .banner_content h2.small {
  font-size: 30px;
  line-height: 42px;
}
@media (min-width: 825px) {
  .top_banner.top_banner--sale-new .banner_content h2.small {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (min-width: 1000px) {
  .top_banner.top_banner--sale-new .banner_content h2.small {
    font-size: 55px;
    line-height: 70px;
  }
}
@media (min-width: 1000px) {
  .top_banner.top_banner--sale-new .banner_content h2.mg-bottom {
    margin-bottom: 1.5vw;
  }
}
.top_banner.top_banner--sale-new .banner_content h3 {
  font-family: "ProximaNova";
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3px;
}
@media (min-width: 825px) {
  .top_banner.top_banner--sale-new .banner_content h3 {
    font-size: 30px;
  }
}
@media (min-width: 1000px) {
  .top_banner.top_banner--sale-new .banner_content h3 {
    font-size: 2.1vw;
  }
}
.top_banner.top_banner--sale-new .banner_content img {
  margin-left: 0;
  margin-top: 25px;
  width: 360px;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
}
@media (min-width: 825px) {
  .top_banner.top_banner--sale-new .banner_content img {
    margin-left: 35px;
    margin-top: 0;
  }
}
@media (min-width: 1000px) {
  .top_banner.top_banner--sale-new .banner_content img {
    width: 560px;
  }
}
.top_banner.top_banner--collection .banner__image {
  height: 686px;
  background-size: cover;
}
.top_banner.top_banner--collection .banner__text {
  position: absolute;
  text-align: center;
  font-family: bebas, arial, sans-serif;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 1040px;
  width: 100%;
}
.top_banner.top_banner--collection .banner__text h2 {
  color: #FFF;
  font-size: 85px;
  letter-spacing: 15px;
  line-height: 100px;
  /*&:before, &:after { content: ''; width: 90px; height: 1px; background: #cdcdcd; position: absolute; }
        &:before { left: 0; top: 50%; .translate(-100%, -100%); }
        &:after { right: 0; top: 50%; .translate(100%, -100%); }*/
}
.top_banner.top_banner--collection.top_banner--lasocki .banner__image,
.top_banner.top_banner--collection.top_banner--adidas .banner__image,
.top_banner.top_banner--collection.top_banner--sprandi .banner__image {
  height: 475px;
  background-size: cover;
}
.top_banner.top_banner--collection.top_banner--lasocki .banner__text,
.top_banner.top_banner--collection.top_banner--adidas .banner__text,
.top_banner.top_banner--collection.top_banner--sprandi .banner__text {
  position: absolute;
  text-align: center;
  font-family: bebas, arial, sans-serif;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 1200px;
  width: 100%;
}
.top_banner.top_banner--collection.top_banner--lasocki .banner__text h2,
.top_banner.top_banner--collection.top_banner--adidas .banner__text h2,
.top_banner.top_banner--collection.top_banner--sprandi .banner__text h2 {
  color: #FFF;
  font-size: 85px;
  letter-spacing: 15px;
  line-height: 100px;
}
@media (max-width: 990px) {
  .top_banner.top_banner--collection.top_banner--lasocki .banner__image,
  .top_banner.top_banner--collection.top_banner--adidas .banner__image,
  .top_banner.top_banner--collection.top_banner--sprandi .banner__image {
    height: 400px;
  }
  .top_banner.top_banner--collection.top_banner--lasocki .banner__text h2,
  .top_banner.top_banner--collection.top_banner--adidas .banner__text h2,
  .top_banner.top_banner--collection.top_banner--sprandi .banner__text h2 {
    font-size: 55px;
    line-height: 64px;
  }
}
@media (max-width: 480px) {
  .top_banner.top_banner--collection.top_banner--lasocki .banner__image,
  .top_banner.top_banner--collection.top_banner--adidas .banner__image,
  .top_banner.top_banner--collection.top_banner--sprandi .banner__image {
    height: 300px;
  }
  .top_banner.top_banner--collection.top_banner--lasocki .banner__text,
  .top_banner.top_banner--collection.top_banner--adidas .banner__text,
  .top_banner.top_banner--collection.top_banner--sprandi .banner__text {
    padding: 0 5%;
  }
  .top_banner.top_banner--collection.top_banner--lasocki .banner__text h2,
  .top_banner.top_banner--collection.top_banner--adidas .banner__text h2,
  .top_banner.top_banner--collection.top_banner--sprandi .banner__text h2 {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 8px;
  }
}
@media (max-width: 990px) {
  .top_banner.top_banner--collection .banner__image {
    height: 400px;
  }
  .top_banner.top_banner--collection .banner__text h2 {
    font-size: 55px;
    line-height: 64px;
  }
}
@media (max-width: 480px) {
  .top_banner.top_banner--collection .banner__image {
    height: 300px;
  }
  .top_banner.top_banner--collection .banner__text {
    padding: 0 5%;
  }
  .top_banner.top_banner--collection .banner__text h2 {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 8px;
  }
}
.top_banner.top_banner--collection.top_banner--man .banner__image {
  background-position: 50% 100%;
}
.top_banner video {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
.top_banner .banner__image {
  width: 100%;
  height: 400px;
  background-position: 50%;
  background-size: auto;
}
.top_banner .banner_content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  transform: translate(0, -50%) translateZ(0) scale(1, 1);
}
.top_banner .banner_content h2 {
  font-family: bebas, arial, sans-serif;
  color: #FFF;
  display: block;
  font-size: 68px;
  line-height: 75px;
  text-transform: uppercase;
  letter-spacing: 14px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.top_banner .banner_content h4 {
  font-family: montserratlight, arial, sans-serif;
  text-transform: uppercase;
  color: #FFF;
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 40px;
}
.top_banner .banner_content p {
  font-family: montserratlight, arial, sans-serif;
  font-size: 12px;
  color: #FFF;
  max-width: 500px;
  line-height: 18px;
  margin: 0 auto;
  padding: 0 2%;
}
@media (max-width: 1180px) {
  .top_banner.top_banner--video {
    height: auto;
  }
  .top_banner.top_banner--video .video-overlay {
    background-size: cover;
  }
  .top_banner.top_banner--video video {
    position: static;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
  }
  .top_banner.top_banner--collection .banner__image {
    background-position: 50% 25%;
  }
  .top_banner.top_banner--kids .banner__image {
    background-position: 50% 50%;
  }
  .top_banner .banner_content h2 {
    font-size: 56px;
    line-height: 64px;
  }
  .top_banner .banner__image.man-1 {
    background-position: 60% 0;
  }
  .top_banner .banner__image.man-2 {
    background-position: -390px 0;
  }
  .top_banner .banner__image.man-3 {
    background-position: 60% 0;
  }
  .top_banner .banner__image.kids-2 {
    background-position: -390px 0;
  }
  .top_banner .banner__image.kids-3 {
    background-position: -300px 0;
  }
  .top_banner .banner__image.woman-1 {
    background-position: -400px 0;
  }
  .top_banner .banner__image.woman-2 {
    background-position: -400px 0;
  }
  .top_banner .banner__image.woman-3 {
    background-position: -480px 0;
  }
}
@media (max-width: 990px) {
  .top_banner .banner__image.man-1 {
    background-position-x: 70%;
  }
  .top_banner .banner__image.man-3 {
    background-position-x: 70%;
  }
}
@media (max-width: 580px) {
  .top_banner.top_banner--collection .banner__image {
    background-position: 50% 30%;
  }
  .top_banner.top_banner--collection.top_banner--man .banner__image {
    background-position: 55% 25%;
  }
  .top_banner.top_banner--collection.top_banner--kids .banner__image {
    background-position: 55% 60%;
  }
  .top_banner .banner__image {
    background-position-x: 70%;
  }
  .top_banner .banner__image.black-friday {
    background-position-x: 50%;
  }
  .top_banner .banner_content h2 {
    font-size: 42px;
    line-height: 48px;
    padding: 0 5%;
    letter-spacing: 4px;
  }
}
.sidebar_filters {
  width: 20%;
  float: left;
  padding: 130px 0 110px;
  max-width: 200px;
}
.sidebar_filters .sidebar__header {
  margin-bottom: 30px;
}
.sidebar_filters .sidebar__header h3 {
  font-size: 24px;
  line-height: 28px;
}
.sidebar_filters .sidebar__content .list__collapse > a {
  font-family: bebas, arial, sans-serif;
  color: #666;
  font-size: 18px;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 1px solid #e5e5e5;
  display: block;
  margin-bottom: 10px;
}
.sidebar_filters .sidebar__content .list__collapse > a:after {
  content: '+';
  float: right;
  font-family: montserratlight, arial, sans-serif;
  font-size: 18px;
}
.sidebar_filters .sidebar__content .list__collapse > a.on:after {
  content: '-';
}
.sidebar_filters .sidebar__content .list__collapse .list__choose {
  height: 0;
  overflow: hidden;
  font-family: montserratlight, arial, sans-serif;
}
.sidebar_filters .sidebar__content .list__collapse .list__choose .list__item {
  min-height: 25px;
}
.sidebar_filters .sidebar__content .list__collapse .list__choose .list__item a {
  color: #666;
}
.sidebar_filters .sidebar__content .list__collapse .list__choose .list__item > a:before {
  content: '';
  text-align: center;
  float: left;
  width: 12px;
  height: 12px;
  border: 1px solid #e5e5e5;
  background: #f9f9f9;
  margin-right: 12px;
}
.sidebar_filters .sidebar__content .list__collapse .list__choose .list__item input {
  display: none;
}
.sidebar_filters .sidebar__content .list__collapse .list__choose .list__item label {
  cursor: pointer;
  color: #7c7c7c;
}
.sidebar_filters .sidebar__content .list__collapse .list__choose .list__item label:before {
  content: '';
  text-align: center;
  float: left;
  width: 12px;
  height: 12px;
  border: 1px solid #e5e5e5;
  background: #f9f9f9;
  margin-right: 12px;
}
.sidebar_filters .sidebar__content .list__collapse .list__choose .list__item label a {
  color: #7c7c7c;
}
.sidebar_filters .sidebar__content .list__collapse .list__choose .list__item input[type="checkbox"]:checked + label:before {
  content: "\2713 ";
}
.sidebar_filters .sidebar__content .list__collapse .list__choose .list__item input[type="checkbox"]:checked + a:before {
  content: "\2713 ";
}
.sidebar_filters .sidebar__content .list__collapse .list__choose .list__item .list__item--sale {
  font-weight: bold;
  color: #ed1a3b;
}
.sidebar_filters .sidebar__content .list__collapse .list__choose.on {
  margin-bottom: 20px;
}
.sidebar_filters .sidebar__content .list__collapse .list__selected {
  margin-bottom: 20px;
}
.sidebar_filters .sidebar__content .list__collapse .list__selected li a {
  display: block;
  height: 40px;
  margin-bottom: 10px;
  line-height: 40px;
  padding: 0 12px;
  background: #f8541f;
  color: #FFF;
  font-family: montserratlight, arial, sans-serif;
}
.sidebar_filters .sidebar__content .list__collapse .list__selected li a .icon-close {
  float: right;
  font-size: 12px;
  padding-top: 14px;
}
.list {
  width: 80%;
  float: right;
  padding: 30px 0 110px;
  max-width: 900px;
}
.list .jsNoProducts {
  padding-top: 80px;
  font-family: bebas, arial, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}
.list .list-category__header {
  text-align: right;
  margin-bottom: 20px;
}
.list .list-category__header #sort-products {
  width: 100%;
  max-width: 345px;
  margin-right: 1%;
}
.list ul {
  display: block;
  zoom: 1;
}
.list ul:before {
  content: '';
  display: block;
}
.list ul:after {
  content: '';
  display: table;
  clear: both;
}
.list ul > li {
  display: block;
  float: left;
  padding: 10px;
}
.list ul > li > a,
.list ul > li > .list-item__inner {
  position: relative;
  height: 325px;
  display: block;
  width: 100%;
  border: 1px transparent solid;
}
.list ul > li > a .product__icons,
.list ul > li > .list-item__inner .product__icons {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
}
.list ul > li > a .product__icons span,
.list ul > li > .list-item__inner .product__icons span {
  margin: 0 auto 5px;
}
.list ul > li > a .product__icons .icon-360,
.list ul > li > .list-item__inner .product__icons .icon-360 {
  display: block;
  width: 42px;
  height: 42px;
  background-position: contain;
  background-repeat: no-repeat;
  background-size: 42px 42px;
  background-image: url(../img/ico-360.png);
  text-indent: -99999px;
  z-index: 9;
}
.list ul > li > a .product__icons .icon-eobuwie,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie {
  display: block;
  width: 65px;
  height: 80px;
  background-image: url(../img/category/icon-eobuwie.gif);
  text-indent: -99999px;
  z-index: 9;
}
.list ul > li > a .product__icons .icon-eobuwie.at,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.at {
  background-image: url(../img/category/eobuwie/at.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.bg,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.bg {
  background-image: url(../img/category/eobuwie/bg.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.cz,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.cz {
  background-image: url(../img/category/eobuwie/cz.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.de,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.de {
  background-image: url(../img/category/eobuwie/de.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.ee,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.ee {
  background-image: url(../img/category/eobuwie/ee.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.en,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.en {
  background-image: url(../img/category/eobuwie/en.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.hr,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.hr {
  background-image: url(../img/category/eobuwie/hr.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.hu,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.hu {
  background-image: url(../img/category/eobuwie/hu.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.lt,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.lt {
  background-image: url(../img/category/eobuwie/lt.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.lv,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.lv {
  background-image: url(../img/category/eobuwie/lv.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.pl,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.pl {
  background-image: url(../img/category/eobuwie/pl.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.ro,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.ro {
  background-image: url(../img/category/eobuwie/ro.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.rs,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.rs {
  background-image: url(../img/category/eobuwie/rs.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.ru,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.ru {
  background-image: url(../img/category/eobuwie/ru.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.si,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.si {
  background-image: url(../img/category/eobuwie/si.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.sk,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.sk {
  background-image: url(../img/category/eobuwie/sk.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.tr,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.tr {
  background-image: url(../img/category/eobuwie/tr.gif);
}
.list ul > li > a .product__icons .icon-eobuwie.ua,
.list ul > li > .list-item__inner .product__icons .icon-eobuwie.ua {
  background-image: url(../img/category/eobuwie/ua.gif);
}
@media (max-width: 768px) {
  .list ul > li > a .product__icons .icon-eobuwie,
  .list ul > li > .list-item__inner .product__icons .icon-eobuwie {
    width: 40px;
    height: 49px;
    background-size: 100%;
  }
}
.list ul > li > a .product__icons .icon-new-collection,
.list ul > li > .list-item__inner .product__icons .icon-new-collection {
  background: url("../img/new_collection_badge_small.png") 0 0 no-repeat;
  display: block;
  width: 47px;
  height: 15px;
  text-indent: -99999px;
  z-index: 9;
}
@media (max-width: 768px) {
  .list ul > li > a .product__icons .icon-new-collection,
  .list ul > li > .list-item__inner .product__icons .icon-new-collection {
    width: 30px;
    height: 37px;
    background-size: 100%;
  }
}
.list ul > li > a .thumb,
.list ul > li > .list-item__inner .thumb {
  width: 100%;
}
.list ul > li > a .thumb.ratio-wrap,
.list ul > li > .list-item__inner .thumb.ratio-wrap {
  position: relative;
  padding-bottom: 180px;
  height: 0;
}
.list ul > li > a .thumb.ratio-wrap .ratio,
.list ul > li > .list-item__inner .thumb.ratio-wrap .ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.list ul > li > a .thumb.ratio-wrap .ratio .in-ratio-wrap,
.list ul > li > .list-item__inner .thumb.ratio-wrap .ratio .in-ratio-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -30%;
  padding-bottom: 100px;
  width: 60%;
  height: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.list ul > li > a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio,
.list ul > li > .list-item__inner .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.list ul > li > a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio.preload-background-image,
.list ul > li > .list-item__inner .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio.preload-background-image {
  background-image: url(../img/loader.svg);
  background-position: center;
  background-size: 30px 30px;
  background-repeat: no-repeat;
}
.list ul > li > a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio.preload-background-image-loaded,
.list ul > li > .list-item__inner .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio.preload-background-image-loaded {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  max-width: 140px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 580px) {
  .list ul > li > a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio.preload-background-image-loaded,
  .list ul > li > .list-item__inner .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio.preload-background-image-loaded {
    max-width: 90px;
  }
}
.list ul > li > a .data,
.list ul > li > .list-item__inner .data {
  text-align: center;
  padding: 30px 0;
  height: 100px;
}
.list ul > li > a .data .name,
.list ul > li > .list-item__inner .data .name {
  text-transform: uppercase;
  color: #000;
  font-size: 18px;
  line-height: 18px;
  padding: 0 10px 10px 15px;
  font-family: bebas, arial, sans-serif;
}
.list ul > li > a .data .price > span,
.list ul > li > .list-item__inner .data .price > span {
  display: inline-block;
  padding: 0;
  margin: 0 2px;
  color: #808080;
}
.list ul > li > a .data .price > span > span,
.list ul > li > .list-item__inner .data .price > span > span,
.list ul > li > a .data .price > span > sup,
.list ul > li > .list-item__inner .data .price > span > sup {
  font-size: 14px;
  font-family: montserratlight, arial, sans-serif;
}
.list ul > li > a .data .price > span > span,
.list ul > li > .list-item__inner .data .price > span > span {
  display: inline-block;
}
.list ul > li > a .data .price > span > span:nth-child(3),
.list ul > li > .list-item__inner .data .price > span > span:nth-child(3) {
  margin-left: 3px;
}
.list ul > li > a .data .price > span > sup,
.list ul > li > .list-item__inner .data .price > span > sup {
  display: inline-block;
  top: 0;
}
.list ul > li > a .data .price > span.new > span,
.list ul > li > .list-item__inner .data .price > span.new > span,
.list ul > li > a .data .price > span.new sup,
.list ul > li > .list-item__inner .data .price > span.new sup {
  color: #f8541f;
}
.list ul > li > a .data .price > span.old,
.list ul > li > .list-item__inner .data .price > span.old {
  position: relative;
}
.list ul > li > a .data .price > span.old::after,
.list ul > li > .list-item__inner .data .price > span.old::after {
  content: '';
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #808080;
}
.list ul > li > a:hover,
.list ul > li > .list-item__inner:hover {
  border-color: #d9d9d9;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.list ul > li > a:hover .thumb.ratio-wrap .ratio .in-ratio-wrap,
.list ul > li > .list-item__inner:hover .thumb.ratio-wrap .ratio .in-ratio-wrap {
  bottom: 5%;
}
.list ul > li.insert > a,
.list ul > li.insert > .list-item__inner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.list ul > li.insert > a .thumb.ratio-wrap,
.list ul > li.insert > .list-item__inner .thumb.ratio-wrap {
  padding-bottom: auto;
  height: 100%;
}
.list ul > li.insert > a .thumb.ratio-wrap .ratio .in-ratio-wrap,
.list ul > li.insert > .list-item__inner .thumb.ratio-wrap .ratio .in-ratio-wrap {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  margin-left: 0;
}
.list ul > li.insert > a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio,
.list ul > li.insert > .list-item__inner .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio {
  max-width: none;
  background-size: cover;
}
.list ul > li.insert > a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio.preload-background-image,
.list ul > li.insert > .list-item__inner .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio.preload-background-image {
  background-size: 10%;
}
.list ul > li.insert > a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .box-cover,
.list ul > li.insert > .list-item__inner .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .box-cover {
  z-index: 1;
  opacity: 0;
}
.list ul > li.insert > a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content,
.list ul > li.insert > .list-item__inner .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  z-index: 2;
  text-align: center;
  padding: 20px;
}
.list ul > li.insert > a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3,
.list ul > li.insert > .list-item__inner .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
  padding: 20px 0 20px 0;
  font-size: 32px;
  color: #FFF;
  letter-spacing: 8px;
}
.list ul > li.insert > a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content p,
.list ul > li.insert > .list-item__inner .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content p {
  color: #FFF;
  font-family: montserratlight, arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.list ul > li.insert > a.list-item__inner--sprandi,
.list ul > li.insert > .list-item__inner.list-item__inner--sprandi {
  background-color: #0076c0;
}
@media (max-width: 1024px) {
  .list ul > li.insert > a.list-item__inner--sprandi,
  .list ul > li.insert > .list-item__inner.list-item__inner--sprandi {
    background-image: none!important;
  }
}
.list ul > li.insert > a.list-item__inner--sprandi img,
.list ul > li.insert > .list-item__inner.list-item__inner--sprandi img {
  max-width: 160px;
  margin-bottom: 30px;
}
.list ul > li.insert > a.list-item__inner--sprandi div.content,
.list ul > li.insert > .list-item__inner.list-item__inner--sprandi div.content {
  width: 50%;
  right: 0;
  left: 50%;
}
@media (max-width: 580px) {
  .list ul > li.insert > a.list-item__inner--sprandi .content h3,
  .list ul > li.insert > .list-item__inner.list-item__inner--sprandi .content h3 {
    font-size: 28px!important;
    line-height: 1;
    letter-spacing: .2em;
  }
}
.list ul > li.insert.list-item--sport-shoes > a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content {
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
.list ul > li.insert.list-item--sport-shoes > a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content p {
  font-family: 'bebas';
  font-size: 30px;
  letter-spacing: 5px;
  color: #FFF;
}
.list ul > li.insert.list-item--sport-shoes .logo__puma {
  margin-left: 10px;
  margin-bottom: 12px;
  width: 92px;
}
@media (min-width: 500px) {
  .list ul > li.insert.list-item--sport-shoes .logo__puma {
    margin-left: 23px;
    width: 132px;
  }
}
.list ul > li.insert.list-item--sport-shoes .logo__new-balance {
  width: 92px;
  margin-bottom: 12px;
}
@media (min-width: 500px) {
  .list ul > li.insert.list-item--sport-shoes .logo__new-balance {
    width: 132px;
  }
}
.list ul > li.insert.list-item--sport-shoes .logo__ccc {
  margin-top: 10px;
  width: 80px;
}
@media (min-width: 500px) {
  .list ul > li.insert.list-item--sport-shoes .logo__ccc {
    width: 100px;
  }
}
.list ul > li.insert.list-item--sport-shoes .logo__ccc--small {
  margin-bottom: 8px;
}
.list ul > li.insert.list-item--black a .ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
  color: #000;
}
.list ul > li.insert.list-item--black a:hover .ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
  color: #000 !important;
}
.list ul > li.insert.list-item--sale a {
  background: #ed1a3b;
  padding: 11px;
  border: none;
}
.list ul > li.insert.list-item--sale a.no-click {
  pointer-events: none;
}
.list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content {
  width: 100%;
  padding: 0 0 1px 0;
}
.list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
  font-size: 19px;
  letter-spacing: 1px;
  font-family: ProximaNova-Bold, arial, sans-serif;
  padding: 0;
}
.list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content img {
  max-width: 200px;
  margin: 15px auto;
}
.list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content .text {
  margin-top: 20px;
  padding: 15px 20px;
  text-transform: uppercase;
  opacity: 1;
  color: #FFF;
  border: 1px solid #FFF;
  font-family: ainslie, arial, sans-serif;
  font-size: 28px;
  display: inline-block;
  text-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.list ul > li.insert.list-item--sale a:hover {
  border: transparent;
}
.list ul > li.insert.list-item--sale a:hover .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content .text {
  background: #FFF;
  color: #ed1a3b;
}
@media (max-width: 1200px) {
  .list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content.slide--double .text {
    font-size: 15px;
  }
  .list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content .text {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content img,
  .list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .slide--double img {
    max-width: 60%;
  }
  .list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content.slide--double h3 {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
    letter-spacing: 0!important;
    font-size: 14px !important;
    padding: 0 6px;
  }
  .list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content .text {
    font-size: 16px;
    letter-spacing: 0;
    padding: 12px 10px;
  }
}
@media (max-width: 520px) {
  .list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
    letter-spacing: 0!important;
    font-size: 14px !important;
    padding: 0 6px;
  }
  .list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content .text {
    font-size: 16px;
    letter-spacing: 0;
    padding: 12px 10px;
  }
}
@media (max-width: 380px) {
  .list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
    letter-spacing: 0!important;
    font-size: 12px !important ;
    padding: 0 3px;
  }
  .list ul > li.insert.list-item--sale a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content .text {
    font-size: 12px;
    letter-spacing: 0;
    padding: 12px 10px;
  }
}
.list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3,
.list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h4 {
  color: #fff;
  line-height: 1.2;
}
.list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
  margin-bottom: 5px;
  font-family: "ProximaNova-Bold";
  font-weight: 900;
}
@media (min-width: 641px) {
  .list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }
}
@media (min-width: 980px) {
  .list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
    margin-bottom: 12px;
    font-size: 30px;
    letter-spacing: 2px;
  }
}
@media (min-width: 641px) {
  .list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3.small {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (min-width: 980px) {
  .list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3.small {
    font-size: 20px;
    line-height: 28px;
  }
}
.list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h4 {
  margin-bottom: 15px;
  font-family: "ProximaNova";
  font-size: 12px;
  font-weight: 400;
}
@media (min-width: 641px) {
  .list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h4 {
    font-size: 15px;
  }
}
@media (min-width: 980px) {
  .list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h4 {
    font-size: 17px;
  }
}
@media (min-width: 1100px) {
  .list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h4 {
    margin-bottom: 35px;
  }
}
.list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content img {
  display: block;
  margin: 10px auto 20px;
  width: 200px;
  max-width: 100%;
}
@media (min-width: 641px) {
  .list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content img {
    height: 70px;
    max-height: 100%;
  }
}
@media (min-width: 980px) {
  .list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content img {
    margin: 11px auto 36px;
    height: 76px;
    width: auto;
  }
}
.list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content .text {
  margin-top: 0;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  font-family: ainslie, arial, sans-serif;
  font-weight: 400;
}
@media (min-width: 400px) {
  .list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content .text {
    width: auto;
  }
}
@media (min-width: 1100px) {
  .list ul > li.insert.list-item--sale-new a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content .text {
    padding: 17px 21px;
    font-size: 25px;
  }
}
.list ul > li.insert.list-item--small .sale {
  background-size: 104%;
}
.list ul > li.insert.list-item--small .sale .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content {
  width: 100%;
  z-index: 0;
}
.list ul > li.insert.list-item--small .sale .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3,
.list ul > li.insert.list-item--small .sale .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content p {
  color: #FFF;
  text-transform: uppercase;
}
.list ul > li.insert.list-item--small .sale .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
  font-family: ProximaNovaA-Bold, arial, sans-serif;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: -120px;
  font-size: 24px;
  letter-spacing: 3px;
}
.list ul > li.insert.list-item--small .sale .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content p {
  position: absolute;
  font-family: ProximaNovaSemi, arial, sans-serif;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 16px;
  left: 20px;
  right: 20px;
  text-align: center;
  min-height: 40px;
  bottom: -80px;
}
.list ul > li.insert.list-item--small a:hover .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3,
.list ul > li.insert.list-item--small a:hover .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content p {
  color: #FFF;
}
.list ul > li.insert.list-item--vertical {
  position: relative;
}
.list ul > li.insert.list-item--vertical .list-item__inner {
  height: 670px;
}
.list ul > li.insert.list-item--vertical .thumb.ratio-wrap {
  padding-bottom: 0;
}
.list ul > li.insert.list-item--vertical .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio {
  background-size: cover;
}
.list ul > li.insert.list-item--vertical .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content {
  position: absolute;
  text-align: center;
  left: 6%;
  bottom: 3%;
  top: auto;
  right: 6%;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
  transform: translate(0, 0) translateZ(0) scale(1, 1);
  padding: 10px;
}
.list ul > li.insert.list-item--vertical .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content a {
  display: inline-block;
  padding: 10px 5px;
  line-height: 24px;
  width: 100%;
  max-width: 275px;
  letter-spacing: 4px;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  font-family: bebas, arial, sans-serif;
  color: #FFF;
  border: 1px solid #FFF;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.list ul > li.insert.list-item--vertical .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content a:hover {
  border-color: #FFF;
  color: #000;
  background: #FFF;
}
.list ul > li.list-item--full-width {
  width: 100%;
}
.list ul > li.list-item--full-width > .list-item__inner {
  border: 1px solid #e5e5e5;
  background-size: cover;
}
.list ul > li.list-item--full-width > .list-item__inner .box-cover {
  background: #FFF;
}
.list ul > li.list-item--full-width > .list-item__inner .content {
  position: absolute;
  left: 6%;
  top: 50%;
  right: 6%;
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  transform: translate(0, -50%) translateZ(0) scale(1, 1);
  text-align: center;
}
.list ul > li.list-item--full-width > .list-item__inner .content a {
  display: inline-block;
  padding: 20px 40px;
  letter-spacing: 4px;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  font-family: bebas, arial, sans-serif;
  color: #FFF;
  border: 1px solid #FFF;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.list ul > li.list-item--full-width > .list-item__inner .content a:hover {
  border-color: #FFF;
  color: #000;
  background: #FFF;
}
.list ul > li.list-item--full-width > .list-item__inner .content h3 {
  font-size: 40px;
  color: #FFF;
  margin-bottom: 30px;
  padding: 0;
  letter-spacing: 10px;
}
.list ul > li.list-item--full-width > .list-item__inner .content h4 {
  font-family: montserratlight, arial, sans-serif;
  font-size: 14px;
  color: #FFF;
  margin-bottom: 40px;
  letter-spacing: 3px;
}
.list ul > li.list-item--full-width > .list-item__inner:hover .box-cover {
  background: rgba(0, 0, 0, 0.4);
}
.list ul > li.list-item--full-width.list-item--full-width--sale > .list-item__inner .content h3,
.list ul > li.list-item--full-width.list-item--full-width--sale > .list-item__inner .content h4,
.list ul > li.list-item--full-width.list-item--full-width--sale > .list-item__inner .content a {
  color: #000;
}
.list ul > li.list-item--full-width.list-item--full-width--sale > .list-item__inner .content a {
  width: auto;
  border-color: #000;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas > .list-item__inner,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner {
  border: none;
  height: 330px;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas > .list-item__inner .content,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner .content {
  right: auto;
  max-width: 50%;
  left: 0;
  padding: 28px;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas > .list-item__inner .content h3,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner .content h3 {
  font-family: ainslie, arial, sans-serif;
  font-size: 26px;
  letter-spacing: 0;
  color: #FFF;
  margin-bottom: 10px;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas > .list-item__inner .content p,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner .content p {
  font-family: ainslie, arial, sans-serif;
  color: #FFF;
  font-size: 16px;
  line-height: 22px;
  max-width: 380px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas > .list-item__inner,
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner {
    background-image: url('../img/category/banner-full-width-adidas-mobile.jpg') !important;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas > .list-item__inner .content,
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner .content {
    max-width: 100% !important;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas > .list-item__inner .content h3,
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner .content h3 {
    font-size: 22px!important;
    margin-bottom: 40px;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas > .list-item__inner .content p,
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner .content p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas > .list-item__inner .content h3,
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner .content h3 {
    font-size: 22px!important;
  }
}
@media (max-width: 480px) {
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas > .list-item__inner .content,
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner .content {
    padding: 5px;
  }
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner {
  height: 380px;
  background-position: 100% 50%;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content {
  position: static;
  transform: none;
  max-width: 55%;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content img {
  max-width: 126px;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content img.box-logo {
  display: block;
  margin: 28px auto 0;
  max-width: 323px;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content h3 {
  margin-top: 30px;
  font-size: 50px;
  font-family: montserratbold, arial, sans-serif;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content p {
  margin-top: 24px;
  font-size: 11px;
  line-height: 18px;
  font-family: montserratregular, arial, sans-serif;
}
@media (max-width: 1024px) {
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner {
    background-image: url('../img/category/play-it-cool-bg-1024.jpg') !important;
    height: 308px;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content {
    transform: none!important;
    max-width: 370px!important;
    padding: 20px 10px;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content h3 {
    margin-top: 15px;
    margin-bottom: 0;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content img {
    max-width: 99px;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content img.box-logo {
    margin-top: 22px;
    max-width: 285px;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content p {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner {
    background-image: url('../img/category/play-it-cool-bg-768.jpg') !important;
    height: 278px;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner .content {
    max-width: 100%!important;
    padding-top: 10px;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content img {
    max-width: 97px;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content img.box-logo {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 480px) {
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner {
    height: auto;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content img {
    max-width: 80px;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content h3 {
    font-size: 32px;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content p {
    font-size: 10px;
    line-height: 16px;
  }
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content p br {
    display: none;
  }
}
@media (max-width: 320px) {
  .list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma > .list-item__inner > .content img.box-logo {
    max-width: 217px;
  }
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas-map,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map {
  overflow: hidden;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas-map > .list-item__inner,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map > .list-item__inner {
  height: 550px;
  border: none;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas-map > .list-item__inner .content,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map > .list-item__inner .content {
  top: 0!important;
  left: 0!important;
  right: 0!important;
  bottom: 0!important;
  max-width: none!important;
  -webkit-transform: translate(0, 0) !important;
  -moz-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  -o-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas-map > .list-item__inner .content__inner,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map > .list-item__inner .content__inner {
  position: relative;
  height: 550px;
  width: 40%;
  float: left;
  background: #b9d536;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #b9d536 0%, #09b49f 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #b9d536 0%, #09b49f 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #b9d536 0%, #09b49f 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b9d536', endColorstr='#09b49f', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas-map > .list-item__inner .content__wrap,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map > .list-item__inner .content__wrap {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  padding: 20px;
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  transform: translate(0, -50%) translateZ(0) scale(1, 1);
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas-map > .list-item__inner .content__wrap p,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map > .list-item__inner .content__wrap p {
  font-family: ainslie, arial, sans-serif;
  color: #FFF;
  font-size: 16px;
  line-height: 20px;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas-map > .list-item__inner .content__wrap img,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map > .list-item__inner .content__wrap img {
  display: block;
  margin: 25px auto 0 auto;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas-map > .list-item__inner .content .content__bg,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map > .list-item__inner .content .content__bg {
  width: 60%;
  float: right;
  height: 310px;
  display: none;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas-map > .list-item__inner #map-canvas,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map > .list-item__inner #map-canvas {
  width: 60%;
  float: right;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas-map > .list-item__inner .angular-google-map-container,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map > .list-item__inner .angular-google-map-container {
  height: 550px;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas-map > .list-item__inner .angular-google-map-container .gmnoprint,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map > .list-item__inner .angular-google-map-container .gmnoprint {
  display: none;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--adidas-map > .list-item__inner .angular-google-map-container > div > div a,
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map > .list-item__inner .angular-google-map-container > div > div a {
  display: none!important;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map > .list-item__inner .content__wrap img {
  width: 134px;
}
.list ul > li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map > .list-item__inner .content__inner {
  background: #4168d1;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #4168d1 0%, #733b67 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #4168d1 0%, #733b67 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #4168d1 0%, #733b67 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4168d1', endColorstr='#733b67', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
.list ul > li.fix {
  margin-left: -100%;
  margin-top: 345px;
}
.list ul > li.after-vertical-fix {
  clear: left !important;
}
@media (max-width: 1024px) {
  .list ul > li.fix {
    margin-left: 0;
    margin-top: 0;
    clear: left;
  }
  .list ul > li.afterfix {
    clear: none !important;
  }
}
.list {
  background-color: transparent;
}
.list.zoom-1 ul > li {
  width: 20%;
  clear: none !important;
}
.list.zoom-2 ul > li {
  width: 25%;
  clear: none !important;
}
.loading-box {
  display: block;
  max-width: 300px;
  padding: 20px;
  border: 1px #eee solid;
  margin: 30px auto 0 auto;
  text-align: center;
  text-indent: -99999px;
  background-color: transparent;
  background-image: url(../img/loader.svg);
  background-position: 50% 50%;
  background-size: 30px auto;
  background-repeat: no-repeat;
}
#bottom-bar-category {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  z-index: 999;
}
#bottom-bar-category .bottom-bar {
  max-width: 1600px;
  margin: 0 auto;
  height: 65px;
  zoom: 1;
}
#bottom-bar-category .bottom-bar:before {
  content: '';
  display: block;
}
#bottom-bar-category .bottom-bar:after {
  content: '';
  display: table;
  clear: both;
}
#bottom-bar-category .bottom-bar > div {
  height: 65px;
  float: left;
  border-left: 1px solid #262626;
  zoom: 1;
}
#bottom-bar-category .bottom-bar > div:before {
  content: '';
  display: block;
}
#bottom-bar-category .bottom-bar > div:after {
  content: '';
  display: table;
  clear: both;
}
#bottom-bar-category .bottom-bar > div.head {
  width: 15%;
  text-align: center;
  border-left: 0;
}
#bottom-bar-category .bottom-bar > div.head > span {
  display: block;
  color: #FFF;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 2px;
  padding-top: 22px;
  font-family: bebas, arial, sans-serif;
}
#bottom-bar-category .bottom-bar > div.select {
  position: relative;
  width: 23.33333%;
}
#bottom-bar-category .bottom-bar > div.select > a.select-btn {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #000;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 29px 28px 0px 20px;
  -webkit-transition: background-color 0.3s ease 0s;
  -moz-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  -ms-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
  -o-transform: translate(0px);
}
#bottom-bar-category .bottom-bar > div.select > a.select-btn > strong {
  /*position: absolute;
            top: 29px;
            left: 20px;*/
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-family: montserratregular, arial, sans-serif;
}
#bottom-bar-category .bottom-bar > div.select > a.select-btn > span {
  position: absolute;
  right: 40px;
  top: 29px;
  text-transform: uppercase;
  color: #b3b3b3;
  font-size: 11px;
  font-family: montserratlight, arial, sans-serif;
}
#bottom-bar-category .bottom-bar > div.select > a.select-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-top: 5px solid #b3b3b3;
  border-right: 5px solid transparent;
  border-bottom: 0px solid transparent;
  border-left: 5px solid transparent;
}
#bottom-bar-category .bottom-bar > div.select > a.select-btn:hover {
  background-color: #1a1a1a;
}
#bottom-bar-category .bottom-bar > div.select.active > a.select-btn {
  background-color: #1a1a1a;
}
#bottom-bar-category .bottom-bar > div.select.active > a.select-btn::after {
  border-top: 0px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #b3b3b3;
  border-left: 5px solid transparent;
}
#bottom-bar-category .bottom-bar > div.zoomer {
  width: 15%;
  border-right: 1px solid #262626;
}
.zoomer {
  padding-top: 16px;
  float: right !important;
}
.zoomer .slider-icon {
  width: 20%;
  height: 30px;
  background-color: transparent;
  background-repeat: no-repeat;
  float: left;
  cursor: pointer;
}
.zoomer .slider-icon.minus {
  background-image: url(../img/zoomer-low.png);
  background-position: 40% 50%;
}
.zoomer .slider-icon.plus {
  background-image: url(../img/zoomer-hight.png);
  background-position: 60% 50%;
}
.zoomer #slider-wrap {
  padding-top: 7px;
  width: 60%;
  float: left;
}
.zoomer #slider .noUi-background {
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.zoomer #slider .noUi-handle {
  display: block;
  width: 18px;
  height: 18px;
  left: -9px;
  top: 0;
  background-color: #f8541f;
  cursor: pointer;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.zoomer #slider .noUi-active {
  background-color: #f64208;
}
.zoomer #slider.noUi-target {
  border: 0;
}
.zoomer #slider.noUi-horizontal {
  height: 18px;
  cursor: pointer;
}
.zoomer #slider.noUi-horizontal::before {
  position: absolute;
  top: 50%;
  margin-top: -1px;
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #808080;
}
/* BEGIN video slider */
.video-js {
  position: absolute;
  bottom: 0;
  z-index: 9;
}
.video-js.vjs-fluid {
  padding-top: 36%;
}
@media (max-width: 990px) {
  .video-js.vjs-fluid {
    padding-top: 39%;
  }
}
@media (max-width: 700px) {
  .video-js.vjs-fluid {
    height: 320px;
  }
}
.video-js .vjs-poster {
  background-image: url("../img/video/video-bg.jpg") !important;
}
/* END video slider */
.product-view {
  min-height: 100vh;
}
#wrap-product {
  position: relative;
  padding: 0;
  zoom: 1;
}
#wrap-product:before {
  content: '';
  width: 100%;
  height: 190px;
  position: absolute;
  left: 0;
  top: -2%;
  right: 0;
  z-index: -1;
  background: linear-gradient(#f2f2f2, #FFF);
}
#wrap-product:before {
  content: '';
  display: block;
}
#wrap-product:after {
  content: '';
  display: table;
  clear: both;
}
#wrap-product #product-head,
#wrap-product #product-data {
  width: 100%;
}
#wrap-product #product-head .wrap,
#wrap-product #product-data .wrap {
  width: 65%;
  margin: 0 auto;
}
#wrap-product #product-head {
  padding-top: 3%;
  text-align: center;
  margin-bottom: 45px;
}
#wrap-product #product-head h1 {
  font-size: 45px;
  margin: 0 0 20px 0;
  letter-spacing: 8px;
  position: relative;
  padding: 0 75px;
  display: inline-block;
  font-family: bebas, arial, sans-serif;
}
#wrap-product #product-head h1:before,
#wrap-product #product-head h1:after {
  content: '';
  width: 60px;
  height: 1px;
  background-color: #e2e2e2;
  position: absolute;
  top: 50%;
}
#wrap-product #product-head h1:before {
  left: 0;
  -webkit-transform: translateX(-100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
#wrap-product #product-head h1:after {
  right: 0;
  -webkit-transform: translateX(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
#wrap-product #product-head .additional-info {
  font-family: montserratlight, arial, sans-serif;
  font-size: 11px;
  color: #666;
  margin-bottom: 25px;
}
#wrap-product #product-head .additional-info .item {
  display: inline-block;
  margin-right: 30px;
}
#wrap-product #product-head .additional-info .item:last-child {
  margin-right: 0;
}
#wrap-product #product-head .price > span {
  display: inline-block;
  padding: 0;
  margin: 0 2px;
  color: #808080;
  letter-spacing: 1px;
}
#wrap-product #product-head .price > span > span,
#wrap-product #product-head .price > span > sup {
  font-size: 24px;
  color: #f8541f;
  font-family: montserratlight, arial, sans-serif;
}
#wrap-product #product-head .price > span > span {
  display: inline-block;
}
#wrap-product #product-head .price > span > span:nth-child(3) {
  margin-left: 3px;
}
#wrap-product #product-head .price > span > sup {
  display: inline-block;
  top: 0;
}
#wrap-product #product-head .price > span.new > span,
#wrap-product #product-head .price > span.new sup {
  color: #f8541f;
}
#wrap-product #product-head .price > span.old {
  position: relative;
}
#wrap-product #product-head .price > span.old::after {
  content: '';
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #808080;
}
#wrap-product #product-head .prev-next-btns {
  padding: 20px 0 0 0;
  font-size: 0;
}
#wrap-product #product-head .prev-next-btns > a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px #cccccc solid;
  cursor: pointer;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-product #product-head .prev-next-btns > a > .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  display: block;
  width: 20px;
  height: 20px;
  text-indent: -99999px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-image: url(../img/next-prev.png);
}
#wrap-product #product-head .prev-next-btns > a.prev .icon {
  background-position: 0 -20px;
}
#wrap-product #product-head .prev-next-btns > a.next .icon {
  background-position: 0 0;
}
#wrap-product #product-head .prev-next-btns > a:hover {
  background-color: #000;
  border-color: #000;
}
#wrap-product #product-head .prev-next-btns > a:hover.prev .icon {
  background-position: -20px -20px;
}
#wrap-product #product-head .prev-next-btns > a:hover.next .icon {
  background-position: -20px 0;
}
#wrap-product #product-section {
  zoom: 1;
  position: relative;
}
#wrap-product #product-section:before {
  content: '';
  display: block;
}
#wrap-product #product-section:after {
  content: '';
  display: table;
  clear: both;
}
#wrap-product #product-sizes {
  width: 20%;
  min-width: 146px;
  max-width: 166px;
  top: 0;
  right: 5%;
  padding-left: 20px;
  position: absolute;
}
#wrap-product #product-sizes .sizes {
  margin-right: -5px;
  margin-left: -5px;
  zoom: 1;
}
#wrap-product #product-sizes .sizes:before {
  content: '';
  display: block;
}
#wrap-product #product-sizes .sizes:after {
  content: '';
  display: table;
  clear: both;
}
#wrap-product #product-sizes .sizes > a {
  display: block;
  float: left;
  line-height: 40px;
  font-size: 14px;
  margin: 5px;
  border: 1px #cccccc solid;
  color: #000;
  width: 40px;
  height: 40px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  font-family: montserratlight, arial, sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-product #product-sizes .sizes > a:hover {
  background-color: #f8541f;
  color: #FFF;
  border-color: #f8541f;
}
#wrap-product #product-sizes .sizes > a.active {
  background-color: #f8541f;
  color: #FFF;
  border-color: #f8541f;
}
#wrap-product #product-sizes .btn {
  padding-top: 20px;
}
#wrap-product #product-sizes .btn > a {
  display: block;
  border: 1px #cccccc solid;
  padding: 15px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 2px;
  color: #000;
  text-transform: uppercase;
  font-family: bebas, arial, sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-product #product-sizes .btn > a:hover {
  background-color: #000;
  color: #FFF;
  border-color: #000;
}
#wrap-product #product-sizes .btn > a.ru {
  letter-spacing: 0;
}
#wrap-product #product-sizes .new_collection {
  margin-bottom: 30px;
}
@media (max-width: 990px) {
  #wrap-product #product-sizes .new_collection {
    margin-top: 30px;
  }
  #wrap-product #product-sizes .new_collection img {
    display: block;
    margin: 0 auto;
  }
}
#wrap-product #product-sizes .share {
  padding-bottom: 40px;
  text-align: center;
}
#wrap-product #product-sizes .share a {
  font-family: montserratlight, arial, sans-serif;
  font-size: 13px;
  padding-right: 30px;
  background: url("../img/share-icon.png") 95% 50% no-repeat;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-product #product-sizes .share a:hover {
  letter-spacing: 2px;
}
@media (max-width: 990px) {
  #wrap-product #product-sizes .share {
    padding-bottom: 20px;
  }
}
#wrap-product #product-sizes .btn_eobuwie {
  margin-top: 20px;
}
#wrap-product #product-sizes .btn_eobuwie a {
  text-indent: -99999%;
  display: block;
  width: 146px;
  height: 183px;
  position: relative;
}
#wrap-product #product-sizes .btn_eobuwie a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 146px;
  height: 183px;
}
#wrap-product #product-sizes .btn_eobuwie a .hover {
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-product #product-sizes .btn_eobuwie a:hover .hover {
  opacity: 1;
}
@media (max-width: 990px) {
  #wrap-product #product-sizes .btn_eobuwie {
    text-align: center;
  }
  #wrap-product #product-sizes .btn_eobuwie a {
    display: inline-block;
  }
}
#wrap-product #product-variations {
  width: 20%;
  min-height: 1px;
  padding-right: 20px;
  position: absolute;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-100%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-backface-visibility: hidden;
}
#wrap-product #product-variations ul.same-model-list {
  zoom: 1;
}
#wrap-product #product-variations ul.same-model-list:before {
  content: '';
  display: block;
}
#wrap-product #product-variations ul.same-model-list:after {
  content: '';
  display: table;
  clear: both;
}
#wrap-product #product-variations ul.same-model-list li {
  position: relative;
  margin-bottom: 10px;
}
#wrap-product #product-variations ul.same-model-list a {
  display: inline-block;
}
#wrap-product #product-variations ul.same-model-list a:hover .same-model-container {
  border: 1px solid #f8541f;
  opacity: 1;
}
#wrap-product #product-variations ul.same-model-list .same-model-container {
  border: 1px solid #000;
  width: 94px;
  height: 94px;
  position: relative;
  opacity: 0.35;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-product #product-variations ul.same-model-list .same-model-container.current-item {
  border: 1px solid #f8541f;
  opacity: 1;
}
#wrap-product #product-variations ul.same-model-list .same-model-container .same-model-item {
  position: absolute;
  width: 70px;
  height: 70px;
  left: 50%;
  top: 50%;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
#wrap-product #product-variations ul.same-model-list .same-model-container .same-model-item.preload-background-image {
  background-image: url(../img/loader.svg);
  background-position: center;
  background-size: 30px 30px;
  background-repeat: no-repeat;
}
#wrap-product #product-variations ul.same-model-list .same-model-container .same-model-item.preload-background-image-loaded {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
#wrap-product #product-data {
  padding: 20px 0 0 0;
}
#wrap-product #product-data .info {
  padding: 60px 0 0 0;
  text-align: center;
}
#wrap-product #product-data .info .col {
  display: inline-block;
  margin-right: 40px;
  zoom: 1;
}
#wrap-product #product-data .info .col:last-child {
  margin-right: 0;
}
#wrap-product #product-data .info .col:before {
  content: '';
  display: block;
}
#wrap-product #product-data .info .col:after {
  content: '';
  display: table;
  clear: both;
}
#wrap-product #product-data .info .col > div {
  text-align: left;
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  padding-right: 5px;
  font-family: montserratlight, arial, sans-serif;
}
#wrap-product #product-data .info .col > div.left {
  color: #000;
}
#wrap-product #product-data .info .col > div.right {
  color: #f8541f;
}
#wrap-product #product-data .desc {
  position: relative;
  padding-top: 25px;
  margin-top: 25px;
}
#wrap-product #product-data .desc:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 1px;
  width: 140px;
  background: #ccc;
}
#wrap-product #product-data .desc p {
  text-align: center;
  font-family: montserratlight, arial, sans-serif;
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 20px;
}
@media (max-width: 990px) {
  #wrap-product #product-data .desc p br {
    display: none;
  }
}
#wrap-product #product-photos {
  width: 60%;
  margin: 0 auto;
}
#wrap-product #product-photos #photo {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
  margin: 0 auto;
}
#wrap-product #product-photos #photo .icon-360 {
  position: absolute;
  top: 0;
  right: 20px;
  display: block;
  width: 58px;
  height: 58px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(../img/ico-360.png);
  text-indent: -99999px;
  z-index: 9;
  cursor: pointer;
}
#wrap-product #product-photos #photo .item {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#wrap-product #product-photos #photo .item.preload-background-image {
  background-image: url(../img/loader.svg);
  background-position: 50% 50%;
  background-size: 40px 40px;
  background-repeat: no-repeat;
}
#wrap-product #product-photos #photo .item.preload-background-image-loaded {
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#wrap-product #product-photos #photo .item #product-zoom {
  height: 100%;
  width: 100%;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
#wrap-product #product-photos #photo .item #product-zoom > img {
  display: block;
  width: 100%;
  height: 100%;
}
.product-prev-next-animation {
  position: relative;
  height: 0;
  width: 100%;
}
.product-prev-next-animation > .prev-next-btns {
  position: absolute;
  top: 35px;
  display: block;
  width: 45px;
  height: 45px;
  border: 1px #cccccc solid;
  cursor: pointer;
  z-index: 99;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.product-prev-next-animation > .prev-next-btns > .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  display: block;
  width: 20px;
  height: 20px;
  text-indent: -99999px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-image: url(../img/next-prev.png);
}
.product-prev-next-animation > .prev-next-btns.prev {
  left: 7%;
}
.product-prev-next-animation > .prev-next-btns.prev .icon {
  background-position: 0 -20px;
}
.product-prev-next-animation > .prev-next-btns.next {
  right: 7%;
}
.product-prev-next-animation > .prev-next-btns.next .icon {
  background-position: 0 0;
}
.product-prev-next-animation > .prev-next-btns:hover {
  background-color: #000;
  border-color: #000;
}
.product-prev-next-animation > .prev-next-btns:hover.prev .icon {
  background-position: -20px -20px;
}
.product-prev-next-animation > .prev-next-btns:hover.next .icon {
  background-position: -20px 0;
}
/**
 * VIEW 360
 */
#view-360,
#cover-360 {
  display: none;
}
#cover-360 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 99999;
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
  filter: alpha(opacity=80);
}
#product-related {
  margin: 60px 0 90px 0;
  position: relative;
}
#product-related #related-header {
  text-align: center;
  margin: 60px 0 60px 0;
}
#product-related #related-header h2 {
  font-size: 30px;
  margin: 0;
  letter-spacing: 2px;
  position: relative;
  padding: 0 40px;
  display: inline-block;
  font-family: bebas, arial, sans-serif;
}
#product-related #related-header h2:before,
#product-related #related-header h2:after {
  content: '';
  width: 90px;
  height: 1px;
  background-color: #e2e2e2;
  position: absolute;
  top: 50%;
}
#product-related #related-header h2:before {
  left: 0;
  -webkit-transform: translateX(-100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
#product-related #related-header h2:after {
  right: 0;
  -webkit-transform: translateX(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
#product-related #related-bar-wrap {
  width: 100%;
  background-color: #000;
  margin-bottom: 10px;
}
#product-related #related-bar-wrap #related-bar {
  max-width: 1600px;
  margin: 0 auto;
  height: 48px;
  text-align: center;
}
#product-related #related-bar-wrap #related-bar > span {
  display: block;
  padding: 12px 0 0 0;
  font-size: 28px;
  color: #FFF;
  letter-spacing: 2px;
  font-family: bebas, arial, sans-serif;
}
#product-related .wrap-narrow-related {
  max-width: 1400px;
  margin: 0 auto;
  zoom: 1;
}
#product-related .wrap-narrow-related:before {
  content: '';
  display: block;
}
#product-related .wrap-narrow-related:after {
  content: '';
  display: table;
  clear: both;
}
#product-related a {
  position: relative;
  display: block;
  width: 100%;
  border: 1px transparent solid;
}
#product-related a .thumb {
  width: 100%;
}
#product-related a .thumb.ratio-wrap {
  position: relative;
  padding-bottom: 80%;
  height: 0;
}
#product-related a .thumb.ratio-wrap .ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#product-related a .thumb.ratio-wrap .ratio .in-ratio-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -30%;
  padding-bottom: 60%;
  width: 60%;
  height: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#product-related a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}
#product-related a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio.preload-background-image {
  background-image: url(../img/loader.svg);
  background-position: center;
  background-size: 30px 30px;
  background-repeat: no-repeat;
}
#product-related a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio.preload-background-image-loaded {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}
#product-related a .data {
  text-align: center;
  padding: 30px 0;
}
#product-related a .data .name {
  text-transform: uppercase;
  color: #000;
  font-size: 18px;
  line-height: 18px;
  padding: 0 10px 7px 15px;
  font-family: bebas, arial, sans-serif;
}
#product-related a .data .price > span {
  display: inline-block;
  padding: 0;
  margin: 0 2px;
  color: #808080;
}
#product-related a .data .price > span > span,
#product-related a .data .price > span > sup {
  font-size: 14px;
  font-family: montserratlight, arial, sans-serif;
}
#product-related a .data .price > span > span {
  display: inline-block;
}
#product-related a .data .price > span > span:nth-child(3) {
  margin-left: 3px;
}
#product-related a .data .price > span > sup {
  display: inline-block;
  top: 0;
}
#product-related a .data .price > span.new > span,
#product-related a .data .price > span.new sup {
  color: #f8541f;
}
#product-related a .data .price > span.old {
  position: relative;
}
#product-related a .data .price > span.old::after {
  content: '';
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #808080;
}
#product-related a:hover {
  border-color: #d9d9d9;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#product-related a:hover .thumb.ratio-wrap .ratio .in-ratio-wrap {
  bottom: 5%;
}
#product-related .list-nav #related-scroll {
  padding: 20px 0 0 0;
  font-size: 0;
}
#product-related .list-nav #related-scroll > a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px #cccccc solid;
  cursor: pointer;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#product-related .list-nav #related-scroll > a > .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  display: block;
  width: 20px;
  height: 20px;
  text-indent: -99999px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-image: url(../img/next-prev.png);
}
#product-related .list-nav #related-scroll > a.arrow-left,
#product-related .list-nav #related-scroll > a.arrow-right {
  position: absolute;
  top: 50%;
  margin-top: 0;
}
#product-related .list-nav #related-scroll > a.arrow-left {
  left: 28px;
}
#product-related .list-nav #related-scroll > a.arrow-left .icon {
  background-position: 0 -20px;
}
#product-related .list-nav #related-scroll > a.arrow-right {
  right: 28px;
}
#product-related .list-nav #related-scroll > a.arrow-right .icon {
  background-position: 0 0;
}
#product-related .list-nav #related-scroll > a:hover {
  background-color: #000;
  border-color: #000;
}
#product-related .list-nav #related-scroll > a:hover.arrow-left .icon {
  background-position: -20px -20px;
}
#product-related .list-nav #related-scroll > a:hover.arrow-right .icon {
  background-position: -20px 0;
}
.product-inspiration-container {
  margin-bottom: 90px;
  zoom: 1;
}
.product-inspiration-container:before {
  content: '';
  display: block;
}
.product-inspiration-container:after {
  content: '';
  display: table;
  clear: both;
}
.product-inspiration-container .product-inspiration-header {
  text-align: center;
  margin: 100px 0 60px 0;
}
.product-inspiration-container .product-inspiration-header h2 {
  font-size: 30px;
  margin: 0;
  letter-spacing: 2px;
  position: relative;
  padding: 0 40px;
  display: inline-block;
  font-family: bebas, arial, sans-serif;
}
.product-inspiration-container .product-inspiration-header h2:before,
.product-inspiration-container .product-inspiration-header h2:after {
  content: '';
  width: 90px;
  height: 1px;
  background-color: #e2e2e2;
  position: absolute;
  top: 50%;
}
.product-inspiration-container .product-inspiration-header h2:before {
  left: 0;
  -webkit-transform: translateX(-100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.product-inspiration-container .product-inspiration-header h2:after {
  right: 0;
  -webkit-transform: translateX(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.product-inspiration-container .product-inspiration-content {
  padding: 0 10px;
}
.product-inspiration-container .product-inspiration-content__left,
.product-inspiration-container .product-inspiration-content__right {
  float: left;
  width: 50%;
}
.product-inspiration-container .product-inspiration-content__left > .item,
.product-inspiration-container .product-inspiration-content__right > .item {
  float: left;
  width: 33.333%;
  padding: 10px;
}
.product-inspiration-container .product-inspiration-content__left > .item.item--product .ratio-wrap .ratio .tile .box-inner strong,
.product-inspiration-container .product-inspiration-content__right > .item.item--product .ratio-wrap .ratio .tile .box-inner strong {
  font-size: 35px;
  line-height: 40px;
  letter-spacing: 5px;
}
.product-inspiration-container .product-inspiration-content__left > .item.item--product .ratio-wrap .ratio .tile .box-inner strong.extra-small,
.product-inspiration-container .product-inspiration-content__right > .item.item--product .ratio-wrap .ratio .tile .box-inner strong.extra-small {
  letter-spacing: 2px;
  line-height: 28px;
}
.product-inspiration-container .product-inspiration-content__left > .item.item--w2,
.product-inspiration-container .product-inspiration-content__right > .item.item--w2 {
  width: 66.66666%;
}
.product-inspiration-container .product-inspiration-content__left > .item.item--h2 > div.ratio-wrap,
.product-inspiration-container .product-inspiration-content__right > .item.item--h2 > div.ratio-wrap {
  padding-bottom: calc(200% + 21px);
}
.product-inspiration-container .product-inspiration-content__left > .item.item--h-half > div.ratio-wrap,
.product-inspiration-container .product-inspiration-content__right > .item.item--h-half > div.ratio-wrap {
  padding-bottom: calc(50% - 10px);
}
.product-inspiration-container .product-inspiration-content__left > .item > div.ratio-wrap,
.product-inspiration-container .product-inspiration-content__right > .item > div.ratio-wrap {
  position: relative;
  padding-bottom: 100%;
  height: 0;
}
.product-inspiration-container .product-inspiration-content__left > .item > div.ratio-wrap > div.ratio,
.product-inspiration-container .product-inspiration-content__right > .item > div.ratio-wrap > div.ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ccc;
}
.product-inspiration-container .product-inspiration-content__left > .item a,
.product-inspiration-container .product-inspiration-content__right > .item a,
.product-inspiration-container .product-inspiration-content__left > .item div.tile,
.product-inspiration-container .product-inspiration-content__right > .item div.tile {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
.product-inspiration-container .product-inspiration-content__left > .item a .box-cover,
.product-inspiration-container .product-inspiration-content__right > .item a .box-cover,
.product-inspiration-container .product-inspiration-content__left > .item div.tile .box-cover,
.product-inspiration-container .product-inspiration-content__right > .item div.tile .box-cover {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  margin-top: 0;
}
.product-inspiration-container .product-inspiration-content__left > .item a .box-cover:after,
.product-inspiration-container .product-inspiration-content__right > .item a .box-cover:after,
.product-inspiration-container .product-inspiration-content__left > .item div.tile .box-cover:after,
.product-inspiration-container .product-inspiration-content__right > .item div.tile .box-cover:after {
  content: '';
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  border: 1px solid #FFF;
  position: absolute;
}
.product-inspiration-container .product-inspiration-content__left > .item a .box-inner,
.product-inspiration-container .product-inspiration-content__right > .item a .box-inner,
.product-inspiration-container .product-inspiration-content__left > .item div.tile .box-inner,
.product-inspiration-container .product-inspiration-content__right > .item div.tile .box-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 10;
  margin-top: 0;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
.product-inspiration-container .product-inspiration-content__left > .item a strong,
.product-inspiration-container .product-inspiration-content__right > .item a strong,
.product-inspiration-container .product-inspiration-content__left > .item div.tile strong,
.product-inspiration-container .product-inspiration-content__right > .item div.tile strong,
.product-inspiration-container .product-inspiration-content__left > .item a span,
.product-inspiration-container .product-inspiration-content__right > .item a span,
.product-inspiration-container .product-inspiration-content__left > .item div.tile span,
.product-inspiration-container .product-inspiration-content__right > .item div.tile span {
  display: block;
  text-align: center;
}
.product-inspiration-container .product-inspiration-content__left > .item a strong,
.product-inspiration-container .product-inspiration-content__right > .item a strong,
.product-inspiration-container .product-inspiration-content__left > .item div.tile strong,
.product-inspiration-container .product-inspiration-content__right > .item div.tile strong {
  font-size: 50px;
  line-height: 54px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 10px;
  margin-bottom: 0;
  padding: 0 15px;
  font-family: bebas, arial, sans-serif;
}
.product-inspiration-container .product-inspiration-content__left > .item a strong.small,
.product-inspiration-container .product-inspiration-content__right > .item a strong.small,
.product-inspiration-container .product-inspiration-content__left > .item div.tile strong.small,
.product-inspiration-container .product-inspiration-content__right > .item div.tile strong.small {
  font-size: 30px;
  line-height: 34px;
}
.product-inspiration-container .product-inspiration-content__left > .item a strong.extra-small,
.product-inspiration-container .product-inspiration-content__right > .item a strong.extra-small,
.product-inspiration-container .product-inspiration-content__left > .item div.tile strong.extra-small,
.product-inspiration-container .product-inspiration-content__right > .item div.tile strong.extra-small {
  font-size: 27px;
  line-height: 28px;
  letter-spacing: 3px;
}
.product-inspiration-container .product-inspiration-content__left > .item a a,
.product-inspiration-container .product-inspiration-content__right > .item a a,
.product-inspiration-container .product-inspiration-content__left > .item div.tile a,
.product-inspiration-container .product-inspiration-content__right > .item div.tile a {
  padding: 20px 30px;
  font-family: bebas, arial, sans-serif;
  height: auto;
  font-size: 16px;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #FFF;
  display: inline-block;
  width: auto;
  margin-top: 40px;
  color: #FFF;
}
.product-inspiration-container .product-inspiration-content__left > .item a a:hover,
.product-inspiration-container .product-inspiration-content__right > .item a a:hover,
.product-inspiration-container .product-inspiration-content__left > .item div.tile a:hover,
.product-inspiration-container .product-inspiration-content__right > .item div.tile a:hover,
.product-inspiration-container .product-inspiration-content__left > .item a a.active,
.product-inspiration-container .product-inspiration-content__right > .item a a.active,
.product-inspiration-container .product-inspiration-content__left > .item div.tile a.active,
.product-inspiration-container .product-inspiration-content__right > .item div.tile a.active {
  background-color: #ffffff;
  color: #000;
}
.product-inspiration-container .product-inspiration-content__left > .item a span,
.product-inspiration-container .product-inspiration-content__right > .item a span,
.product-inspiration-container .product-inspiration-content__left > .item div.tile span,
.product-inspiration-container .product-inspiration-content__right > .item div.tile span {
  font-size: 21px;
  color: #FFF;
  letter-spacing: 3px;
  margin-top: 20px;
  text-transform: uppercase;
  font-family: montserratlight, arial, sans-serif;
}
.product-inspiration-container .product-inspiration-content__left > .item a span.small,
.product-inspiration-container .product-inspiration-content__right > .item a span.small,
.product-inspiration-container .product-inspiration-content__left > .item div.tile span.small,
.product-inspiration-container .product-inspiration-content__right > .item div.tile span.small {
  font-size: 16px;
  letter-spacing: 1px;
}
.product-inspiration-container .product-inspiration-content__left > .item a span.extra-small,
.product-inspiration-container .product-inspiration-content__right > .item a span.extra-small,
.product-inspiration-container .product-inspiration-content__left > .item div.tile span.extra-small,
.product-inspiration-container .product-inspiration-content__right > .item div.tile span.extra-small {
  font-size: 14px;
}
.product-inspiration-container .product-inspiration-content__left > .item a:hover .box-cover,
.product-inspiration-container .product-inspiration-content__right > .item a:hover .box-cover,
.product-inspiration-container .product-inspiration-content__left > .item div.tile:hover .box-cover,
.product-inspiration-container .product-inspiration-content__right > .item div.tile:hover .box-cover,
.product-inspiration-container .product-inspiration-content__left > .item a:active .box-cover,
.product-inspiration-container .product-inspiration-content__right > .item a:active .box-cover,
.product-inspiration-container .product-inspiration-content__left > .item div.tile:active .box-cover,
.product-inspiration-container .product-inspiration-content__right > .item div.tile:active .box-cover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  background: rgba(0, 0, 0, 0.4);
}
.product-inspiration-container .product-inspiration-content__left > .item a.tile-s .box-inner span,
.product-inspiration-container .product-inspiration-content__right > .item a.tile-s .box-inner span,
.product-inspiration-container .product-inspiration-content__left > .item div.tile.tile-s .box-inner span,
.product-inspiration-container .product-inspiration-content__right > .item div.tile.tile-s .box-inner span {
  margin-top: 10px;
}
.product-inspiration-container .product-inspiration-content__left > .item a.tile-s .box-inner a,
.product-inspiration-container .product-inspiration-content__right > .item a.tile-s .box-inner a,
.product-inspiration-container .product-inspiration-content__left > .item div.tile.tile-s .box-inner a,
.product-inspiration-container .product-inspiration-content__right > .item div.tile.tile-s .box-inner a {
  margin-top: 10px;
}
@media (max-width: 1800px) {
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 6px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong.small,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong.small,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong.small,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong.small {
    font-size: 30px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong.extra-small,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong.extra-small,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong.extra-small,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong.extra-small {
    font-size: 24px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 3px;
  }
}
@media (max-width: 1600px) {
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: 4px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong.small,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong.small,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong.small,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong.small {
    font-size: 30px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong.extra-small,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong.extra-small,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong.extra-small,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong.extra-small {
    line-height: 28px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner span {
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 15px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner span.extra-small,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner span.extra-small,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner span.extra-small,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner span.extra-small {
    font-size: 14px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner a {
    padding: 15px 10px;
    letter-spacing: 2px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 2px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span {
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 15px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    padding: 15px 10px;
    letter-spacing: 2px;
  }
}
@media (max-width: 1480px) {
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 3px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner span {
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 15px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner img,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner img,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner img {
    max-width: 200px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner a {
    padding: 10px 5px;
    font-size: 14px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span {
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 10px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img {
    max-width: 200px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    padding: 10px 5px;
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 1200px) {
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 2px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong.extra-small,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong.extra-small,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong.extra-small,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong.extra-small {
    font-size: 18px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner span {
    font-size: 14px;
    letter-spacing: 0;
    margin-top: 10px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner img,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner img,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner img {
    max-width: 170px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner a {
    padding: 5px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span {
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 4px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img {
    max-width: 170px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    padding: 5px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}
@media (max-width: 990px) {
  .product-inspiration-container .product-inspiration-content__left,
  .product-inspiration-container .product-inspiration-content__right {
    width: 100%;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: 4px;
    padding-top: 0;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong.small,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong.small,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong.small,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong.small {
    font-size: 16px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner span {
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 15px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner img,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner img,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner img {
    max-width: 170px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner a {
    padding: 15px 10px;
    letter-spacing: 2px;
    font-size: 16px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 2px;
    padding-top: 0;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span {
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 15px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img {
    max-width: 170px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    padding: 15px 10px;
    letter-spacing: 2px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 2px;
    padding-top: 0;
  }
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner span {
    font-size: 14px;
    line-height: 16px;
    margin-top: 5px;
  }
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 2px;
  }
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span {
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 5px;
  }
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img {
    max-width: 170px;
  }
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    padding: 10px 5px;
    letter-spacing: 1px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-inspiration-container .product-inspiration-content__left > .item,
  .product-inspiration-container .product-inspiration-content__right > .item,
  .product-inspiration-container .product-inspiration-content__left .item.item--product,
  .product-inspiration-container .product-inspiration-content__right .item.item--product {
    width: 50%;
  }
  .product-inspiration-container .product-inspiration-content__left > .item.item--w2,
  .product-inspiration-container .product-inspiration-content__right > .item.item--w2,
  .product-inspiration-container .product-inspiration-content__left .item.item--product.item--w2,
  .product-inspiration-container .product-inspiration-content__right .item.item--product.item--w2 {
    width: 100%;
  }
  .product-inspiration-container .product-inspiration-content__left > .item.item--h-half,
  .product-inspiration-container .product-inspiration-content__right > .item.item--h-half,
  .product-inspiration-container .product-inspiration-content__left .item.item--product.item--h-half,
  .product-inspiration-container .product-inspiration-content__right .item.item--product.item--h-half {
    width: 50%;
  }
  .product-inspiration-container .product-inspiration-content__left > .item.item--h-half div.ratio-wrap,
  .product-inspiration-container .product-inspiration-content__right > .item.item--h-half div.ratio-wrap,
  .product-inspiration-container .product-inspiration-content__left .item.item--product.item--h-half div.ratio-wrap,
  .product-inspiration-container .product-inspiration-content__right .item.item--product.item--h-half div.ratio-wrap {
    padding-bottom: 100%;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 2px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner span {
    font-size: 14px;
    letter-spacing: 0;
    margin-top: 10px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner img,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner img,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner img {
    max-width: 60%;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner a {
    padding: 8px 13px;
    letter-spacing: 0;
    font-size: 14px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 2px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span {
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 10px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img {
    max-width: 90px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    padding: 8px 13px;
    letter-spacing: 0;
    font-size: 14px;
  }
  .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    margin-top: 5px;
  }
}
#access-popup.access-popup--product {
  max-width: 720px;
  z-index: 1000;
  bottom: auto;
  top: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, 0) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, 0) translateZ(0) scale(1, 1);
  transform: translate(-50%, 0) translateZ(0) scale(1, 1);
}
#access-popup.access-popup--product * {
  position: static !important;
}
#access-popup.access-popup--product #head-stores {
  position: static;
  background: #FFF;
  height: 150px;
  line-height: 150px;
}
#access-popup.access-popup--product #head-stores h2 {
  font-family: bebas, arial, sans-serif;
  color: #000;
  position: relative !important;
  font-size: 30px;
  display: inline-block;
  padding: 0 30px;
}
#access-popup.access-popup--product #head-stores h2:before,
#access-popup.access-popup--product #head-stores h2:after {
  content: '';
  width: 60px;
  height: 1px;
  background-color: #e2e2e2;
  position: absolute;
  top: 50%;
}
#access-popup.access-popup--product #head-stores h2:before {
  left: 0;
  -webkit-transform: translateX(-100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
#access-popup.access-popup--product #head-stores h2:after {
  right: 0;
  -webkit-transform: translateX(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
#access-popup.access-popup--product #head-stores > div {
  padding-top: 0;
  color: #000;
}
#access-popup.access-popup--product #head-stores > a {
  position: absolute !important;
  top: 0;
  right: 0;
  background-color: #000;
  padding: 15px;
  border: 0;
  height: 50px;
  width: 50px;
}
#access-popup.access-popup--product #wrap-stores {
  position: static;
  height: auto;
  padding: 0 60px 60px;
}
#access-popup.access-popup--product #wrap-stores #side-bar {
  width: auto;
}
#access-popup.access-popup--product #wrap-stores #side-bar .access-col-50 {
  width: 50%;
  float: left;
  padding: 10px;
}
#access-popup.access-popup--product #wrap-stores #side-bar select {
  max-width: 285px;
  width: 100%;
  margin-right: 10px;
  background-color: #FFF;
  border: 1px solid #e5e5e5;
  color: #000;
}
#access-popup.access-popup--product #wrap-stores #side-bar select:last-child {
  margin-right: 0;
}
@media (max-width: 1024px) {
  #access-popup.access-popup--product #wrap-stores #side-bar select {
    max-width: none;
    margin-right: 0;
  }
}
#access-popup.access-popup--product #wrap-stores #side-bar .row {
  margin-bottom: 20px;
}
#access-popup.access-popup--product #wrap-stores #side-bar #geo-localization {
  padding: 0 15px;
  text-align: right;
}
#access-popup.access-popup--product #wrap-stores #side-bar #geo-localization a .text {
  color: #f8541f;
}
#access-popup.access-popup--product #wrap-stores #side-bar .no-stores {
  text-align: center;
}
#access-popup.access-popup--product #wrap-stores #side-bar .no-stores h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
#access-popup.access-popup--product #wrap-stores #side-bar .no-stores p {
  font-size: 14px;
}
#access-popup.access-popup--product #wrap-stores #side-bar #sidebar-top .sidebar-top__info p {
  padding: 0 20px 20px;
  margin-top: -20px;
  text-align: center;
  font-size: 14px;
}
#access-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li {
  position: relative !important;
  width: 100%;
}
#access-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li:before {
  right: 0;
}
#access-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li span.store-name {
  font-family: bebas, arial, sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 0;
}
#access-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li span.store-adress {
  letter-spacing: 2px;
}
#access-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li span.store-phone {
  letter-spacing: 2px;
}
#access-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li a {
  cursor: default;
}
#access-popup.product-popup.access-popup--product {
  width: 720px;
  max-width: 100%;
}
#access-popup.product-popup.access-popup--product #head-stores {
  height: 124px;
}
@media (max-width: 990px) {
  #access-popup.product-popup.access-popup--product #head-stores {
    padding: 0;
  }
}
#access-popup.product-popup.access-popup--product #head-stores h2 {
  letter-spacing: 3px;
  padding: 20px 40px 0;
}
@media (min-width: 500px) {
  #access-popup.product-popup.access-popup--product #head-stores h2 {
    padding: 0 40px;
  }
}
#access-popup.product-popup.access-popup--product #wrap-stores {
  padding: 0 15px 15px;
}
@media (min-width: 500px) {
  #access-popup.product-popup.access-popup--product #wrap-stores {
    padding: 0 54px 56px;
  }
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar .access-col-50 {
  padding: 7px 10px;
}
@media (max-width: 800px) {
  #access-popup.product-popup.access-popup--product #wrap-stores #side-bar .access-col-50 {
    padding: 7px 0;
    width: 100%;
  }
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar .access-col-50:first-of-type {
  padding-left: 0;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar .access-col-50:last-of-type {
  padding-right: 0;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar .row {
  margin-bottom: 0;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar .row.no-stores {
  margin-bottom: 30px;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar #geo-localization {
  padding: 10px 0 49px;
}
@media (min-width: 800px) {
  #access-popup.product-popup.access-popup--product #wrap-stores #side-bar #geo-localization {
    padding: 0 15px 49px;
  }
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar #geo-localization a {
  margin-bottom: 0;
  padding: 0;
  display: inline-block;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul {
  padding: 0 7px;
}
@media (max-width: 990px) {
  #access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul {
    padding: 0 7px;
  }
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li {
  padding: 20px 16px;
}
@media (max-width: 990px) {
  #access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li {
    border-bottom: 1px solid #bdbdbd;
  }
}
@media (max-width: 990px) {
  #access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li.product-more-item a {
    padding: 0;
  }
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li .product-more-item__price span,
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li .product-more-item__price sup {
  display: inline-block;
  color: #f8541f;
  font-size: 14px;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li:first-of-type {
  border-top: 1px solid #bdbdbd;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li.flag {
  padding-left: 0;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li.flag::before {
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 14px;
  background: url(../img/new-stores-none.gif) 0 0 no-repeat;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li span.store-name {
  margin-bottom: 7px;
  letter-spacing: 2px;
}
@media (max-width: 990px) {
  #access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li a {
    padding: 0 40px 0 0;
    border-top: none;
  }
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li a:hover .store-name {
  color: #000;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li.product-more-item {
  padding: 0 30px 50px;
  text-align: center;
  width: auto;
  border: 0;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li.product-more-item:last-of-type {
  padding-bottom: 23px;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar .no-stores {
  text-align: center;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar .no-stores h3 {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
#access-popup.product-popup.access-popup--product #wrap-stores #side-bar .no-stores p {
  font-family: bebas, arial, sans-serif;
  color: #f8541f;
  font-size: 20px;
  letter-spacing: 1px;
}
#access-popup.product-popup.access-popup--product #wrap-stores .product-more {
  padding-top: 72px;
}
#access-popup.product-popup.access-popup--product #wrap-stores .product-more__header {
  margin-bottom: 40px;
  text-align: center;
}
#access-popup.product-popup.access-popup--product #wrap-stores .product-more__title {
  font-family: bebas, arial, sans-serif;
  font-size: 30px;
  letter-spacing: 3px;
  padding: 0 30px;
  position: relative !important;
  display: inline-block;
}
@media (min-width: 940px) {
  #access-popup.product-popup.access-popup--product #wrap-stores .product-more__title::before,
  #access-popup.product-popup.access-popup--product #wrap-stores .product-more__title::after {
    height: 1px;
    content: '';
    width: 83px;
    background-color: #e2e2e2;
    position: absolute;
    top: 50%;
  }
}
#access-popup.product-popup.access-popup--product #wrap-stores .product-more__title::before {
  left: 0;
  transform: translateX(-100%);
}
#access-popup.product-popup.access-popup--product #wrap-stores .product-more__title::after {
  right: 0;
  transform: translateX(100%);
}
#access-popup.product-popup.access-popup--product #wrap-stores .product-more-list {
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
}
#access-popup.product-popup.access-popup--product #wrap-stores .product-more-item {
  display: inline-block;
  max-width: 196px;
}
#access-popup.product-popup.access-popup--product #wrap-stores .product-more-item a {
  cursor: pointer !important;
}
#access-popup.product-popup.access-popup--product #wrap-stores .product-more-item__img {
  width: 100%;
  padding-bottom: 19px;
}
#access-popup.product-popup.access-popup--product #wrap-stores .product-more-item__name {
  font-family: bebas, arial, sans-serif;
  font-size: 18px;
  color: #000;
  padding-bottom: 8px;
}
#access-popup.product-popup.access-popup--product #wrap-stores .product-more-item__price {
  font-size: 14px;
  color: #f8541f;
}
#access-popup.product-popup.access-popup--product #wrap-stores .product-more-item__price span:last-of-type {
  padding-left: 5px;
}
#access-popup.product-popup.access-popup--product #wrap-stores .no-stores + ul + .product-more {
  padding-top: 50px;
}
#share-popup {
  position: fixed;
  z-index: 1000;
  left: 50%;
  padding: 0 80px 80px;
  top: 50%;
  display: none;
  width: 100%;
  max-height: 315px;
  max-width: 560px;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  background: #FFF;
  color: #000;
}
#share-popup #head-share {
  background: #ffffff;
  height: 150px;
  line-height: 150px;
  text-align: center;
}
#share-popup #head-share > a {
  display: inline-block;
  border: 0;
  font-size: 32px;
  text-indent: -99999px;
  margin-left: 15px;
  position: absolute !important;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  background: #000 url(../img/close-cross.png) 50% 50% no-repeat;
  background-size: 14px 14px;
}
#share-popup #head-share > a:hover {
  background-color: #f8541f;
}
#share-popup #head-share h2 {
  font-family: bebas, arial, sans-serif;
  color: #000;
  position: relative !important;
  font-size: 30px;
  display: inline-block;
  padding: 0 30px;
}
#share-popup #head-share h2:before,
#share-popup #head-share h2:after {
  content: '';
  width: 60px;
  height: 1px;
  background-color: #e2e2e2;
  position: absolute;
  top: 50%;
}
#share-popup #head-share h2:before {
  left: 0;
  -webkit-transform: translateX(-100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
#share-popup #head-share h2:after {
  right: 0;
  -webkit-transform: translateX(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
#share-popup #content-share ul {
  width: 100%;
  text-align: center;
}
#share-popup #content-share ul li {
  display: inline-block;
  padding: 0 18px;
}
#share-popup #content-share ul li a {
  display: block;
  height: 40px;
  width: 40px;
  text-indent: -999999%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#share-popup #content-share ul li a:hover {
  -webkit-transform: translateY(-5px) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-backface-visibility: hidden;
}
#share-popup #content-share ul li #shareFb {
  background: url(../img/ico-fb.png) 50% 50% no-repeat;
}
#share-popup #content-share ul li #shareTw {
  background: url(../img/ico-tw.png) 50% 50% no-repeat;
}
#share-popup #content-share ul li #shareInsta {
  background: url(../img/ico-inst.png) 50% 50% no-repeat;
}
#share-popup #content-share ul li #sharePin {
  background: url(../img/ico-pin.png) 50% 50% no-repeat;
}
#share-popup #content-share ul li #shareVk {
  background: url(../img/ico-vk.png) 50% 50% no-repeat;
}
#video-section .ios-img {
  display: none;
  width: 100%;
  height: auto;
}
#video-section #video-section-top .video-container {
  background: #000;
}
#video-section #video-section-top .video-container video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
#video-section #video-section-top .video-container video.playing {
  position: static;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
  transform: translate(0, 0) translateZ(0) scale(1, 1);
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #video-section #video-section-top div.video-container {
    height: 100% !important;
    overflow: hidden;
  }
  #video-section #video-section-top div.video-container video {
    position: static;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
    width: 100%;
    display: block;
  }
  #video-section #video-section-top .video__title {
    display: none;
  }
}
@media (max-width: 580px) {
  #video-section #video-section-top .video_titlesection:before,
  #video-section #video-section-top .video_titlesection:after {
    content: none;
  }
  #video-section #video-section-top .video_titlesection .video__title {
    font-size: 22px;
  }
  #video-section #video-section-top .video__subtitle {
    display: none;
  }
}
.popup_overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 999;
  display: none;
}
/**
 * Gallery popup
 */
#gallery-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: #FFF;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: none;
  overflow: hidden;
  z-index: 999999;
}
#gallery-popup button#gallery-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 40px;
  height: 40px;
  border: 1px #000 solid;
  background-color: transparent;
  background-image: url(../img/btn-close-black.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 10px auto;
  z-index: 99;
}
#gallery-popup #product-360 {
  position: absolute;
  top: -12px;
  left: 0;
}
#gallery-popup #slider-360 {
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 40%;
  height: 18px;
  margin-left: -20%;
  z-index: 99;
}
#gallery-popup #slider-360 .noUi-background {
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#gallery-popup #slider-360 .noUi-handle {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  left: -20px;
  top: -10px;
}
#gallery-popup #slider-360 .noUi-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  display: block;
  width: 19px;
  height: 19px;
  background-color: #f8541f;
  cursor: pointer;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
#gallery-popup #slider-360 .noUi-active::after {
  background-color: #f64208;
}
#gallery-popup #slider-360.noUi-target {
  border: 0;
}
#gallery-popup #slider-360.noUi-horizontal {
  height: 18px;
  cursor: pointer;
}
#gallery-popup #slider-360.noUi-horizontal::before {
  position: absolute;
  top: 50%;
  margin-top: -1px;
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #808080;
}
#gallery-popup.loading {
  background-image: url(../img/loader.svg) !important;
}
#scroll-fix {
  position: fixed;
  width: 100%;
  height: 0;
}
#wrap-campaign #video-section-backstage,
#wrap-campaign #video-section-woman,
#wrap-campaign #video-section-man,
#wrap-campaign #video-section-kids {
  display: none;
}
#wrap-campaign #video-section {
  position: relative;
  height: auto;
  overflow: hidden;
  background-color: #000;
}
#wrap-campaign #video-section video {
  width: 100%;
}
#wrap-campaign #video-section video::-webkit-media-controls {
  display: none !important;
}
#wrap-campaign #video-section #box-cover {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-campaign #video-section .show-cover {
  -moz-opacity: 0.7 !important;
  -khtml-opacity: 0.7 !important;
  -webkit-opacity: 0.7 !important;
  opacity: 0.7 !important;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70) !important;
  filter: alpha(opacity=70) !important;
}
#wrap-campaign #video-section #play-btn {
  position: absolute;
  top: 20%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  background-image: url(../img/video/video-play.png);
  background-size: 100px 100px;
  background-position: center;
  background-repeat: no-repeat;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-campaign #video-section .show-btn {
  cursor: pointer;
  top: 50% !important;
  -moz-opacity: 1 !important;
  -khtml-opacity: 1 !important;
  -webkit-opacity: 1 !important;
  opacity: 1 !important;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100) !important;
  filter: alpha(opacity=100) !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-campaign #campaign {
  width: 100%;
  padding-top: 15px;
}
#wrap-campaign #campaign > div {
  float: left;
  padding: 15px;
  text-align: center;
}
#wrap-campaign #campaign p {
  font-size: 14px;
  color: #939393;
  line-height: 20px;
  font-family: montserratlight, arial, sans-serif;
}
#wrap-campaign #campaign .ratio-wrap {
  position: relative;
  height: 0;
  padding-bottom: 66%;
  overflow: hidden;
}
#wrap-campaign #campaign .copy {
  width: 50%;
}
#wrap-campaign #campaign .copy .content {
  padding: 0 140px;
}
#wrap-campaign #campaign .copy .content h3 {
  padding-top: 35%;
  padding-bottom: 24px;
}
#wrap-campaign #campaign .copy.black .ratio-wrap {
  background-color: #000;
}
#wrap-campaign #campaign .copy.black h3 {
  color: #FFF;
}
#wrap-campaign #campaign .cover .content,
#wrap-campaign #campaign .photo .content {
  background-color: #000;
  background-image: url(../img/loader.svg);
  background-position: center;
  background-size: 50px 50px;
  background-repeat: no-repeat;
}
#wrap-campaign #campaign .cover {
  width: 100%;
}
#wrap-campaign #campaign .cover .content.preload-background-image-loaded {
  position: relative;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  overflow: hidden;
}
#wrap-campaign #campaign .photo {
  width: 50%;
}
#wrap-campaign #campaign .photo .content.preload-background-image-loaded {
  position: relative;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
#pressroom-section #pressroom-bg {
  position: relative;
  height: 0;
  padding-bottom: 760px;
  overflow: hidden;
  background-image: url(../img/pressroom/pressroom-bg.jpg);
  background-attachment: scroll;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
#pressroom-content {
  zoom: 1;
  width: 50%;
  padding: 0 110px;
  float: left;
  text-align: center;
}
#pressroom-content:before {
  content: '';
  display: block;
}
#pressroom-content:after {
  content: '';
  display: table;
  clear: both;
}
#pressroom-content p,
#pressroom-content span,
#pressroom-content time {
  font-size: 14px;
  color: #939393;
  line-height: 20px;
  font-family: montserratlight, arial, sans-serif;
}
#pressroom-content a {
  color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#pressroom-content a:hover {
  color: #f8541f;
}
#pressroom-content h1 {
  padding: 100px 0 28px 0;
}
#pressroom-content p {
  padding: 0 0 60px 0;
}
#pressroom-content ul li {
  font-size: 14px;
  color: #939393;
  line-height: 20px;
  font-family: montserratlight, arial, sans-serif;
}
#pressroom-content h4 {
  padding-bottom: 30px;
}
#pressroom-content .left {
  width: 50%;
  float: left;
  text-align: left;
}
#pressroom-content .left ul li {
  line-height: 22px;
}
#pressroom-content .left ul li:nth-child(4) {
  padding-top: 20px;
}
#pressroom-content .left ul li:last-child {
  padding-top: 20px;
}
#pressroom-content .right {
  width: 50%;
  float: left;
  border-left: 1px solid #bdbdbd;
  text-align: left;
  padding: 0 0 0 35px;
}
#pressroom-content .right ul li {
  line-height: 40px;
}
#pressroom-content .right ul li a:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  line-height: 0px;
  width: 14px;
  height: 17px;
  padding: 0 14px 0 0;
  background-image: url(../img/pressroom/ico-pressroom.png);
  background-size: 14px 17px;
  background-position: left;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -o-transform: translate(0px);
}
#pressroom-content .right ul li a:hover:before {
  padding: 0 20px 0 0;
}
#pressroom-bg {
  width: 50%;
  float: left;
}
.club-ccc #wrap-club {
  text-align: center;
  zoom: 1;
}
.club-ccc #wrap-club:before {
  content: '';
  display: block;
}
.club-ccc #wrap-club:after {
  content: '';
  display: table;
  clear: both;
}
.club-ccc #wrap-club .tile--position {
  width: 50%;
  padding: 0;
}
.club-ccc #wrap-club .tiles__list .tile.tile--special-offers .ratio-wrap .ratio > a:not(.preload-background-image),
.club-ccc #wrap-club .tiles__list .tile > div:not(.preload-background-image) {
  background-position-x: 100%;
}
.club-ccc #wrap-club .tiles__list .tile .ratio-wrap .ratio > a:not(.preload-background-image),
.club-ccc #wrap-club .tiles__list .tile .ratio-wrap .ratio > div:not(.preload-background-image) {
  background-position-x: 30%;
}
.club-ccc #wrap-club p,
.club-ccc #wrap-club span,
.club-ccc #wrap-club time,
.club-ccc #wrap-club h4,
.club-ccc #wrap-club h5 {
  font-size: 14px;
  color: #939393;
  line-height: 20px;
  font-family: montserratlight, arial, sans-serif;
}
.club-ccc #wrap-club .club-ccc__page .club-ccc__page-header {
  text-align: center;
  padding: 83px 5%;
}
.club-ccc #wrap-club .club-ccc__page .club-ccc__page-header h2 {
  font-family: bebas, arial, sans-serif;
  text-transform: uppercase;
  color: #000;
  letter-spacing: .2em;
  font-size: 60px;
}
.club-ccc #wrap-club .club-ccc__page .club-ccc__page-header h2 > span {
  font-family: bebas, arial, sans-serif;
  text-transform: uppercase;
  color: #000;
  letter-spacing: .2em;
  font-size: 60px;
  color: #f05628;
  display: block;
  margin-bottom: -29px;
}
.club-ccc #wrap-club .club-ccc__page .club-ccc__page-header h4 {
  font-size: 18px;
  letter-spacing: .17em;
  color: #000;
  text-transform: none;
  margin: 16px 0 53px;
  line-height: 25px;
}
.club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__steps {
  margin-bottom: 55px;
}
.club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__step {
  display: inline-block;
  width: 300px;
  vertical-align: top;
}
.club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__step--center {
  margin: 0 27px;
  position: relative;
}
.club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__step--center::before {
  content: '';
  background: url("../img/club/arrow.svg") no-repeat;
  width: 60px;
  height: 60px;
  position: absolute;
  left: -40px;
  top: -15px;
}
.club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__step--center::after {
  content: '';
  background: url("../img/club/arrow.svg") no-repeat;
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  width: 60px;
  height: 60px;
  position: absolute;
  right: -40px;
  top: -4px;
}
.club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__step img {
  margin-bottom: 15px;
}
.club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__step h5 {
  font-size: 15px;
  color: #000;
  letter-spacing: .17em;
}
.club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .btns {
  color: #000;
  letter-spacing: 4px;
  background-color: #fff;
  width: auto;
  height: auto;
  display: inline-block;
  padding: 20px 30px;
  margin: 30px auto 0;
  border: 1px solid #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .btns:hover {
  color: #fff;
  background-color: #000;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > div .box-cover,
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > a .box-cover {
  opacity: 0;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > div .box-cover:before,
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > a .box-cover:before {
  content: '';
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  position: absolute;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > div .box-cover .box-inner,
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > a .box-cover .box-inner {
  max-width: none;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > div .box-cover .box-inner > span,
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > a .box-cover .box-inner > span {
  font-size: 19px;
  letter-spacing: 5px;
  color: #FFF;
  text-transform: none;
  font-family: montserratlight, arial, sans-serif;
  margin-bottom: 0;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > div .box-cover .box-inner .btn,
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > a .box-cover .box-inner .btn {
  margin-top: 1px;
  font-size: 21px;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > div .box-cover .box-inner .btn-mg,
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > a .box-cover .box-inner .btn-mg {
  margin-top: 30px;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > div .box-cover:hover,
.club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > a .box-cover:hover {
  opacity: 1;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--special-offers {
  width: 100%;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--special-offers .ratio-wrap {
  padding-bottom: 22%;
  min-height: 400px;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--discounts,
.club-ccc #wrap-club .club-ccc__page .tiles .tile--tests {
  width: 50%;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--discounts .ratio-wrap,
.club-ccc #wrap-club .club-ccc__page .tiles .tile--tests .ratio-wrap {
  padding-bottom: 44%;
  min-height: 400px;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop {
  width: 100%;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .logo {
  position: absolute;
  top: -1px;
  right: 50px;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap {
  padding-bottom: 33%;
  min-height: 625px;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap .ratio > div {
  background-position-x: 50%;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap .ratio > div .box-inner {
  left: 0;
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  transform: translate(0, -50%) translateZ(0) scale(1, 1);
  max-width: 50%;
  margin-top: -1px;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap .ratio > div .box-inner strong {
  font-family: bebas, arial, sans-serif;
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: .2em;
  line-height: 46px;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap .ratio > div .box-inner strong > span {
  color: #f8541f;
  font-family: bebas, arial, sans-serif;
  font-size: 40px;
  letter-spacing: .2em;
  line-height: 1;
  display: inline-block;
  margin-bottom: 0;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap .ratio > div .box-inner p {
  font-family: montserratlight, arial, sans-serif;
  font-size: 16px;
  letter-spacing: .1em;
  line-height: 25px;
  color: #fff;
  margin: 40px 0;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap .ratio > div .box-inner .buttons li {
  display: inline-block;
  margin: 5px 7px;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--tests-bottom {
  width: 50%;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--tests-bottom .ratio-wrap {
  padding-bottom: 68.2%;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--tests-bottom .ratio-wrap .ratio > div:hover .box-cover {
  opacity: 1;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--tests-bottom .ratio-wrap .ratio > div:hover .box-cover .box-inner a {
  margin-top: 50px;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--fb {
  width: 34%;
  order: 1;
  -webkit-order: 1;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--fb .ratio-wrap {
  padding-bottom: 101.5%;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--fb .ratio-wrap .ratio > a {
  background-size: 90px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--lasocki {
  width: 66%;
  order: 2;
  -webkit-order: 3;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--lasocki .ratio-wrap {
  padding-bottom: calc(52% - 8px);
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--new {
  width: 66%;
  order: 4;
  -webkit-order: 4;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--new .ratio-wrap {
  padding-bottom: calc(52% - 8px);
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--insta {
  width: 34%;
  order: 3;
  -webkit-order: 2;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--insta .ratio-wrap {
  padding-bottom: 101.5%;
}
.club-ccc #wrap-club .club-ccc__page .tiles .tile--insta .ratio-wrap .ratio > a {
  background-size: 90px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.club-ccc #wrap-club .club-ccc__form {
  zoom: 1;
  min-height: 1560px;
  padding: 50px 100px;
  margin: 0 20px;
  background-size: cover;
  background-position: 100% 50%;
  background-repeat: no-repeat;
}
.club-ccc #wrap-club .club-ccc__form:before {
  content: '';
  display: block;
}
.club-ccc #wrap-club .club-ccc__form:after {
  content: '';
  display: table;
  clear: both;
}
.club-ccc #wrap-club .club-ccc__form .form__inner {
  float: right;
  background: #fff;
  max-width: 700px;
  width: 100%;
}
.club-ccc #wrap-club .club-ccc__form .form__tabs .tabs {
  zoom: 1;
  position: relative;
  display: flex;
  flex-direction: row;
}
.club-ccc #wrap-club .club-ccc__form .form__tabs .tabs:before {
  content: '';
  display: block;
}
.club-ccc #wrap-club .club-ccc__form .form__tabs .tabs:after {
  content: '';
  display: table;
  clear: both;
}
.club-ccc #wrap-club .club-ccc__form .form__tabs .tabs__item {
  display: flex;
  width: 50%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.club-ccc #wrap-club .club-ccc__form .form__tabs .tabs__item a {
  min-height: 85px;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  line-height: 36px;
  font-family: bebas, arial, sans-serif;
  letter-spacing: .2em;
  font-size: 30px;
  color: #6c6c6c;
  background: #f3f3f3;
}
.club-ccc #wrap-club .club-ccc__form .form__tabs .tabs__item a.active {
  background: #fff;
  color: #ff3800;
}
.club-ccc #wrap-club .club-ccc__form .form__tabs .tabs__item--or {
  width: auto;
  float: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
.club-ccc #wrap-club .club-ccc__form .form__tabs .tabs__item--or span {
  font-family: bebas, arial, sans-serif;
  letter-spacing: .2em;
  font-size: 15px;
  color: #6c6c6c;
}
.club-ccc #wrap-club .club-ccc__form .club__content {
  padding: 50px 50px 120px;
  margin-bottom: 0;
  position: relative;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form {
  display: block;
  width: 100%;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row {
  position: relative;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row .input-validate-msg {
  position: static;
  top: 0;
  -webkit-transform: translateY(0) translateZ(0) scale(1, 1);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-backface-visibility: hidden;
  right: 0;
  left: 0;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row span {
  font-size: 9px;
  text-align: center;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row span.input-validate-msg--half {
  width: auto;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row span.input-validate-msg--half:first-of-type {
  right: calc(50% + 20px);
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row .form__input {
  width: 50%;
  float: left;
  position: relative;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row .form__input--right {
  padding-right: 5px;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row .form__input--left {
  padding-left: 5px;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row .form__input--70 {
  width: 70%;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row .form__input--65 {
  width: 65%;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row .form__input--35 {
  width: 35%;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row .form__input--30 {
  width: 30%;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row .form__input input {
  width: 100%;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="text"],
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="tel"],
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="email"] {
  font-size: 14px;
  height: 60px;
  border-color: #dedede;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form-icon {
  margin-top: 30px;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .form-icon + p {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 50px;
  font-family: montserratlight, arial, sans-serif;
  font-size: 13px;
  color: #000;
  line-height: 20px;
  letter-spacing: .17em;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .agreements {
  margin-top: 15px;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .agreements__info {
  margin-top: 18px;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form .agreements__hide {
  display: none;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="checkbox"] {
  display: none;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="checkbox"] + label {
  text-align: left;
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  padding-left: 62px;
  position: relative;
  min-height: 40px;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="checkbox"] + label:before {
  content: '';
  background: url('../img/club/icon-thick.svg') 50% 50% no-repeat;
  background-size: 0;
  display: inline-block;
  border: 1px solid #dedede;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  position: absolute;
  left: 0;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="checkbox"] + label span {
  font-family: montserratlight, arial, sans-serif;
  font-size: 11px;
  color: #000;
  line-height: 20px;
  letter-spacing: .17em;
  vertical-align: middle;
  display: inline-block;
  text-align: left;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="checkbox"] + label span.text--pt {
  padding-top: 10px;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="checkbox"] + label span.text--pt .closed {
  display: none;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="checkbox"] + label a {
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 10px;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="checkbox"] + label:hover:before {
  background-size: 12px;
  opacity: .5;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="checkbox"]:checked + label:before {
  background-size: 12px;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="checkbox"]:checked + label:hover:before {
  opacity: 1;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="checkbox"]:disabled + label:before {
  background-size: 12px;
  opacity: .5;
}
.club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="submit"] {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 80px;
  display: block;
  font-size: 30px;
  background: #ff3800;
}
.club-ccc #wrap-club .error {
  margin-top: 40px;
}
.club-ccc #wrap-club .error span {
  color: #ff3800;
  font-size: 16px;
}
.club-ccc #left {
  width: 50%;
  float: left;
}
.club-ccc #left .ratio-wrap {
  position: relative;
  height: auto;
}
.club-ccc #left .ratio-wrap iframe {
  width: 100%;
  height: 890px;
}
.club-ccc #right {
  width: 50%;
  float: left;
}
.club-ccc #right .news-cover {
  position: relative;
  height: 0;
  padding-bottom: 50%;
  background-image: url(../img/club/club-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}
.club-ccc #right .news-cover.at {
  background-image: url(../img/club/club-bg-at.jpg);
}
.club-ccc #right .news-content {
  position: relative;
  height: 0;
  padding-bottom: 50%;
  background-color: #eeeeee;
}
.club-ccc #right article {
  display: inline-block;
  max-width: 550px;
}
.club-ccc #right article time {
  display: block;
  letter-spacing: 4px;
  color: #000;
  padding-top: 60px;
  padding-bottom: 30px;
}
.club-ccc #right article h3 {
  padding-bottom: 30px;
}
.club-ccc #right .controlls {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  margin-top: -25px;
}
.club-ccc #right .controlls .arrow {
  position: relative;
  display: block;
  width: 55px;
  height: 55px;
  cursor: pointer;
  border: 1px solid #bdbdbd;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -o-transform: translate(0px);
}
.club-ccc #right .controlls .arrow:hover {
  background-color: #000;
}
.club-ccc #right .controlls .arrow:hover .btn-left {
  background-position: -17px 0;
}
.club-ccc #right .controlls .arrow:hover .btn-right {
  background-position: 0px 0;
}
.club-ccc #right .controlls .arrow .btn {
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  overflow: hidden;
  -webkit-transition: 2000 0.3s ease 0s;
  -moz-transition: 2000 0.3s ease 0s;
  -o-transition: 2000 0.3s ease 0s;
  -ms-transition: 2000 0.3s ease 0s;
  transition: 2000 0.3s ease 0s;
  -o-transform: translate(0px);
}
.club-ccc #right .controlls .arrow-left {
  float: left;
  margin-left: 40px;
}
.club-ccc #right .controlls .arrow-right {
  float: right;
  margin-right: 40px;
}
.club-ccc #right .controlls .btn-left {
  background-image: url(../img/club/club-arrow-left.png);
  background-position: -2px 0px;
}
.club-ccc #right .controlls .btn-right {
  background-image: url(../img/club/club-arrow-right.png);
  background-position: -15px 0px;
}
.club-ccc .ua-club {
  width: 40%;
  margin: 0 auto;
}
.club-ccc .ua-club p {
  font-size: 12px !important;
  text-align: justify;
  margin-bottom: 20px;
}
.club-ccc .ua-club h1 {
  padding: 20px;
}
.club-ccc #wrap-club .club__header {
  border-bottom: 1px solid #dfdfdf;
}
.club-ccc #wrap-club .club__header h2 {
  font-family: bebas, arial, sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  margin: 25px 0;
}
.club-ccc #wrap-club .club__header p {
  margin: 0 0 40px 0;
}
.club-ccc #wrap-club .club__menu .menu {
  margin: 0 0 40px 0;
}
.club-ccc #wrap-club .club__menu .menu__item {
  padding: 0 10px;
  display: inline-block;
}
.club-ccc #wrap-club .club__menu .menu__item a {
  font-size: 14px;
  font-family: montserratregular, arial, sans-serif;
  color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  text-transform: uppercase;
}
.club-ccc #wrap-club .club__menu .menu__item a:hover,
.club-ccc #wrap-club .club__menu .menu__item a.active {
  color: #f8541f;
}
.club-ccc #wrap-club .club__user-menu .menu {
  margin-bottom: 40px;
}
.club-ccc #wrap-club .club__user-menu .menu__item a {
  font-size: 13px;
  line-height: 18px;
  padding: 11px 15px;
  font-family: montserratregular, arial, sans-serif;
  display: inline-block;
  margin-bottom: 10px;
  background-color: #333;
  border: none;
  color: white;
  height: auto;
  left: 0px;
  position: relative;
  text-transform: uppercase;
  width: 230px;
}
.club-ccc #wrap-club .club__content {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0;
  margin: 0 auto 40px auto;
}
.club-ccc #wrap-club .club__content article {
  font: 13px Adrianna, "Trebuchet MS", Arial, Helvetica, sans-serif;
  width: 300px;
}
.club-ccc #wrap-club .club__content--info {
  overflow: overlay;
  text-align: justify;
}
.club-ccc #wrap-club .club__content--info article .info_msg {
  color: #f05628;
  margin: 5px auto;
}
.club-ccc #wrap-club .club__content h3 {
  font-family: bebas, arial, sans-serif;
  font-size: 20px;
  color: #939393;
  text-align: center;
  margin-bottom: 30px;
}
.club-ccc #wrap-club .club__content article {
  width: 320px;
  height: 300px;
  margin: 0 auto;
}
.club-ccc #wrap-club .club__content article p {
  font-size: 12px;
  font-family: montserratlight, arial, sans-serif;
  line-height: 20px;
  text-align: justify;
  margin-bottom: 20px;
  color: #000;
}
.club-ccc #wrap-club .club__content p {
  font-size: 12px;
  font-family: montserratlight, arial, sans-serif;
  line-height: 20px;
  text-align: justify;
  margin: 20px 0;
}
.club-ccc #wrap-club .club__form {
  width: 260px;
}
.club-ccc #wrap-club .club__form .input-validate-msg.input-validate-msg--half {
  width: calc(50% - 5px);
  display: inline-block;
}
.club-ccc #wrap-club .club__form .input-validate-msg.input-validate-msg--half:first-of-type {
  margin-right: 7px;
}
.club-ccc #wrap-club .club__form .input-validate-msg span {
  text-align: left;
  display: block;
  color: red;
  font-family: montserratlight, arial, sans-serif;
  letter-spacing: .1em;
  font-size: 12px;
}
.club-ccc #wrap-club .club__form input.input--half {
  width: calc(50% - 5px);
}
.club-ccc #wrap-club .club__form input.input--half:first-of-type {
  margin-right: 7px;
}
.club-ccc #wrap-club .club__form input[type="tel"],
.club-ccc #wrap-club .club__form input[type="text"],
.club-ccc #wrap-club .club__form input[type="email"] {
  box-shadow: none;
  font-size: 11px;
}
.club-ccc #wrap-club .club__form input[type="tel"].ng-valid,
.club-ccc #wrap-club .club__form input[type="text"].ng-valid,
.club-ccc #wrap-club .club__form input[type="email"].ng-valid,
.club-ccc #wrap-club .club__form input[type="tel"].ng-invalid,
.club-ccc #wrap-club .club__form input[type="text"].ng-invalid,
.club-ccc #wrap-club .club__form input[type="email"].ng-invalid {
  box-shadow: none;
  border-color: #bdbdbd;
}
.club-ccc #wrap-club .club__form input[type="checkbox"] {
  display: block;
}
.club-ccc #wrap-club .club__form input[type="checkbox"] + label {
  font-size: 9px;
  font-family: montserratlight, arial, sans-serif;
}
.club-ccc #wrap-club .club__form input[type="submit"] {
  border: 0px solid #444;
  background-color: #f05628 !important;
  padding: 13px 25px;
  width: 230px;
  font: 16px bebas, "Trebuchet MS", Arial, Helvetica, sans-serif;
  color: #FFFFFF;
  letter-spacing: 8px;
  line-height: 20px;
  width: 100%;
  display: inline-block;
  margin-top: 10px;
  white-space: normal;
}
.club-ccc #wrap-club .club__form--register {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 590px;
  max-width: none;
  margin: 0 auto;
}
.club-ccc #wrap-club .club__form--register .club__form--half {
  width: 50%;
}
.club-ccc #wrap-club .club__form--register .club__form--half:first-of-type {
  padding-right: 35px;
}
#scroller {
  position: absolute;
  padding: 40px;
  width: 50%;
  height: 300px;
  background-color: beige;
}
#wrap-contact #contact-content {
  width: 50%;
  padding: 0 100px;
  float: left;
  text-align: center;
}
#wrap-contact #contact-content .contact-img {
  max-width: 100%;
}
#wrap-contact #contact-content .contact__options {
  padding-right: 30px;
}
#wrap-contact #contact-content ul.ng-error li {
  font-size: 10px;
  color: #ff0000;
  position: relative;
  top: -5px;
}
#wrap-contact #contact-content p,
#wrap-contact #contact-content span,
#wrap-contact #contact-content time {
  font-size: 14px;
  color: #939393;
  line-height: 20px;
  font-family: montserratlight, arial, sans-serif;
}
#wrap-contact #contact-content a {
  color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-contact #contact-content a:hover {
  color: #f8541f;
}
#wrap-contact #contact-content h1 {
  padding: 60px 0 48px 0;
}
#wrap-contact #contact-content p {
  padding: 0 0 60px 0;
}
#wrap-contact #contact-content ul li {
  font-size: 14px;
  color: #939393;
  line-height: 20px;
  font-family: montserratlight, arial, sans-serif;
}
#wrap-contact #contact-content h4 {
  padding-bottom: 30px;
}
#wrap-contact #contact-content .left {
  width: 50%;
  float: left;
  text-align: left;
  padding-right: 30px;
}
#wrap-contact #contact-content .left ul {
  margin-bottom: 15px;
}
#wrap-contact #contact-content .left ul li {
  line-height: 22px;
}
#wrap-contact #contact-content .left ul.contact .mail,
#wrap-contact #contact-content .left ul.contact .nip {
  padding-top: 15px;
}
#wrap-contact #contact-content .left ul.contact .mail + .mail {
  padding-top: 0;
}
#wrap-contact #contact-content .left ul.contact .mail a {
  font-size: 12px;
  color: #939393;
}
#wrap-contact #contact-content .left ul.contact .phone > small {
  display: block;
  font-size: 11px;
  line-height: 1;
  padding-top: 5px;
}
#wrap-contact #contact-content .left ul.contact .infoline {
  margin-top: 10px;
}
#wrap-contact #contact-content .left ul.info li {
  font-size: 12px;
  line-height: 18px;
  padding-bottom: 10px;
}
#wrap-contact #contact-content .left ul.contact-list {
  list-style: disc;
  margin-bottom: 0;
  padding-left: 25px;
  display: inline-block;
}
#wrap-contact #contact-content .left ul.contact-list li {
  padding-bottom: 5px;
}
#wrap-contact #contact-content .right {
  width: 50%;
  float: left;
  border-left: 1px solid #bdbdbd;
  text-align: left;
  padding: 0 0 0 35px;
}
#wrap-contact #contact-content .right .thank-you {
  text-align: center;
  width: 100%;
  padding-bottom: 40px;
}
#wrap-contact #contact-content .right .thank-you img {
  padding: 30px 0 15px 0;
  fill: #94d31b;
}
#wrap-contact #contact-content .right .thank-you h3 {
  font-size: 26px;
}
#wrap-contact #contact-content .right select {
  width: 100%;
  margin: 5px 0;
}
#wrap-contact #contact-content .right label {
  display: none;
}
#wrap-contact #contact-content .right label.label-agree {
  position: relative;
  display: inline-block;
  padding-top: 10px;
}
#wrap-contact #contact-content .right label.label-agree .checkbox-agree {
  display: none;
}
#wrap-contact #contact-content .right label input[type="checkbox"]:checked + .checkbox-text::before {
  background-position: center;
  background-color: #231f20;
}
#wrap-contact #contact-content .right label input.form-disabled + .checkbox-text {
  cursor: default;
}
#wrap-contact #contact-content .right .checkbox-text {
  margin-top: 10px;
  height: 203px;
  overflow: hidden;
  overflow-y: scroll;
  cursor: pointer;
}
#wrap-contact #contact-content .right .checkbox-text::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background-color: #bbbbbb;
  background-image: url(../img/thick_white.png);
  background-size: 100%;
  background-position: -20px 0;
  background-repeat: no-repeat;
  transition: all 0.3s ease 0s;
}
#wrap-contact #contact-content .right .checkbox-text__title,
#wrap-contact #contact-content .right .checkbox-text__info {
  padding-bottom: 9px;
  line-height: 17px;
  color: #000;
}
#wrap-contact #contact-content .right .checkbox-text__title strong,
#wrap-contact #contact-content .right .checkbox-text__info strong {
  font-weight: bold;
}
#wrap-contact #contact-content .right .checkbox-text__title {
  font-size: 12px;
  padding-bottom: 30px;
  padding-top: 10px;
  text-align: center;
}
#wrap-contact #contact-content .right .checkbox-text__info {
  padding-right: 10px;
  font-size: 10px;
}
#wrap-contact #contact-content .right .checkbox-text__info:last-of-type {
  padding-bottom: 7px;
}
#wrap-contact #contact-content .right textarea {
  margin: 5px 0;
  display: inline-block;
  border: 1px solid #bdbdbd;
  width: 100%;
  height: 115px;
  font-size: 12px;
  line-height: 18px;
  color: #000;
  padding: 14px;
  letter-spacing: 0px;
  text-transform: none;
  font-family: montserratlight, arial, sans-serif;
}
#wrap-contact #contact-content .right .form-disabled {
  border: 1px solid #ccc;
  background-color: #eee;
}
#wrap-contact #contact-content .right #submitForm {
  width: 100%;
  height: 45px;
  background-color: #f8541f;
  border: 0px;
  font-size: 16px;
  color: #FFF;
  letter-spacing: 8px;
  margin-top: 10px;
  font-family: bebas, arial, sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-contact #contact-content .right #submitForm.submit-disabled {
  background-color: #ccc;
}
#wrap-contact #contact-content .right #submitForm.submit-disabled:hover {
  background-color: #ccc;
}
#wrap-contact #contact-content .right #submitForm:hover {
  background-color: #000;
}
#wrap-contact #contact-content .right #contact-info ol {
  padding: 20px 0 0 0;
}
#wrap-contact #contact-content .right #contact-info ol li span.icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-position: center center;
  background-repeat: no-repeat;
}
#wrap-contact #contact-content .right #contact-info ol li .ico-mail {
  background-image: url(../img/ico_mail.svg);
  background-size: 20px 20px;
}
#wrap-contact #contact-content .right #contact-info ol li .ico-phone {
  background-image: url(../img/ico_phone.svg);
  background-size: 28px 28px;
}
#wrap-contact #contact-content .right #contact-info ol li .ico-infoline {
  background-image: url(../img/icon-phone.png);
  background-size: contain;
  max-width: 10px;
  margin-left: 10px;
  margin-right: 10px;
}
#wrap-contact #contact-content .right #contact-info ol li span.label {
  position: relative;
  top: -10px;
  color: #000;
}
#wrap-contact #contact-content .right #contact-info ol li span.label > small {
  display: block;
  font-size: 11px;
  padding-left: 32px;
  line-height: 1;
  padding-top: 5px;
}
#wrap-contact #contact-content .txt-center {
  text-align: center;
}
#wrap-contact #map-container {
  position: relative;
  float: left;
  height: 100vh;
  width: 50%;
}
#wrap-contact #map-container .angular-google-map {
  position: absolute;
  width: 100%;
  height: 100%;
}
#wrap-contact #map-container .angular-google-map-container {
  width: 100%;
  height: 100%;
}
#wrap-contact #map-container #faq-container {
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
#wrap-contact #map-container #faq-container a#btn-close {
  position: absolute;
  top: 34px;
  right: -34px;
  display: block;
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-contact #map-container #faq-container a#btn-close > span {
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  background-image: url(../img/btn-close.png);
  background-size: 24px 24px;
  background-position: center center;
  background-repeat: no-repeat;
}
#wrap-contact #map-container #faq-container #faq-content-wrap {
  height: 100%;
  overflow: hidden;
  background-color: #000;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-contact #map-container #faq-container #faq-content-wrap #faq-content {
  height: 80%;
  padding: 0px 38px 0px 80px;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-contact #map-container #faq-container #faq-content-wrap #faq-content #faq-content-inner {
  padding: 0 80px 0 20px;
}
#wrap-contact #map-container #faq-container #faq-content-wrap #faq-content h4,
#wrap-contact #map-container #faq-container #faq-content-wrap #faq-content .spacing {
  padding: 12px 0;
  position: relative;
}
#wrap-contact #map-container #faq-container #faq-content-wrap #faq-content .spacing-top {
  padding: 12px 0 0;
}
#wrap-contact #map-container #faq-container #faq-content-wrap #faq-content .tab {
  padding-left: 12px;
}
#wrap-contact #map-container #faq-container #faq-content-wrap #faq-content h4 {
  color: #FFF;
}
#wrap-contact #map-container #faq-container #faq-content-wrap #faq-content p {
  font-size: 12px;
  line-height: 16px;
  color: #939393;
  font-family: montserratregular, arial, sans-serif;
}
#wrap-contact #map-container #faq-container #faq-content-wrap #faq-content p.above-list {
  padding-bottom: 8px;
}
#wrap-contact #map-container #faq-container #faq-content-wrap #faq-content ol li {
  padding-bottom: 26px;
  position: relative;
}
#wrap-contact #map-container #faq-container #faq-content-wrap #faq-content ol li:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  left: -20px;
  line-height: 0px;
  width: 12px;
  height: 12px;
  background-image: url(../img/bullet.svg);
  background-size: 12px 12px;
  background-position: left;
  background-repeat: no-repeat;
}
#wrap-contact #map-container #faq-container.faq-open {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  visibility: visible;
}
#wrap-contact #map-container #faq-container.faq-open a#btn-close {
  right: 34px;
}
#wrap-contact #map-container #faq-container.faq-open #faq-content-wrap {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-contact #map-container #faq-container.faq-open #faq-content-wrap #faq-content {
  margin-top: 10%;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#grid-top.grid-main-subpage {
  padding: 10px!important;
  margin-top: 0;
}
#grid-top.grid-main-subpage .tile.tile--h2 .ratio-wrap {
  padding-bottom: calc(200% + 20px);
}
#grid-top.grid-main-subpage .tile.tile--w2 {
  width: 66.666666%;
}
#grid-top.grid-main-subpage .tile.tile--w2 .ratio-wrap {
  padding-bottom: calc(50% - 10px);
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink {
  background-size: cover;
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover.active,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover.active {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover.active .box-inner,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover.active .box-inner {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover.active .box-inner strong,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover.active .box-inner strong,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover.active .box-inner span,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover.active .box-inner span {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  padding: 0 20px;
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner strong,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner span,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner span {
  position: static;
  white-space: pre-wrap;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner strong {
  font-size: 53px;
  line-height: 58px;
  margin: 0;
  letter-spacing: 4px;
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong.block-element,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner strong.block-element {
  display: block;
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner span,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner span {
  font-size: 20px;
  line-height: 24px;
  margin-top: 10px;
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner span.date,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner span.date {
  margin-top: 0;
  margin-bottom: 15px;
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner span.price,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner span.price {
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
@media (min-width: 1025px) {
  #grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner span.price,
  #grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner span.price {
    margin-top: 15px;
    margin-bottom: 20px;
  }
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner span.btn,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner span.btn {
  font-family: bebas, arial, sans-serif;
  border: 1px solid #FFF;
  color: #FFF;
  display: inline-block;
  font-size: 16px;
  padding: 18px 20px;
  text-transform: uppercase;
  letter-spacing: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
@media (min-width: 1025px) {
  #grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner span.btn,
  #grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner span.btn {
    font-size: 21px;
    padding: 28px 50px;
  }
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner span.btn:hover,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner span.btn:hover {
  background: #FFF;
  color: #000;
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner img,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner img {
  width: auto;
  height: auto;
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner .inst--small,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink .box-cover .box-inner .inst--small {
  max-width: 70px;
  width: 100%;
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a:hover .box-cover,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink:hover .box-cover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  background-color: rgba(0, 0, 0, 0.4);
}
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio a:hover .box-inner,
#grid-top.grid-main-subpage .tile .ratio-wrap .ratio div.tile-nolink:hover .box-inner {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
@media (max-width: 1200px) {
  #grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong {
    font-size: 27px;
    line-height: 32px;
    letter-spacing: .2em;
  }
  #grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner span {
    font-size: 11px;
    line-height: 1;
    letter-spacing: .35em;
  }
  #grid-top.grid-main-subpage .tile .ratio-wrap .ratio a.tile--tips .box-cover .box-inner span {
    padding-bottom: 15px;
    letter-spacing: 0;
  }
}
@media (max-width: 768px) {
  #grid-top.grid-main-subpage .tile {
    width: 50%;
  }
  #grid-top.grid-main-subpage .tile.tile--w2 {
    width: 100%;
  }
  #grid-top.grid-main-subpage .tile.tile--w2-tablet {
    width: 100%;
  }
  #grid-top.grid-main-subpage .tile.tile--w2-tablet .ratio-wrap {
    padding-bottom: calc(50% - 10px);
  }
  #grid-top.grid-main-subpage .tile.tile--w-half-tablet {
    width: 50%;
  }
  #grid-top.grid-main-subpage .tile.tile--w-half-tablet .ratio-wrap {
    padding-bottom: 100%;
  }
  #grid-top.grid-main-subpage .tile.tablet--fl {
    float: left!important;
  }
  #grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong {
    font-size: 39px;
    line-height: 42px;
    letter-spacing: .2em;
  }
  #grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner span {
    font-size: 11px;
    line-height: 16px;
  }
  #grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner img {
    max-width: 50%;
  }
  #grid-top.grid-main-subpage .tile .ratio-wrap .ratio a.tile--tips .box-cover .box-inner strong {
    font-size: 33px;
    line-height: 36px;
  }
}
@media (max-width: 580px) {
  #grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong {
    display: block;
    width: 100%;
  }
}
@media (max-width: 480px) {
  #grid-top.grid-main-subpage .tile {
    width: 100%!important;
  }
  #grid-top.grid-main-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner img {
    margin-bottom: 5px;
  }
}
#grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a {
  background: #ed1a3b;
}
#grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-cover {
  opacity: 1;
}
#grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner {
  opacity: 1;
  text-align: center;
  border: none;
  padding: 0 15px;
  word-wrap: break-word;
}
#grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner h3 {
  color: #FFF;
  font-family: ProximaNova-Bold, arial, sans-serif;
  font-size: 37px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: none;
}
#grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner img {
  width: auto;
  max-width: 80%;
  margin: 71px auto 70px auto;
  display: block;
}
#grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner .text {
  padding: 18px 26px;
  opacity: 1;
  border: 1px solid #FFF;
  font-family: ainslie, arial, sans-serif;
  font-size: 51px;
  display: inline-block;
  text-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  letter-spacing: 2px;
}
#grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .slide--double img {
  margin: 71px auto 51px auto;
}
#grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .slide--double .text {
  margin-top: 72px;
}
@media (max-width: 1380px) {
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .slide--double h3.at--font {
    font-size: 30px;
    line-height: 1;
  }
}
@media (max-width: 1150px) {
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .slide--double h3.at--font {
    font-size: 20px;
  }
}
@media (max-width: 868px) {
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .slide--double h3.at--font {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .slide--double .text {
    margin-top: 30px;
  }
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .slide--double .percent {
    max-width: 60%;
    margin: 10px auto;
  }
}
#grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a:hover .text {
  background: #FFF;
  color: #ed1a3b;
}
@media (max-width: 1700px) {
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner h3 {
    font-size: 37px;
    line-height: 44px;
  }
}
@media (max-width: 1520px) {
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner img {
    max-width: 350px;
  }
}
@media (max-width: 1400px) {
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner img {
    margin-bottom: 100px;
  }
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner .text {
    font-size: 31px;
  }
}
@media (max-width: 1280px) {
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner h3 {
    font-size: 30px;
    line-height: 1;
  }
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner img {
    max-width: 70%;
  }
}
@media (max-width: 990px) {
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner {
    padding: 10px;
  }
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner h3 {
    font-size: 24px;
    line-height: 1;
  }
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner img {
    max-width: 70%;
    margin: 20px auto;
  }
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner .text {
    font-size: 20px;
  }
}
@media (max-width: 580px) {
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner h3 {
    font-size: 18px;
  }
  #grid-top.grid-main-subpage .tile--sale .ratio-wrap .ratio a .box-inner .text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  #grid-top.grid-main-subpage .tile--sale {
    width: 100%!important;
  }
  #grid-top.grid-main-subpage .tile--sale div.ratio-wrap {
    padding-bottom: calc(100% + 20px) !important;
  }
  #grid-top.grid-main-subpage .tile--sale div.ratio-wrap .ratio a .box-inner h3 {
    font-size: 18px;
  }
  #grid-top.grid-main-subpage .tile--sale div.ratio-wrap .ratio a .box-inner .text {
    font-size: 16px;
  }
}
#grid-top.grid-main-subpage .tile--sale-new h3,
#grid-top.grid-main-subpage .tile--sale-new h4 {
  color: #fff;
}
#grid-top.grid-main-subpage .tile--sale-new h3 {
  margin-bottom: 20px;
  font-family: "ProximaNova-Bold";
  font-weight: 900;
  font-size: 8vw;
  line-height: 9.5vw;
}
@media (min-width: 481px) {
  #grid-top.grid-main-subpage .tile--sale-new h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.1;
  }
}
@media (min-width: 701px) {
  #grid-top.grid-main-subpage .tile--sale-new h3 {
    margin-bottom: 20px;
    font-size: 3.4vw;
  }
}
@media (min-width: 991px) {
  #grid-top.grid-main-subpage .tile--sale-new h3 {
    margin-bottom: 1.4vw;
    font-size: 3.05vw;
    line-height: 3.4vw;
    letter-spacing: 0.25vw;
  }
}
#grid-top.grid-main-subpage .tile--sale-new h4 {
  margin-bottom: 30px;
  font-family: "ProximaNova";
  font-size: 4.5vw;
  letter-spacing: 0.3vw;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 481px) {
  #grid-top.grid-main-subpage .tile--sale-new h4 {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
@media (min-width: 701px) {
  #grid-top.grid-main-subpage .tile--sale-new h4 {
    margin-bottom: 50px;
    font-size: 2.2vw;
  }
}
@media (min-width: 991px) {
  #grid-top.grid-main-subpage .tile--sale-new h4 {
    margin-bottom: 4.1vw;
    font-size: 1.55vw;
    letter-spacing: 0.1vw;
  }
}
#grid-top.grid-main-subpage .tile--sale-new div.ratio-wrap .ratio a .box-inner h3 {
  font-size: 8vw;
  line-height: 9vw;
  letter-spacing: 1vw;
  margin-bottom: 4vw;
  font-weight: 900;
}
@media (min-width: 481px) {
  #grid-top.grid-main-subpage .tile--sale-new div.ratio-wrap .ratio a .box-inner h3 {
    margin-bottom: 2.8vw;
    font-size: 4vw;
    line-height: 6vw;
    letter-spacing: 0.4vw;
  }
  #grid-top.grid-main-subpage .tile--sale-new div.ratio-wrap .ratio a .box-inner h3.small {
    font-size: 4.2vw;
  }
}
@media (min-width: 769px) {
  #grid-top.grid-main-subpage .tile--sale-new div.ratio-wrap .ratio a .box-inner h3 {
    font-size: 3vw;
    line-height: 4vw;
    letter-spacing: 0.3vw;
    margin-bottom: 2vw;
  }
  #grid-top.grid-main-subpage .tile--sale-new div.ratio-wrap .ratio a .box-inner h3.small {
    font-size: 3vw;
  }
}
@media (min-width: 1200px) {
  #grid-top.grid-main-subpage .tile--sale-new div.ratio-wrap .ratio a .box-inner h3 {
    font-size: 3.3vw;
  }
}
#grid-top.grid-main-subpage .tile--sale-new div.ratio-wrap .ratio a .box-inner img {
  margin: 4vw auto 8vw;
  height: 21vw;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 481px) {
  #grid-top.grid-main-subpage .tile--sale-new div.ratio-wrap .ratio a .box-inner img {
    margin: 3vw auto 12vw;
    height: 14vw;
  }
}
@media (min-width: 769px) {
  #grid-top.grid-main-subpage .tile--sale-new div.ratio-wrap .ratio a .box-inner img {
    margin: 2vw auto 8vw;
    height: 9.1vw;
  }
}
#grid-top.grid-main-subpage .tile--sale-new div.ratio-wrap .ratio a .box-inner .text {
  padding: 3vw 15vw;
  letter-spacing: 2px;
  font-size: 5vw;
  font-weight: 400;
}
@media (min-width: 481px) {
  #grid-top.grid-main-subpage .tile--sale-new div.ratio-wrap .ratio a .box-inner .text {
    padding: 3vw 5vw;
    font-size: 3.5vw;
  }
}
@media (min-width: 769px) {
  #grid-top.grid-main-subpage .tile--sale-new div.ratio-wrap .ratio a .box-inner .text {
    padding: 1.9vw 1.87vw;
    font-size: 2.7vw;
  }
}
#wrap-news {
  text-align: center;
}
#wrap-news h1 {
  font-size: 70px;
  padding: 60px 0 40px 0;
}
#wrap-news p,
#wrap-news span,
#wrap-news time {
  font-size: 14px;
  color: #939393;
  line-height: 20px;
  font-family: montserratlight, arial, sans-serif;
}
#wrap-news #news-section .item {
  width: 33.3333%;
}
#wrap-news #news-section h1 {
  padding: 45px 0;
  font-size: 70px;
}
#wrap-news #news-section .news {
  background-color: white;
  border: 1px solid #e3e3e3;
  margin: 15px;
}
#wrap-news #news-section .news .news-cover {
  height: 0px;
  padding-bottom: 50%;
  background-image: url(../img/news/0156.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#wrap-news #news-section .news .news-content {
  height: auto;
  padding: 20px 40px 40px 40px;
  text-align: left;
}
#wrap-news #news-section .news .news-content time {
  display: block;
  font-size: 14px;
  color: #939393;
  line-height: 20px;
  letter-spacing: 4px;
}
#wrap-news #news-section .news .news-content h3 {
  padding: 10px 0 20px 0;
  font-size: 36px;
  line-height: 32px;
}
#wrap-news #news-section .news .news-content p {
  font-size: 13px;
  color: #939393;
  line-height: 20px;
}
#wrap-news #news-section .news .news-content a {
  color: #f8541f !important;
}
@media only screen and (min-width: 701px) and (max-width: 1200px) {
  #wrap-news #news-section .item {
    width: 50%;
  }
}
@media only screen and (min-width: 300px) and (max-width: 700px) {
  #wrap-news #news-section .item {
    width: 100%;
  }
  #wrap-news #news-section .news {
    margin: 15px 15px 0 15px;
  }
}
#wrap-career ul,
#wrap-career li,
#wrap-career p,
#wrap-career span,
#wrap-career time {
  font-size: 14px;
  color: #939393;
  line-height: 20px;
  font-family: montserratlight, arial, sans-serif;
}
#wrap-career #career-section {
  text-align: center;
}
#wrap-career .career-header {
  position: relative;
}
#wrap-career .career-header-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  color: #fff;
  text-align: center;
}
#wrap-career .career-header-info__title {
  margin-bottom: 12px;
  font-family: bebas, arial, sans-serif;
  font-size: 95px;
  letter-spacing: 20px;
}
#wrap-career .career-header-info__description {
  padding: 0 25px;
  width: 815px;
  max-width: 100%;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 3px;
  color: #fff;
}
#wrap-career .career-header-info__logo {
  margin-top: 33px;
  height: 43px;
}
#wrap-career .career-description {
  padding: 57px 13% 0;
}
#wrap-career .career-description__text {
  padding-bottom: 24px;
  font-size: 17px;
  line-height: 28px;
  color: #000;
}
#wrap-career .career-description__text:last-of-type {
  padding-bottom: 0;
}
#wrap-career h1 {
  padding: 60px 0 30px 0;
}
#wrap-career h4 {
  font-size: 20px;
  padding-bottom: 20px;
}
#wrap-career .left {
  width: 50%;
  float: left;
  padding: 0 60px;
}
#wrap-career .left::after {
  content: '';
  display: table;
  clear: both;
}
#wrap-career .left select {
  border: 0px;
  background-color: #f8541f;
  color: #FFF;
  width: 100%;
  display: none;
}
#wrap-career .left ul {
  display: block;
}
#wrap-career .left ul li {
  height: 40px;
  margin: 5px 0;
  border: 1px solid #dcdcdc;
  line-height: 40px;
}
#wrap-career .left ul li a {
  display: block;
  color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-career .left ul li a:hover {
  color: #f8541f;
  background-color: #000;
}
#wrap-career .left ul .current {
  color: #f8541f;
  background-color: #000;
}
#wrap-career .right {
  width: 50%;
  float: left;
  padding: 0 60px;
}
#wrap-career .right::after {
  content: '';
  display: table;
  clear: both;
}
#wrap-career .right .divider {
  width: 100%;
  height: 1px;
  background-color: #bdbdbd;
  margin-top: 20px;
  zoom: 1;
}
#wrap-career .right .divider:before {
  content: '';
  display: block;
}
#wrap-career .right .divider:after {
  content: '';
  display: table;
  clear: both;
}
#wrap-career .right span {
  display: block;
  color: #000;
  padding: 24px 0 10px 0;
}
#wrap-career .right .job-conditions {
  background-color: #e1e1e1;
  padding: 20px 60px;
  font-size: 12px;
  border-left: 3px solid #f8541f;
  margin-bottom: 20px;
}
#wrap-career .right .job-description {
  text-align: left;
}
#wrap-career .right .job-description h5 {
  font-size: 14px;
  color: #939393;
  line-height: 20px;
  text-transform: uppercase;
  font-family: montserratregular, arial, sans-serif;
  color: #000;
}
#wrap-career .right .job-description h4 {
  font-size: 13px;
  color: #939393;
  line-height: 20px;
  text-transform: none;
  font-family: montserratlight, arial, sans-serif;
}
#wrap-career .right .job-description .title_div {
  width: 100%;
  font-size: 20px;
  color: #f8541f;
  font-family: montserratregular, arial, sans-serif;
}
#wrap-career .right .job-description a {
  color: #f8541f !important;
}
#wrap-career .right .job-description p {
  font-size: 13px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 8px;
  font-family: montserratregular, arial, sans-serif;
}
#wrap-career .right .job-description li {
  margin-left: 24px;
  text-indent: -14px;
  font-size: 13px;
}
#wrap-career .right .job-description li:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  left: -10px;
  line-height: 0px;
  width: 12px;
  height: 12px;
  background-image: url(../img/bullet.svg);
  background-size: 12px 12px;
  background-position: left;
  background-repeat: no-repeat;
}
#wrap-career .right .divider {
  width: 100%;
  height: 1px;
  background-color: #bdbdbd;
  margin-top: 40px;
  zoom: 1;
}
#wrap-career .right .divider:before {
  content: '';
  display: block;
}
#wrap-career .right .divider:after {
  content: '';
  display: table;
  clear: both;
}
#wrap-career .right #submitForm {
  width: 345px;
  height: 45px;
  background-color: #f8541f;
  border: 0px;
  font-size: 16px;
  color: #FFF;
  letter-spacing: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: bebas, arial, sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-career .right #submitForm:hover {
  background-color: #000;
}
#wrap-career .center {
  display: inline-block;
  margin: 50px 0 40px;
  width: 100%;
}
#wrap-career .linkedin-button {
  margin: 65px 0 50px;
  display: inline-block;
  border: 1px solid #007bb6;
  transition: all 0.4s;
}
#wrap-career .linkedin-button::after {
  content: '';
  display: table;
  clear: both;
}
#wrap-career .linkedin-button:hover {
  background-color: #007bb6;
  cursor: pointer;
}
#wrap-career .linkedin-button:hover .linkedin-button__text {
  color: #fff;
}
#wrap-career .linkedin-button-logo {
  float: left;
  padding: 9px;
  background-color: #007bb6;
}
#wrap-career .linkedin-button-logo__image {
  width: 47px;
  height: 47px;
}
#wrap-career .linkedin-button__text {
  float: left;
  padding: 21px 24px 0 33px;
  font-family: bebas, arial, sans-serif;
  font-size: 25px;
  letter-spacing: 9px;
  color: #007bb6;
  transition: color 0.4s;
}
#wrap-offer .controlls .arrow-left,
#wrap-offer .controlls .arrow-right {
  position: absolute;
  display: block;
  width: 66px;
  height: 66px;
  border: 1px #cccccc solid;
  cursor: pointer;
  top: 50%;
  margin-top: -33px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-offer .controlls .arrow-left > .icon,
#wrap-offer .controlls .arrow-right > .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  display: block;
  width: 20px;
  height: 20px;
  text-indent: -99999px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-image: url(../img/next-prev.png);
}
#wrap-offer .controlls .arrow-left.prev,
#wrap-offer .controlls .arrow-right.prev {
  left: 0;
}
#wrap-offer .controlls .arrow-left.prev .icon,
#wrap-offer .controlls .arrow-right.prev .icon {
  background-position: 0 -20px;
}
#wrap-offer .controlls .arrow-left.next,
#wrap-offer .controlls .arrow-right.next {
  right: 0;
}
#wrap-offer .controlls .arrow-left.next .icon,
#wrap-offer .controlls .arrow-right.next .icon {
  background-position: 0 0;
}
#wrap-offer .controlls .arrow-left:hover,
#wrap-offer .controlls .arrow-right:hover {
  background-color: #000;
  border-color: #000;
}
#wrap-offer .controlls .arrow-left:hover.prev .icon,
#wrap-offer .controlls .arrow-right:hover.prev .icon {
  background-position: -20px -20px;
}
#wrap-offer .controlls .arrow-left:hover.next .icon,
#wrap-offer .controlls .arrow-right:hover.next .icon {
  background-position: -20px 0;
}
#wrap-offer .wrap-narrow {
  top: 50px;
  position: relative;
}
#wrap-offer .wrap-narrow .owl-item.loading {
  background: url(../img/loader.svg) no-repeat center center;
  min-height: 200px;
  background-color: #ebebeb;
}
#wrap-offer .wrap-narrow #offer-slider {
  width: 80%;
  margin: 0 auto;
  display: block;
}
#wrap-offer .wrap-narrow #offer-slider .owl-next,
#wrap-offer .wrap-narrow #offer-slider .owl-prev {
  display: none;
}
#wrap-offer .wrap-narrow #offer-slider img {
  width: 100%;
}
#wrap-offer #nav-bottom {
  position: fixed;
  width: 100%;
  height: 64px;
  top: 100%;
  margin-top: -64px;
  background-color: #000;
  text-align: center;
}
#wrap-offer #nav-bottom ul {
  display: inline-block;
  height: 100%;
  margin: 0 auto;
}
#wrap-offer #nav-bottom li {
  float: left;
  height: 100%;
}
#wrap-offer #nav-bottom li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 20px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 4px;
  line-height: 62px;
  padding: 0 40px;
  font-family: bebas, arial, sans-serif;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -o-transform: translate(0px);
}
#wrap-offer #nav-bottom li a:hover {
  color: #f8541f;
}
#wrap-offer #nav-bottom li .current {
  background-color: #FFF;
  color: #f8541f;
}
#wrap-offer *::selection {
  background-color: transparent;
}
#wrap-offer *::-moz-selection {
  background-color: transparent;
}
#wrap-offer * {
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  /*IE10*/
  -ms-user-select: none;
  user-select: none;
  /*You just need this if you are only concerned with android and not desktop browsers.*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#scroll-fix {
  position: fixed;
  width: 100%;
  height: 0;
}
#video-section .annotations {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
#video-section .annotations .annotation {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #f8541f;
  color: #FFF;
  font-size: 40px;
  position: absolute;
  -webkit-transform: scale(0) translateZ(0) scale(1, 1);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
#video-section .annotations .annotation.on {
  -webkit-transform: scale(1) translateZ(0) scale(1, 1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#video-section .annotations .annotation:hover {
  background: #FFF;
  color: #f8541f;
}
#video-section .annotations.annotations--woman .annotation-1 {
  top: 67%;
  left: 36%;
}
#video-section .annotations.annotations--woman .annotation-2 {
  top: 73%;
  left: 58%;
}
#video-section .annotations.annotations--woman .annotation-3 {
  top: 77%;
  left: 39%;
}
#video-section .annotations.annotations--woman .annotation-4 {
  top: 81%;
  left: 57%;
}
#video-section .annotations.annotations--woman .annotation-5 {
  top: 57%;
  left: 62%;
}
#video-section .annotations.annotations--man .annotation-1 {
  top: 85%;
  left: 45%;
}
#video-section .annotations.annotations--man .annotation-2 {
  top: 67%;
  left: 12%;
}
#video-section .annotations.annotations--man .annotation-3 {
  top: 90%;
  left: 62%;
}
#video-section .annotations.annotations--kids .annotation-1 {
  top: 70%;
  left: 21%;
}
#video-section .annotations.annotations--kids .annotation-2 {
  top: 65%;
  left: 43%;
}
#video-section .annotations.annotations--kids .annotation-3 {
  top: 57%;
  left: 39%;
}
#video-section .annotations.annotations--kids .annotation-4 {
  top: 70%;
  left: 66%;
}
#video-section .close,
#video-section .close--anno {
  display: inline-block;
  border: 0;
  font-size: 32px;
  text-indent: -99999px;
  margin-left: 15px;
  position: absolute !important;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  background: #000 url(../img/close-cross.png) 50% 50% no-repeat;
  background-size: 14px 14px;
  z-index: 99;
  display: none;
}
#video-section .close--anno {
  display: block;
}
#video-section .close:hover,
#video-section .close--anno:hover {
  background-color: #f8541f;
}
#video-section #video-section-top {
  position: relative;
  overflow: hidden;
}
#video-section #video-section-top .video-container {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #000;
}
#video-section #video-section-top .video-container .video-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}
#video-section #video-section-top .video-container video {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
#video-section #video-section-top .video-container video.playing {
  position: static;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
  transform: translate(0, 0) translateZ(0) scale(1, 1);
  width: auto;
  max-width: 100%;
  height: 100%;
}
#video-section #video-section-top .video-play-btn {
  display: inline-block;
  opacity: 0.5;
  width: 60px;
  height: 60px;
  background: url("../img/video/video-play.png") 50% 50% no-repeat;
  background-size: contain;
  line-height: 160px;
  text-align: center;
  font-family: montserratlight, arial, sans-serif;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-indent: -9999px;
}
#video-section #video-section-top .video-play-btn span {
  -webkit-transform: translate(-50%, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, 0) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, 0) translateZ(0) scale(1, 1);
  transform: translate(-50%, 0) translateZ(0) scale(1, 1);
  position: absolute;
  left: 50%;
}
#video-section #video-section-top .popups {
  position: relative;
}
#video-section #video-section-top .popups .popup {
  position: fixed;
  z-index: 102;
  top: 81px;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #FFF;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  -ms-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}
#video-section #video-section-top .popups .popup.on {
  z-index: 102;
  opacity: 1;
  visibility: visible;
}
#video-section #video-section-top .popups .popup .popup-inner {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
#video-section #video-section-top .popups .popup .popup-inner .item__title {
  font-family: bebas, arial, sans-serif;
  letter-spacing: 8px;
  color: #000;
  display: inline-block;
  font-size: 45px;
  position: relative;
  padding: 0 20px;
}
#video-section #video-section-top .popups .popup .popup-inner .item__title:before,
#video-section #video-section-top .popups .popup .popup-inner .item__title:after {
  content: '';
  width: 30px;
  height: 1px;
  background: #cdcdcd;
  position: absolute;
}
#video-section #video-section-top .popups .popup .popup-inner .item__title:before {
  left: 0;
  top: 50%;
  -webkit-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-100%, -100%);
  transform: translate(-100%, -100%);
  -webkit-transform: translate(-100%, -100%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  -o-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
}
#video-section #video-section-top .popups .popup .popup-inner .item__title:after {
  right: 0;
  top: 50%;
  -webkit-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, -100%);
  transform: translate(100%, -100%);
  -webkit-transform: translate(100%, -100%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -o-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  transform: translate(100%, -100%) translateZ(0) scale(1, 1);
}
#video-section #video-section-top .popups .popup .popup-inner .item__no {
  font-family: bebas, arial, sans-serif;
  letter-spacing: 8px;
  color: #000;
  display: block;
  font-size: 45px;
}
#video-section #video-section-top .popups .popup .popup-inner .item__price {
  display: block;
  color: #f8541f;
  font-family: montserratlight, arial, sans-serif;
  margin: 40px 0;
  font-size: 30px;
}
#video-section #video-section-top .popups .popup .popup-inner .btn {
  font-family: bebas, arial, sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  border: 1px solid #000;
  padding: 0 10px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  color: #000;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 40px;
}
#video-section #video-section-top .popups .popup .popup-inner .btn:hover {
  background-color: #ffffff;
  color: #f8541f;
}
#video-section #video-section-top .popups .popup .popup-inner img {
  width: 100%;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  #video-section #video-section-top .popups .popup .popup-inner .item__title {
    font-size: 24px;
    padding: 0 10px;
  }
  #video-section #video-section-top .popups .popup .popup-inner .item__title:before,
  #video-section #video-section-top .popups .popup .popup-inner .item__title:after {
    display: none;
  }
  #video-section #video-section-top .popups .popup .popup-inner .item__no {
    font-size: 20px;
  }
  #video-section #video-section-top .popups .popup .popup-inner .item__price {
    font-size: 18px;
    margin: 20px 0;
  }
  #video-section #video-section-top .popups .popup .popup-inner .btn {
    height: auto;
    line-height: 1;
    font-size: 18px;
    padding: 10px;
  }
}
/* Przeniesione do video-rwd.less */
@media (max-width: 1024px) {
  video.playing {
    position: static !important;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1) !important;
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1) !important;
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1) !important;
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1) !important;
    transform: translate(0, 0) translateZ(0) scale(1, 1) !important;
    width: 100% !important;
    height: auto !important;
  }
}
@media (max-width: 768px) {
  #video-section #video-section-top .popups .jsVideoClose {
    top: 0;
  }
  #video-section #video-section-top .popups .popup {
    position: fixed;
    top: 0;
  }
  #video-section #video-section-top .video-container .annotations .annotation {
    width: 30px;
    height: 30px;
    line-height: 32px;
    font-size: 25px;
  }
}
@media (max-height: 500px) {
  #video-section #video-section-top .popups .popup .popup-inner {
    top: 50px;
    -webkit-transform: translate(-50%, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(-50%, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, 0) translateZ(0) scale(1, 1);
    transform: translate(-50%, 0) translateZ(0) scale(1, 1);
  }
  #video-section #video-section-top .popups .popup .popup-inner .item__price {
    margin: 10px 0;
  }
  #video-section #video-section-top .popups .popup .popup-inner .btn {
    margin-bottom: 20px;
  }
  #video-section #video-section-top .popups .popup .popup-inner img {
    max-width: 60%;
  }
}
@media only screen and (min-width: 765px) {
  #video-section #video-section-top .video-container {
    height: 475px;
  }
  #video-section #video-section-top .video-play-btn {
    width: 60px;
    height: 60px;
    text-indent: initial;
    background-size: 100%;
    line-height: 160px;
  }
  #video-section #video-section-top .popups .popup {
    width: 30%;
  }
}
.video_act_section {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  text-align: center;
}
.video_titlesection {
  position: relative;
  margin-bottom: 30px;
  margin-top: 10px;
  color: #fff;
  text-align: center;
}
.video_titlesection:after,
.video_titlesection:before {
  content: '';
  position: absolute;
  opacity: 0.5;
  top: 30px;
  width: 100px;
  border-bottom: 1px solid #fff;
}
.video_titlesection:before {
  left: -30px;
  transform: translate(-100%, 0);
}
.video_titlesection:after {
  right: -30px;
  transform: translate(100%, 0);
}
.video_titlesection .video__title {
  font-size: 50px;
  color: #fff;
  letter-spacing: 10px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 765px) {
  .video_titlesection .video__title {
    font-size: 60px;
  }
}
.video_titlesection .video__subtitle {
  font-family: montserratlight, sans-serif;
  letter-spacing: 8px;
  font-size: 14px;
  text-transform: uppercase;
}
#wrap-gallery {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#wrap-gallery #desktop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#wrap-gallery #desktop #sync1 {
  position: absolute;
  top: 62px;
  right: 0;
  bottom: 100px;
  left: 0;
}
#wrap-gallery #desktop #sync1 .item.preload-background-image-loaded {
  width: 100%;
  height: 100%;
  min-height: 1px;
  background-color: #FFF;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#wrap-gallery #desktop #sync1 .item {
  width: 100%;
  min-height: 200px;
  background-color: #FFF;
  background-image: url(../img/loader.svg);
  background-position: center;
  background-size: 50px 50px;
  background-repeat: no-repeat;
}
#wrap-gallery #desktop #sync1 .owl-buttons .owl-prev,
#wrap-gallery #desktop #sync1 .owl-buttons .owl-next {
  text-indent: -99999px;
  position: absolute;
  display: block;
  width: 66px;
  height: 66px;
  background-color: #FFF;
  cursor: pointer;
  top: 50%;
  margin-top: -33px;
  border: 1px solid #ebebeb;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-gallery #desktop #sync1 .owl-buttons .owl-prev.owl-prev,
#wrap-gallery #desktop #sync1 .owl-buttons .owl-next.owl-prev {
  left: 20px;
}
#wrap-gallery #desktop #sync1 .owl-buttons .owl-prev.owl-prev::after,
#wrap-gallery #desktop #sync1 .owl-buttons .owl-next.owl-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position: 0 -20px;
  background-image: url(../img/next-prev.png);
}
#wrap-gallery #desktop #sync1 .owl-buttons .owl-prev.owl-next,
#wrap-gallery #desktop #sync1 .owl-buttons .owl-next.owl-next {
  right: 20px;
}
#wrap-gallery #desktop #sync1 .owl-buttons .owl-prev.owl-next::after,
#wrap-gallery #desktop #sync1 .owl-buttons .owl-next.owl-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position: 0 0;
  background-image: url(../img/next-prev.png);
}
#wrap-gallery #desktop #sync1 .owl-buttons .owl-prev:hover,
#wrap-gallery #desktop #sync1 .owl-buttons .owl-next:hover {
  background-color: #000;
}
#wrap-gallery #desktop #sync1 .owl-buttons .owl-prev:hover.owl-prev::after,
#wrap-gallery #desktop #sync1 .owl-buttons .owl-next:hover.owl-prev::after {
  background-position: -20px -20px;
}
#wrap-gallery #desktop #sync1 .owl-buttons .owl-prev:hover.owl-next::after,
#wrap-gallery #desktop #sync1 .owl-buttons .owl-next:hover.owl-next::after {
  background-position: -20px 0;
}
#wrap-gallery #desktop #sync2 {
  position: fixed;
  bottom: 0px;
  background-color: #000;
}
#wrap-gallery #desktop #sync2:hover .owl-controls .owl-buttons .owl-prev {
  left: 0px;
}
#wrap-gallery #desktop #sync2:hover .owl-controls .owl-buttons .owl-next {
  right: 0px;
}
#wrap-gallery #desktop #sync2 .owl-item {
  width: 160px;
  height: 100px;
  cursor: pointer;
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
  filter: alpha(opacity=80);
}
#wrap-gallery #desktop #sync2 .owl-item .item.preload-background-image-loaded {
  width: 100%;
  height: 100%;
  background-color: #000;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#wrap-gallery #desktop #sync2 .owl-item .item {
  width: 100%;
  height: 100%;
  background-color: #000;
  background-image: url(../img/loader.svg);
  background-position: center;
  background-size: 25px 25px;
  background-repeat: no-repeat;
}
#wrap-gallery #desktop #sync2 .owl-item.synced {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#wrap-gallery #desktop #sync2 .owl-item.synced .item {
  cursor: auto;
}
#wrap-gallery #desktop #sync2 .owl-buttons .owl-prev,
#wrap-gallery #desktop #sync2 .owl-buttons .owl-next {
  text-indent: -99999px;
  position: absolute;
  display: block;
  width: 40px;
  height: 100%;
  background-color: #000;
  cursor: pointer;
  top: 0;
  border: 1px solid #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-gallery #desktop #sync2 .owl-buttons .owl-prev.owl-prev,
#wrap-gallery #desktop #sync2 .owl-buttons .owl-next.owl-prev {
  left: -40px;
}
#wrap-gallery #desktop #sync2 .owl-buttons .owl-prev.owl-prev::after,
#wrap-gallery #desktop #sync2 .owl-buttons .owl-next.owl-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position: 0 -20px;
  background-image: url(../img/next-prev-wo.png);
}
#wrap-gallery #desktop #sync2 .owl-buttons .owl-prev.owl-next,
#wrap-gallery #desktop #sync2 .owl-buttons .owl-next.owl-next {
  right: -40px;
}
#wrap-gallery #desktop #sync2 .owl-buttons .owl-prev.owl-next::after,
#wrap-gallery #desktop #sync2 .owl-buttons .owl-next.owl-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position: 0 0;
  background-image: url(../img/next-prev-wo.png);
}
#wrap-gallery #desktop #sync2 .owl-buttons .owl-prev:hover,
#wrap-gallery #desktop #sync2 .owl-buttons .owl-next:hover {
  background-color: #000;
  border: 1px solid #000;
}
#wrap-gallery #desktop #sync2 .owl-buttons .owl-prev:hover.owl-prev::after,
#wrap-gallery #desktop #sync2 .owl-buttons .owl-next:hover.owl-prev::after {
  background-position: -20px -20px;
}
#wrap-gallery #desktop #sync2 .owl-buttons .owl-prev:hover.owl-next::after,
#wrap-gallery #desktop #sync2 .owl-buttons .owl-next:hover.owl-next::after {
  background-position: -20px 0;
}
#wrap-gallery #mobile {
  width: 100%;
  overflow-x: hidden;
  background-color: #ebebeb;
  padding-top: 62px;
}
#wrap-gallery #mobile > div {
  padding: 15px;
  width: 100%;
  height: 0;
  padding-bottom: 62%;
  background-color: #ebebeb;
  background-image: url(../img/gallery/loader.gif);
  background-position: center;
  background-size: 50px 50px;
  background-repeat: no-repeat;
}
#wrap-gallery #mobile .preload-background-image-loaded {
  width: 100%;
  height: 0;
  padding-bottom: 62%;
  background-color: #ebebeb;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/**
 * style przeniesione do rwd
 */
#wrap-inspiration .only-mobile {
  display: none;
}
@media (max-width: 480px) {
  #wrap-inspiration .only-mobile {
    display: block!important;
  }
}
#wrap-inspiration .inspiration-loader img {
  display: block;
  margin: 50px auto;
}
#wrap-inspiration #inspiration_top {
  width: 100%;
  height: 680px;
  position: relative;
  box-sizing: content-box;
  margin: 0 0 0 0;
  background-image: url("../img/inspiration/back-to-school/top.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  overflow: hidden;
  text-align: center;
}
#wrap-inspiration #inspiration_top.back-to-school {
  background-image: url('../img/inspiration/back-to-school/top.jpg');
}
#wrap-inspiration #inspiration_top.youngsters {
  background-image: url('../img/inspiration/youngsters/youngsters.jpg');
}
#wrap-inspiration #inspiration_top .loader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/loader.svg") 50% 50% / auto #eee no-repeat;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
#wrap-inspiration #inspiration_top .loader.loading {
  opacity: 1;
  visibility: visible;
}
#wrap-inspiration #inspiration_top .cover {
  position: relative;
  width: 100%;
  height: 100%;
}
#wrap-inspiration #inspiration_top .cover .inspiration-box-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-inspiration #inspiration_top .cover .center {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
#wrap-inspiration #inspiration_top .cover .center h3 {
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 85px;
  padding-bottom: 35px;
  display: inline-block;
  position: relative;
}
#wrap-inspiration #inspiration_top .cover .center h3 strong {
  font-weight: bold;
}
#wrap-inspiration #inspiration_top .cover .center img {
  display: block;
  margin: 0 auto 10px auto;
}
#wrap-inspiration #inspiration_top .cover .center .center__list {
  max-width: 1520px;
  margin: 0 auto;
}
#wrap-inspiration #inspiration_top .cover .center ul {
  display: inline-block;
  text-align: center;
}
#wrap-inspiration #inspiration_top .cover .center ul li {
  display: inline-block;
  margin: 10px 10px 0 10px;
}
#wrap-inspiration #inspiration_top .cover .center ul li.break {
  display: block;
}
body.pl #wrap-inspiration #inspiration_top .cover .center ul li .break {
  display: block;
  padding: 0;
  margin: 0;
}
#wrap-inspiration #inspiration_top .cover .center ul li a {
  padding: 22px 50px;
  height: auto;
  font-size: 25px;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #FFF;
}
#wrap-inspiration #inspiration_top .cover .center ul li a:hover,
#wrap-inspiration #inspiration_top .cover .center ul li a.active {
  background-color: #ffffff;
  color: #000;
}
#wrap-inspiration #inspiration_top .cover:hover .inspiration-box-cover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#wrap-inspiration #inspiration_top .cover:hover h3 {
  letter-spacing: 20px;
}
@media (max-width: 1600px) {
  #wrap-inspiration #inspiration_top .cover .center .center__list ul li a {
    padding: 16px;
    letter-spacing: 6px;
  }
}
@media (max-width: 1200px) {
  #wrap-inspiration #inspiration_top .cover .center h3 {
    padding-bottom: 40px;
  }
  #wrap-inspiration #inspiration_top .cover .center .center__list ul li a {
    font-size: 18px;
    padding: 15px 20px;
    letter-spacing: 4px;
  }
}
@media (max-width: 990px) {
  #wrap-inspiration #inspiration_top {
    height: 360px;
  }
  #wrap-inspiration #inspiration_top .cover .center .center__header img {
    max-width: 130px;
  }
  #wrap-inspiration #inspiration_top .cover .center .center__header h3 {
    font-size: 45px;
    padding-bottom: 20px;
  }
  #wrap-inspiration #inspiration_top .cover .center .center__list ul li {
    margin: 5px;
  }
  #wrap-inspiration #inspiration_top .cover .center .center__list ul li a {
    font-size: 14px;
    letter-spacing: 3px;
  }
}
@media (max-width: 768px) {
  #wrap-inspiration #inspiration_top {
    height: 565px;
  }
  #wrap-inspiration #inspiration_top .cover:hover .inspiration-box-cover {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
  }
  #wrap-inspiration #inspiration_top .cover:hover h3 {
    letter-spacing: 4px;
  }
  #wrap-inspiration #inspiration_top .cover .center .center__list ul li {
    width: 96%;
    margin: 5px 2%;
  }
  #wrap-inspiration #inspiration_top .cover .center .center__list ul li a {
    font-size: 16px;
    padding: 15px;
    letter-spacing: 2px;
  }
}
@media (max-width: 480px) {
  #wrap-inspiration #inspiration_top .cover .center .center__list ul li a {
    font-size: 16px;
    padding: 15px;
    letter-spacing: 2px;
  }
}
#wrap-inspiration #inspiration_top.ide-zmieniac-swiat {
  background-image: url('../img/inspiration/inspiration-bg-ide-zmieniac-swiat.jpg');
  background-position: 50% 0;
}
#wrap-inspiration #inspiration_top.ide-tam-gdzie-cos-sie-dzieje {
  background-image: url('../img/inspiration/inspiration-bg-ide-tam-gdzie-cos-sie-dzieje.jpg');
  background-position: 50% 0;
}
#wrap-inspiration #inspiration_top.ide-po-swoje {
  background-image: url('../img/inspiration/inspiration-bg-ide-po-swoje.jpg');
  background-position: 50% 0;
}
#wrap-inspiration #inspiration_top.ide-po-szczescie {
  background-image: url('../img/inspiration/inspiration-bg-ide-po-szczescie.jpg');
  background-position: 50% 0;
}
#wrap-inspiration #inspiration_top.ide-tanczyc {
  background-image: url('../img/inspiration/inspiration-bg-ide-tanczyc.jpg');
  background-position: 50% 0;
}
#wrap-inspiration #inspiration_top.ide-dalej-niz-inni {
  background-image: url('../img/inspiration/inspiration-bg-ide-dalej-niz-inni.jpg');
  background-position: 50% 0;
}
@media (max-width: 768px) {
  #wrap-inspiration #inspiration_top.ide-po-swoje {
    background-position: 10% 0;
  }
}
@media (max-width: 480px) {
  #wrap-inspiration #inspiration_top.ide-zmieniac-swiat {
    background: url('../img/inspiration/inspiration-bg-ide-zmieniac-swiat-mobile.jpg') 50% 50% / cover;
  }
  #wrap-inspiration #inspiration_top.ide-tam-gdzie-cos-sie-dzieje {
    background: url('../img/inspiration/inspiration-bg-ide-tam-gdzie-cos-sie-dzieje-mobile.jpg') 50% 50% / cover;
  }
  #wrap-inspiration #inspiration_top.ide-po-swoje {
    background: url('../img/inspiration/inspiration-bg-ide-po-swoje-mobile.jpg') 50% 50% / cover;
  }
  #wrap-inspiration #inspiration_top.ide-po-szczescie {
    background: url('../img/inspiration/inspiration-bg-ide-po-szczescie-mobile.jpg') 50% 50% / cover;
  }
  #wrap-inspiration #inspiration_top.ide-tanczyc {
    background: url('../img/inspiration/inspiration-bg-ide-tanczyc-mobile.jpg') 50% 50% / cover;
  }
  #wrap-inspiration #inspiration_top.ide-dalej-niz-inni {
    background: url('../img/inspiration/inspiration-bg-ide-dalej-niz-inni-mobile.jpg') 50% 50% / cover;
  }
}
#wrap-inspiration .inspiration-header {
  text-align: center;
}
#wrap-inspiration .inspiration-header h3 {
  letter-spacing: 4px;
  margin: 50px 0 40px;
  font-family: montserratregular, arial, sans-serif;
  position: relative;
  display: inline-block;
  font-size: 19px;
  line-height: 22px;
  max-width: 550px;
}
#wrap-inspiration .inspiration-header h3:before,
#wrap-inspiration .inspiration-header h3:after {
  content: '';
  width: 90px;
  height: 2px;
  background: #cdcdcd;
  position: absolute;
}
#wrap-inspiration .inspiration-header h3:before {
  left: 0;
  top: 40%;
  -webkit-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-100%, -100%);
  transform: translate(-100%, -100%);
  -webkit-transform: translate(-100%, -100%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  -o-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  margin-left: -50px;
}
#wrap-inspiration .inspiration-header h3:after {
  right: 0;
  top: 40%;
  -webkit-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, -100%);
  transform: translate(100%, -100%);
  -webkit-transform: translate(100%, -100%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -o-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  margin-right: -50px;
}
#wrap-inspiration .inspiration-header h3 strong {
  font-family: montserratbold, arial, sans-serif;
}
@media (max-width: 1024px) {
  #wrap-inspiration .inspiration-header h3 {
    font-size: 14px;
    line-height: 18px;
    margin: 50px 0;
  }
}
@media (max-width: 768px) {
  #wrap-inspiration .inspiration-header h3 {
    letter-spacing: 2px;
    font-size: 11px;
    line-height: 15px;
    margin: 40px 0;
  }
}
@media (max-width: 480px) {
  #wrap-inspiration .inspiration-header h3 {
    letter-spacing: 0;
    max-width: 300px;
  }
  #wrap-inspiration .inspiration-header h3:before,
  #wrap-inspiration .inspiration-header h3:after {
    display: none;
  }
}
#wrap-inspiration #inspiration_list {
  margin-top: 1%;
  width: 100%;
  min-height: 400px;
}
#wrap-inspiration #inspiration_list .grid {
  margin: 0 0.5%;
  background: url("../img/loader.svg") 50% 50px no-repeat;
}
#wrap-inspiration #inspiration_list .grid .grid-item {
  opacity: 0;
}
#wrap-inspiration #inspiration_list .grid.loaded {
  opacity: 1;
  background: none;
}
#wrap-inspiration #inspiration_list .grid.loaded .grid-item {
  opacity: 1;
}
#wrap-inspiration #inspiration_list .grid .grid-item {
  width: 33.333333%;
  padding: 0.5%;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item {
  position: relative;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item img {
  max-width: 100%;
  display: block;
  width: 100%;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item:hover .item__overlay {
  opacity: 1;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner {
  border: 1px solid #b2b1b1;
  text-align: center;
  top: 10px;
  right: 10px;
  left: 10px;
  bottom: 10px;
  position: absolute;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  width: 100%;
  text-align: center;
  padding: 20px;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__title,
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__no {
  font-family: bebas, arial, sans-serif;
  font-size: 50px;
  color: #FFF;
  line-height: 54px;
  letter-spacing: 8px;
  text-transform: uppercase;
  display: block;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text a {
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 20px;
  font-family: montserratregular, arial, sans-serif;
  margin-top: 30px;
  display: block;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__price {
  display: block;
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  margin: 10px 0;
  font-size: 20px;
  font-weight: 200;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .btn {
  font-family: bebas, arial, sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  border: 1px solid #FFF;
  padding: 0 20px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  color: #FFF;
  font-size: 21px;
  letter-spacing: 8px;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .btn:hover {
  background-color: #ffffff;
  color: #000;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .btn.btn--hi {
  height: auto;
  line-height: 24px;
  margin: 10px 20px;
  padding: 10px 20px;
}
@media (max-width: 990px) {
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .btn.btn--hi {
    line-height: 18px;
    margin: 10px 20px;
    padding: 5px 20px;
  }
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text img {
  display: block;
  margin: 0 auto 20px auto;
  width: auto;
  max-width: 350px;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text img.yt {
  max-width: 130px;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text img.inst {
  max-width: 300px;
  width: auto;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text img.inst--small {
  max-width: 110px;
  width: auto;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text img.fb {
  max-width: 130px;
}
@media (max-width: 1024px) {
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text img {
    max-width: 80%!important;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text img.yt {
    max-height: 60px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text img.inst {
    max-height: 80px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text img.fb {
    max-height: 60px;
  }
}
#wrap-inspiration #inspiration_list .grid .grid-item .item.item--instagram .btn {
  margin-top: 30px;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item.item--small .item__overlay .overlay__inner .inner__text .item__title,
#wrap-inspiration #inspiration_list .grid .grid-item .item.item--small .item__overlay .overlay__inner .inner__text .item__no {
  font-size: 32px;
  margin: 0;
  line-height: 1;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item.item--small .item__overlay .overlay__inner .inner__text .item__price {
  margin: 10px 0;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item.item--small .item__overlay .overlay__inner .inner__text .btn {
  height: 50px;
  line-height: 50px;
  margin-top: 0;
}
@media (max-width: 1600px) {
  #wrap-inspiration #inspiration_list .grid .grid-item .item.item--small .item__overlay .overlay__inner .inner__text .item__title,
  #wrap-inspiration #inspiration_list .grid .grid-item .item.item--small .item__overlay .overlay__inner .inner__text .item__no {
    font-size: 24px;
    line-height: 1;
    margin: 0;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item.item--small .item__overlay .overlay__inner .inner__text .btn {
    height: auto;
    line-height: 1;
    padding: 10px 20px;
  }
}
@media (max-width: 1200px) {
  #wrap-inspiration #inspiration_list .grid .grid-item .item.item--small .item__overlay .overlay__inner .inner__text .item__price {
    margin: 5px 0;
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  #wrap-inspiration #inspiration_list .grid .grid-item .item.item--small .item__overlay .overlay__inner .inner__text .item__title,
  #wrap-inspiration #inspiration_list .grid .grid-item .item.item--small .item__overlay .overlay__inner .inner__text .item__no {
    font-size: 16px;
    line-height: 1;
    margin: 0;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item.item--small .item__overlay .overlay__inner .inner__text .item__price {
    margin: 5px 0;
    font-size: 14px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item.item--small .item__overlay .overlay__inner .inner__text .btn {
    padding: 3px 10px;
  }
}
#wrap-inspiration #inspiration_list .grid .grid-item .item.item--tips .item__overlay .overlay__inner .inner__text {
  max-width: 410px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
#wrap-inspiration #inspiration_list .grid .grid-item .item.item--tips .item__overlay .overlay__inner .inner__text .item__price {
  font-family: montserratultra_light, arial, sans-serif;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item.item--tips .item__overlay .overlay__inner .inner__text .item__title {
  padding: 0 20px;
}
#wrap-inspiration #inspiration_list .grid .grid-item .item__footer h3 {
  color: #999;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  padding: 20px 0 20px;
  font-weight: 200;
}
@media (max-width: 1600px) {
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__title,
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__no {
    font-size: 36px;
    line-height: 1;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text img {
    max-width: 100%;
    padding: 0 20px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .btn {
    margin-top: 10px;
    height: auto;
    line-height: 1;
    padding: 15px 30px;
    letter-spacing: 6px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__price {
    margin: 10px 0;
  }
}
@media (max-width: 1260px) {
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__title,
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__no {
    letter-spacing: 2px;
  }
}
@media (max-width: 1200px) {
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__title,
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__no {
    line-height: 1;
    font-size: 37px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text a {
    line-height: 1;
    margin-top: 15px;
    font-size: 10px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__price {
    line-height: 1;
    margin: 15px 0;
    font-size: 15px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .btn {
    line-height: 35px;
    height: 35px;
    letter-spacing: 2px;
    padding: 0 18px;
    font-size: 11px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item__footer h3 {
    font-size: 11px;
    line-height: 1;
  }
}
@media (max-width: 990px) {
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__title,
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__no {
    line-height: 1;
    font-size: 20px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text a {
    line-height: 1;
    margin-top: 5px;
    font-size: 10px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__price {
    line-height: 1;
    margin: 5px 0;
    font-size: 15px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .btn {
    line-height: 30px;
    height: 30px;
    letter-spacing: 2px;
    padding: 0 18px;
    font-size: 11px;
    margin-top: 5px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item__footer h3 {
    font-size: 11px;
    line-height: 1;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  #wrap-inspiration #inspiration_list .grid .grid-item.item-s .item__overlay .overlay__inner .inner__text .item__no,
  #wrap-inspiration #inspiration_list .grid .grid-item.item-s .item__overlay .overlay__inner .inner__text .item__title {
    font-size: 14px;
    letter-spacing: 4px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item.item-s .item__overlay .overlay__inner .inner__text .item__price {
    font-size: 13px;
    margin: 0;
  }
}
@media (max-width: 768px) {
  #wrap-inspiration #inspiration_list .grid .grid-item {
    width: 50%;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__title,
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__no {
    font-size: 30px;
    letter-spacing: 4px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text a {
    line-height: 1;
    margin-top: 15px;
    font-size: 12px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__price {
    line-height: 1;
    margin: 20px 0;
    font-size: 17px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .btn {
    line-height: 40px;
    height: 40px;
    letter-spacing: 2px;
    padding: 0 18px;
    font-size: 13px;
    margin-top: 0;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item.item-s .item__overlay .overlay__inner .inner__text .item__price {
    margin: 10px 0;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item__footer h3 {
    padding: 10px 0;
  }
}
@media (max-width: 710px) {
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__title,
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__no {
    font-size: 24px;
    letter-spacing: 4px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__price {
    margin: 15px 0;
  }
}
@media (max-width: 620px) {
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__title,
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__no {
    font-size: 20px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__price {
    margin: 10px 0;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .btn {
    line-height: 30px;
    height: auto;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text img {
    max-width: 150px;
  }
}
@media (max-width: 520px) {
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__title,
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__no {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  #wrap-inspiration #inspiration_list .grid .grid-item {
    width: 100%;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__title,
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__no {
    font-size: 30px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text a {
    line-height: 1;
    margin-top: 10px;
    font-size: 12px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .item__price {
    line-height: 1;
    margin: 10px 0;
    font-size: 17px;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item .item__overlay .overlay__inner .inner__text .btn {
    line-height: 40px;
    height: 40px;
    letter-spacing: 2px;
    padding: 0 18px;
    font-size: 13px;
    margin-top: 0;
  }
  #wrap-inspiration #inspiration_list .grid .grid-item .item__footer h3 {
    padding: 10px 0 5px;
  }
}
.inspiration-category {
  display: none;
}
#error {
  height: auto !important;
  min-height: 100%;
  background-color: #b5b9c3;
}
#error #wrap-error .wrap-full {
  width: 100%;
  height: 100%;
}
#error #wrap-error .wrap-full img.logo {
  margin: 0 auto;
  display: block;
}
#error #wrap-error .wrap-full .bg-container {
  margin: 0 auto;
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 100px;
}
#error #wrap-error .wrap-full .bg-container .bg {
  display: block;
  width: 100%;
  height: 0px;
  padding-bottom: 35%;
  background: url(../img/error/bg.png);
  background-position: 55% 0%;
  background-repeat: no-repeat;
  background-size: 80%;
}
#error #wrap-error .wrap-full section {
  width: 500px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 80px;
}
#error #wrap-error .wrap-full section p {
  font-size: 18px;
  color: #000;
  padding-bottom: 33px;
  font-family: montserratlight, arial, sans-serif;
}
#error #wrap-error .wrap-full section a {
  display: block;
  cursor: pointer;
  width: 100%;
  height: auto;
  padding: 24px 28px;
  line-height: 20px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #000;
  color: #000;
  background-color: rgba(0, 0, 0, 0);
}
#error #wrap-error .wrap-full section a:hover {
  color: #FFF;
  background-color: #000000;
}
#grid-top.grid-subpage {
  padding-top: 15px;
}
#grid-top.grid-subpage div {
  margin-top: 0;
}
#grid-top.grid-subpage div a,
#grid-top.grid-subpage div div.tile-nolink {
  width: 100%;
  height: 100%;
}
#grid-top.grid-subpage div a .box-inner,
#grid-top.grid-subpage div div.tile-nolink .box-inner {
  z-index: 2;
}
#grid-top.grid-subpage div a .box-inner strong,
#grid-top.grid-subpage div div.tile-nolink .box-inner strong {
  font-family: bebas, arial, sans-serif;
  color: #FFF;
  font-size: 36px;
}
#grid-top.grid-subpage div a .box-inner img,
#grid-top.grid-subpage div div.tile-nolink .box-inner img {
  margin-bottom: 25px;
  max-width: 80%;
}
#grid-top.grid-subpage div a .box-inner span,
#grid-top.grid-subpage div div.tile-nolink .box-inner span {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#grid-top.grid-subpage div a .box-inner .gray,
#grid-top.grid-subpage div div.tile-nolink .box-inner .gray {
  min-height: 130px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0;
  color: #999999;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#grid-top.grid-subpage div a .box-cover,
#grid-top.grid-subpage div div.tile-nolink .box-cover {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  position: relative;
}
#grid-top.grid-subpage div a .box-cover:after,
#grid-top.grid-subpage div div.tile-nolink .box-cover:after {
  content: '';
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  position: absolute;
}
#grid-top.grid-subpage div a:hover .box-cover,
#grid-top.grid-subpage div div.tile-nolink:hover .box-cover {
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  -webkit-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
  filter: alpha(opacity=40);
}
#grid-top.grid-subpage div a:hover .box-inner span,
#grid-top.grid-subpage div div.tile-nolink:hover .box-inner span {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#grid-top.grid-subpage div.tile--new a .box-inner {
  padding: 20px;
}
#grid-top.grid-subpage div.tile--new a .box-inner strong {
  color: #000;
}
#grid-top.grid-subpage div.tile--new a .box-inner span {
  color: #999;
}
#grid-top.grid-subpage div.tile--new a:hover .gray {
  color: #FFF;
}
#grid-top.grid-subpage div.tile--new a:hover strong {
  color: #FFF;
}
#grid-top.grid-subpage div.tile--new a:hover span {
  color: #FFF;
}
#grid-top.grid-subpage div.tile--new .box-inner {
  left: 10px;
  right: 10px;
  width: auto;
}
@media (max-width: 940px) {
  #grid-top.grid-subpage div.tile--new a .box-inner .gray {
    font-size: 10px;
    margin-bottom: 10px;
  }
  #grid-top.grid-subpage div.tile--new a .box-inner .gray br {
    display: none;
  }
  #grid-top.grid-subpage div.tile--new a .box-inner strong {
    letter-spacing: 2px;
  }
}
@media (max-width: 764px) {
  #grid-top.grid-subpage div.tile--new a .box-inner .gray {
    font-size: 14px;
  }
  #grid-top.grid-subpage div.tile--new a .box-inner .gray br {
    display: block;
  }
}
#grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio .box-cover .box-inner strong {
  font-size: 37px;
  line-height: 43px;
}
#grid-top.grid-subpage div.tile--styling .box-inner h3 {
  letter-spacing: .115em;
}
#grid-top.grid-subpage div.tile--styling .box-inner .button {
  display: inline-block;
  text-transform: uppercase;
  width: auto;
  height: auto;
  padding: 18px 40px;
  font-size: 19px;
  text-align: center;
  cursor: pointer;
  color: #FFF;
  border: 1px solid #FFF;
  background-color: rgba(255, 255, 255, 0);
  font-family: montserratregular, arial, sans-serif;
  letter-spacing: 0;
}
#grid-top.grid-subpage div.tile--styling .box-inner .button:hover {
  color: #FFF;
  background-color: #000000;
}
@media (max-width: 1302px) {
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio a .box-cover .box-inner span {
    font-size: 15px;
  }
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio .box-cover .box-inner strong {
    font-size: 31px;
    line-height: 35px;
  }
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio .box-cover .box-inner .button {
    padding: 15px 30px;
  }
}
@media (max-width: 1200px) {
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio .box-cover .box-inner strong {
    line-height: 1.2;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: .1em;
    white-space: normal;
  }
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio .box-cover .box-inner .button {
    padding: 15px 30px;
  }
}
@media (max-width: 920px) {
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio a .box-cover .box-inner span {
    font-size: 10px;
  }
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio .box-cover .box-inner strong {
    font-size: 20px;
    line-height: 20px;
  }
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio .box-cover .box-inner .button {
    padding: 10px 20px;
  }
}
@media (max-width: 768px) {
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio .box-cover .box-inner .button {
    padding: 7px 12px;
  }
}
@media (max-width: 520px) {
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio a .box-cover .box-inner span {
    font-size: 10px;
    line-height: 10px;
  }
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio .box-cover .box-inner strong {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 480px) {
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio a .box-cover .box-inner span {
    font-size: 10px;
    line-height: 10px;
  }
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio .box-cover .box-inner strong {
    font-size: 22px;
    line-height: 23px;
  }
  #grid-top.grid-subpage div.tile--styling .ratio-wrap .ratio .box-cover .box-inner .button {
    padding: 14px 12px;
    font-size: 12px;
    line-height: 14px;
  }
}
#grid-top.grid-subpage div.tile--goforsummer div a .box-cover:after {
  border: none;
}
#grid-top.grid-subpage div.tile--goforsummer > div a strong {
  top: auto;
}
#grid-top.grid-subpage div.tile--goforsummer.tile .ratio-wrap .ratio a .box-cover .box-inner {
  position: relative;
  top: 0;
  display: inline-block;
  height: 100%;
  transform: translateY(0);
}
#grid-top.grid-subpage div.tile--goforsummer.tile .ratio-wrap .ratio a .box-cover .box-inner strong {
  position: absolute;
}
#grid-top.grid-subpage div.tile--goforsummer.tile .ratio-wrap .ratio a .box-cover .box-inner strong:first-of-type {
  top: 23px;
  font-size: 38px;
}
@media (min-width: 1200px) {
  #grid-top.grid-subpage div.tile--goforsummer.tile .ratio-wrap .ratio a .box-cover .box-inner strong:first-of-type {
    font-size: 76px;
    top: 43px;
  }
}
#grid-top.grid-subpage div.tile--goforsummer.tile .ratio-wrap .ratio a .box-cover .box-inner strong:last-of-type {
  bottom: 23px;
  font-size: 30px;
  line-height: 32px;
  padding: 0 10px;
}
@media (min-width: 1200px) {
  #grid-top.grid-subpage div.tile--goforsummer.tile .ratio-wrap .ratio a .box-cover .box-inner strong:last-of-type {
    font-size: 38px;
    line-height: 43px;
  }
}
#grid-top.grid-subpage div.tile--sprandi a .box-inner {
  width: auto;
  left: 0;
  right: auto;
}
#grid-top.grid-subpage div.tile--sprandi a .box-inner span {
  width: 240px;
  color: #000;
}
#grid-top.grid-subpage div.tile--sprandi-man .box-inner {
  top: 70%;
}
#grid-top.grid-subpage div.tile--sprandi-kid .box-inner {
  padding-left: 10%;
}
#grid-top.grid-subpage .tile-half {
  width: 100%;
}
#grid-top.grid-subpage .tile-half .ratio-wrap {
  padding-bottom: 65.6%;
}
@media only screen and (min-width: 765px) {
  #grid-top.grid-subpage .tile-half {
    width: 50%;
  }
}
#grid-top.grid-subpage .tile-1 {
  width: 100%;
}
#grid-top.grid-subpage .tile-2 {
  width: 100%;
}
#grid-top.grid-subpage .tile-2 .ratio-wrap {
  padding-bottom: calc(50% - 15px);
}
#grid-top.grid-subpage .tile-2 a {
  -webkit-box-shadow: inset 0 0 0 1px #ccc;
  -moz-box-shadow: inset 0 0 0 1px #ccc;
  box-shadow: inset 0 0 0 1px #ccc;
}
#grid-top.grid-subpage .tile-2 a .box-inner {
  text-align: left;
  padding-left: 10%;
}
#grid-top.grid-subpage .tile-2 a .box-inner span {
  text-align: center;
  display: inline-block;
  width: 180px;
  color: #000;
}
#grid-top.grid-subpage .tile-2 a .box-inner img {
  margin-bottom: 25px;
  display: block;
}
@media only screen and (min-width: 765px) {
  #grid-top.grid-subpage .tile-2 {
    width: 66.666%;
  }
}
#grid-top.grid-subpage .tile-3 {
  width: 100%;
}
@media only screen and (min-width: 765px) {
  #grid-top.grid-subpage .tile-3 {
    width: 33.333%;
  }
}
#grid-top.grid-subpage .tile--hello {
  border: 1px solid #ccc;
}
#grid-top.grid-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong.tile--small {
  font-size: 37px ;
  line-height: 42px ;
}
@media only screen and (max-width: 1200px) {
  #grid-top.grid-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong.tile--small {
    font-size: 24px ;
    line-height: 27px ;
  }
}
@media only screen and (max-width: 792px) {
  #grid-top.grid-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong.tile--small {
    line-height: 21px ;
  }
}
@media only screen and (max-width: 480px) {
  #grid-top.grid-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong.tile--small {
    line-height: 27px ;
  }
}
@media only screen and (max-width: 940px) {
  #grid-top.grid-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong.tile--v-small {
    font-size: 18px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 768px) {
  #grid-top.grid-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong.tile--v-small {
    font-size: 24px;
    line-height: 27px;
  }
}
@media only screen and (max-width: 580px) {
  #grid-top.grid-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong.tile--v-small {
    font-size: 18px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 480px) {
  #grid-top.grid-subpage .tile .ratio-wrap .ratio a .box-cover .box-inner strong.tile--v-small {
    font-size: 24px;
    line-height: 27px;
  }
}
/* Tips BEGIN */
.tips .jsImgMobile {
  display: none;
}
.tips.grid-main-subpage {
  padding: 10px;
}
.tips__header {
  height: 475px;
  background: url("../img/tips/top.jpg") 50% 50% no-repeat;
  position: relative;
}
@media (max-width: 990px) {
  .tips__header h2 {
    font-size: 43px!important;
    line-height: 43px!important;
  }
  .tips__header p {
    font-size: 16px!important;
    line-height: 20px!important;
  }
}
@media (max-width: 480px) {
  .tips__header h2 {
    font-size: 32px!important;
    line-height: 36px!important;
  }
  .tips__header p {
    font-size: 14px!important;
    line-height: 18px!important;
  }
}
.tips__header-inner {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
.tips__header-inner h1,
.tips__header-inner h2,
.tips__header-inner p {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  color: #FFF;
}
.tips__header-inner h1,
.tips__header-inner h2 {
  font-size: 80px;
  letter-spacing: 6px;
  font-family: bebas, arial, sans-serif;
}
.tips__header-inner p {
  font-family: montserratultra_light, arial, sans-serif;
  margin-top: 35px;
  font-size: 18px;
  line-height: 24px;
}
.tips--skorzane-buty .list-rules {
  float: left;
  padding: 12px 15px 10px 0;
  font-size: 47px;
}
@media (max-width: 1280px) {
  .tips--skorzane-buty .list-rules {
    padding-top: 10px;
    font-size: 42px;
  }
}
@media (max-width: 1024px) {
  .tips--skorzane-buty .list-rules {
    padding-top: 8px;
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .tips--skorzane-buty .list-rules {
    padding-top: 10px;
    font-size: 42px;
  }
}
.tips--skorzane-buty .tips__header-inner h1 {
  max-width: 1050px;
}
.tips--jakie-buty-na-wesele .tips__header {
  background-image: url('../img/tips/jakie-buty-na-wesele.jpg');
}
@media (max-width: 480px) {
  .tips--jakie-buty-na-wesele .tips__header {
    background-image: url('../img/tips/jakie-buty-na-wesele-mobile.jpg');
  }
}
.tips--pierwsze-buty-dziecka .tips__header {
  background-image: url('../img/tips/pierwsze_buty_dla_dziecka_header.jpg');
}
.tips--najmodniejsze-w-sezonie .tips__header {
  background-image: url('../img/tips/najmodniejsze-w-sezonie_header.jpg');
}
.tips--eleganckie-szpilki .tips__header {
  background-image: url('../img/tips/eleganckie_szpilki_header.jpg');
}
.tips--must-have .tips__header {
  background-image: url('../img/tips/must-have_header.jpg');
}
.tips--buty-skorzane-czy-ze-skory-ekologicznej .tips__header {
  background-image: url('../img/tips/buty-skorzane-czy-ze-skory-ekologicznej-header.jpg');
}
.tips--torba-meska-na-ramie .tips__header {
  background-image: url('../img/tips/torba-meska-na-ramie-header.jpg');
}
.tips--torba-meska-na-ramie h1 {
  max-width: 100%;
}
.tips--modne-plecaki .tips__header {
  background-image: url('../img/tips/modne-plecaki-header.jpg');
}
.tips--modne-plecaki h1 {
  max-width: 100%;
}
.tips--polbuty-damskie .tips__header {
  background-image: url('../img/tips/polbuty-damskie-header.jpg');
}
.tips--polbuty-damskie h1 {
  max-width: 100%;
}
.tips--jakie-wybrac-najmodniejsze-buty .tips__header {
  background-image: url('../img/tips/jakie-najmodniejsze-buty-header.jpg');
}
.tips--srebrne-buty .tips__header {
  background-image: url('../img/tips/srebrne-buty-header.jpg');
}
.tips--jakie-buty-do-slubu .tips__header {
  background-image: url('../img/tips/jakie-buty-do-slubu.jpg');
}
.tips--jak-dobrac-buty .tips__header {
  background-image: url('../img/tips/jak-dobrac-buty.jpg');
}
.tips--torebka-z-fredzlami .tips__header {
  background-image: url('../img/tips/torebki-z-fredzlami-header.jpg');
}
.tips--buty-do-garnituru .tips__header {
  background-image: url('../img/tips/buty-do-garnituru.jpg');
}
.tips--buty-na-plaze .tips__header {
  background-image: url('../img/tips/buty-na-plaze-top.jpg');
}
.tips--buty-na-rower .tips__header {
  background-image: url('../img/tips/buty-na-rower-top.jpg');
}
.tips--buty-do-bialej-sukienki .tips__header {
  background-image: url('../img/tips/buty-do-bialej-sukienki-top.jpg');
}
.tips--trampki-dla-dzieci .tips__header {
  background-image: url('../img/tips/trampki-dla-dzieci-top.jpg');
}
.tips--jak-prac-buty .tips__header {
  background-image: url('../img/tips/jak-prac-buty-top.jpg');
}
.tips--modne-czarne-szpilki .tips__header {
  background-image: url('../img/tips/modne-czarne-szpilki.jpg');
}
.tips--czerwone-buty .tips__header {
  background-image: url('../img/tips/czerwone-buty-top.jpg');
}
.tips--modne-torebki .tips__header {
  background-image: url('../img/tips/modne-torebki-top.jpg');
}
.tips--jak-chodzic-na-obcasach .tips__header {
  background-image: url('../img/tips/jak-chodzic-na-obcasach-top.jpg');
}
.tips--damskie-buty-na-fitness .tips__header {
  background-image: url('../img/tips/damskie-buty-na-fitness_top.jpg');
}
.tips--jakie-buty-do-czerwonej-sukienki .tips__header {
  background-image: url('../img/tips/jakie-buty-do-czerwonej-sukienki-top.jpg');
}
.tips--jakie-buty-do-czerwonej-sukienki .tips__header .tips__header-inner h1 {
  max-width: 1150px;
}
.tips--damskie-buty-na-fitness .tips__header {
  background-image: url('../img/tips/damskie-buty-na-fitness_top.jpg');
}
.tips--jakie-buty-do-szkoly .tips__header {
  background-image: url('../img/tips/jakie-buty-do-szkoly-top.jpg');
}
.tips--jakie-buty-do-dzwonow .tips__header {
  background-image: url('../img/tips/dzwony_header.jpg');
}
.tips--buty-do-biegania .tips__header {
  background-image: url('../img/tips/buty-do-biegania-top.jpg');
}
.tips--buty-w-szafie .tips__header {
  background-image: url('../img/tips/przechowywanie-butow-w-szafie.jpg');
}
.tips--buty-do-dlugiej-sukienki .tips__header {
  background-image: url('../img/tips/dluga_sukienka_header.jpg');
}
.tips--torba-do-pracy .tips__header {
  background-image: url('../img/tips/Idealna-torebka-do-pracy_header.jpg');
}
.tips--czyszczenie-butow-zamszowych .tips__header {
  background-image: url('../img/tips/czyszczenie-butow-zamszowych-top.jpg');
}
.tips--czyszczenie-butow-zamszowych .tips__header .tips__header--inner h1 {
  max-width: none;
}
.tips--buty-do-plaszcza-damskiego-meskiego .tips__header {
  background-image: url('../img/tips/buty_do_plaszcza_top.jpg');
}
.tips--buty-do-plaszcza-damskiego-meskiego .tips__header .tips__header--inner h1 {
  max-width: none;
}
.tips--buty-do-jeansow-meskich .tips__header {
  background-image: url('../img/tips/buty_do_jeansow_top.jpg');
}
.tips--buty-do-jeansow-meskich .tips__header .tips__header--inner h1 {
  max-width: none;
}
.tips--jak-czyscic-buty-z-nubuku .tips__header {
  background-image: url('../img/tips/buty_z_nubuku_top.jpg');
}
.tips--jak-czyscic-buty-z-nubuku .tips__header .tips__header--inner h1 {
  max-width: none;
}
.tips--sznurowane_botki .tips__header {
  background-image: url('../img/tips/sznurowane_botki_top.jpg');
}
.tips--sznurowane_botki .tips__header .tips__header--inner h1 {
  max-width: none;
}
.tips--buty-na-plaskim-obcasie .tips__header {
  background-image: url('../img/tips/buty_na_plaskim_top.jpg');
}
.tips--buty-na-plaskim-obcasie .tips__header .tips__header--inner h1 {
  max-width: none;
}
.tips--torebka-do-butow .tips__header {
  background-image: url('../img/tips/torebka_do_butow_top.jpg');
}
.tips--torebka-do-butow .tips__header .tips__header--inner h1 {
  max-width: none;
}
.tips--wiazanie_sznurowek .tips__header {
  background-image: url('../img/tips/wiazanie_sznurowek_top.jpg');
}
.tips--wiazanie_sznurowek .tips__header .tips__header--inner h1 {
  max-width: none;
}
.tips--za-duze-buty .tips__header {
  background-image: url('../img/tips/za_duze_buty_top.jpg');
}
.tips--za-duze-buty .tips__header .tips__header--inner h1 {
  max-width: none;
}
.tips--buty-na-studniowke .tips__header {
  background-image: url('../img/tips/buty_na_studniowke_top.jpg');
}
.tips--buty-na-studniowke .tips__header .tips__header--inner h1 {
  max-width: none;
}
.tips--buty-na-sylwestra .tips__header {
  background-image: url('../img/tips/buty_na_sylwestra_top.jpg');
}
.tips--buty-na-sylwestra .tips__header .tips__header--inner h1 {
  max-width: none;
}
.tips--sol-na-butach .tips__header {
  background-image: url('../img/tips/sol_na_butach_top.jpg');
}
.tips--sol-na-butach .tips__header .tips__header--inner h1 {
  max-width: none;
}
.tips--kolorowe-szpilki .tips__header {
  background-image: url('../img/tips/kolorowe-szpilki-top.jpg');
}
.tips--kolorowe-szpilki .tips__header .tips__header--inner h1 {
  max-width: none;
}
.tips--kolorowe-szpilki .tips__col:not(.tips__col--img) {
  vertical-align: middle;
}
.tips--single .tips__content {
  padding: 20px;
}
.tips--single .tips__content .tips__row:not(.tips__row--slider) {
  display: table;
  width: 100%;
  zoom: 1;
}
.tips--single .tips__content .tips__row:not(.tips__row--slider):before {
  content: '';
  display: block;
}
.tips--single .tips__content .tips__row:not(.tips__row--slider):after {
  content: '';
  display: table;
  clear: both;
}
@media (min-width: 769px) {
  .tips--single .tips__content .tips__row .owl-carousel {
    padding: 0 10%;
  }
}
.tips--single .tips__content .tips__row--slider .owl-carousel {
  padding: 0 10%;
}
.tips--single .tips__content .tips__col {
  width: 33.333333%;
  display: table-cell;
  vertical-align: top;
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 80px;
  margin-top: 20px;
}
.tips--single .tips__content .tips__col.jsImgMobile {
  display: none;
}
.tips--single .tips__content .tips__col.tips__col--2 {
  width: 66.666666%;
}
.tips--single .tips__content .tips__col--img {
  padding: 0;
}
.tips--single .tips__content .tips__col--img > img {
  display: block;
  width: 100%;
}
.tips--single .tips__content .tips__col h3 {
  font-size: 18px;
  line-height: 26px;
  font-family: montserratregular, arial, sans-serif;
  text-transform: none;
  max-width: 465px;
  margin-bottom: 30px;
  margin-top: 60px;
}
.tips--single .tips__content .tips__col h3:first-child {
  margin-top: 0;
}
.tips--single .tips__content .tips__col p {
  font-family: montserratlight, arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  max-width: 465px;
  margin-bottom: 30px;
}
.tips--single .tips__content .tips__col ul {
  list-style: disc;
  padding-left: 18px;
  font-family: montserratlight, arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 60px;
}
.tips--single .tips__content .tips__col ul li {
  margin-bottom: 5px;
}
.tips--single .tips__content .tips__col ol {
  font-family: montserratlight, arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 60px;
  list-style: decimal;
  padding-left: 15px;
}
.tips--single .tips__content .tips__col ol li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}
.tips--single .tips__content .tips__col strong {
  font-family: montserratregular, arial, sans-serif;
}
.tips--single .tips__content .tips__col.w2 {
  width: 66.66666%;
}
.tips--single .tips__content .tips__col-foot {
  margin-top: 70px;
}
.tips--single .tips__content .tips__col-foot p {
  text-align: center;
}
.tips--single .tips__content .tips__col-foot p a {
  color: #242121;
  font-family: montserratultra_light, arial, sans-serif;
}
.tips--single .tips__content .tips__col-foot p a:hover {
  color: #f8541f;
}
.tips--single .tips__content ul.tips__socials {
  margin-bottom: 10px;
  list-style: none;
  text-align: center;
  padding: 0;
}
.tips--single .tips__content ul.tips__socials li {
  display: inline-block;
  margin: 0 10px;
}
.tips--single .tips__content ul.tips__btns {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}
.tips--single .tips__content ul.tips__btns li {
  display: inline-block;
  margin: 0 1%;
  width: 46%;
}
.tips--single .tips__content ul.tips__btns li a {
  font-family: bebas, arial, sans-serif;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 21px;
  height: 65px;
  line-height: 65px;
  border: 1px solid #000;
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.tips--single .tips__content ul.tips__btns li a:hover {
  background: #f8541f;
  border-color: #f8541f;
  color: #FFF;
}
@media (max-width: 1680px) {
  .tips--single .tips__row .tips__col {
    padding: 60px 40px 0 40px;
  }
  .tips--single .tips__row .tips__col p {
    margin-bottom: 20px;
    line-height: 20px;
  }
  .tips--single .tips__row .tips__col h3 {
    line-height: 22px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .tips--single .tips__row .tips__col ul,
  .tips--single .tips__row .tips__col ol {
    margin-bottom: 30px;
    line-height: 20px;
  }
}
@media (max-width: 1280px) {
  .tips--single .tips__row .tips__col {
    padding: 40px 20px 0 20px;
  }
  .tips--single .tips__row .tips__col p {
    font-size: 14px;
    line-height: 18px;
  }
  .tips--single .tips__row .tips__col h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .tips--single .tips__row .tips__col ul,
  .tips--single .tips__row .tips__col ol {
    font-size: 14px;
    line-height: 18px;
  }
  .tips--single .tips__row .tips__col .tips__btns li a {
    font-size: 18px;
    letter-spacing: 4px;
  }
}
@media (max-width: 1024px) {
  .tips--single .tips__row .tips__col h3 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 30px;
  }
  .tips--single .tips__row .tips__col p {
    font-size: 11px;
    line-height: 17px;
  }
  .tips--single .tips__row .tips__col ul li,
  .tips--single .tips__row .tips__col ol li {
    font-size: 11px;
    line-height: 17px;
  }
  .tips--single .tips__row .tips__col .tips__btns li a {
    font-size: 16px;
    letter-spacing: 3px;
  }
}
@media (max-width: 768px) {
  .tips--single .tips__header h1 {
    font-size: 43px;
    line-height: 43px;
  }
  .tips--single .tips__content {
    margin-top: 20px;
  }
  .tips--single .tips__row {
    display: block;
  }
  .tips--single .tips__row .tips__col {
    padding: 0 20px 0 20px;
    width: 100%;
    margin-top: 0;
    display: block;
  }
  .tips--single .tips__row .tips__col.tips__col--2 {
    width: 100%;
  }
  .tips--single .tips__row .tips__col h3,
  .tips--single .tips__row .tips__col p,
  .tips--single .tips__row .tips__col ul,
  .tips--single .tips__row .tips__col ol {
    max-width: none;
  }
  .tips--single .tips__row .tips__col > img {
    max-width: 320px;
    margin: 0 auto;
  }
  .tips--single .tips__row .tips__col.tips__col--img {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .tips--single .tips__row .tips__col.jsImgDesktop {
    display: none;
  }
  .tips--single .tips__row .tips__col.jsImgMobile {
    display: block;
  }
}
@media (max-width: 580px) {
  .tips--single .tips__col-foot ul.tips__btns {
    margin-top: 50px;
  }
  .tips--single .tips__col-foot ul.tips__btns li {
    width: 100%;
    display: block;
    max-width: 240px;
    margin: 0 auto 20px auto;
  }
}
@media (max-width: 480px) {
  .tips--single .tips__header {
    height: 470px;
  }
  .tips--single .tips__header h1 {
    font-size: 36px;
    line-height: 38px;
    letter-spacing: 3px;
  }
  .tips--single .tips__row .tips__col h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .tips--single .tips__row .tips__col p {
    font-size: 14px;
    line-height: 24px;
  }
  .tips--single .tips__row .tips__col ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .tips--single #product-related {
    margin-top: 20px!important;
  }
  .tips--single #product-related .owl-carousel {
    width: 100%;
    height: 340px;
  }
  .tips--single #product-related .list-nav {
    top: auto;
    bottom: -40px;
  }
  .tips--single #product-related .list-nav #related-scroll > a {
    position: static!important;
  }
  .tips--single #product-related .list-nav #related-scroll > a span {
    position: static!important;
    margin: 10px auto 0 auto!important;
  }
}
.tips .tips__slider-header {
  text-align: center;
  margin: 60px 0 60px 0;
}
.tips .tips__slider-header h2 {
  font-size: 30px;
  margin: 0;
  letter-spacing: 2px;
  position: relative;
  padding: 0 40px;
  display: inline-block;
  font-family: bebas, arial, sans-serif;
}
.tips .tips__slider-header h2:before,
.tips .tips__slider-header h2:after {
  content: '';
  width: 90px;
  height: 1px;
  background-color: #e2e2e2;
  position: absolute;
  top: 50%;
}
.tips .tips__slider-header h2:before {
  left: 0;
  -webkit-transform: translateX(-100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.tips .tips__slider-header h2:after {
  right: 0;
  -webkit-transform: translateX(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.tips #product-related {
  margin: 60px 0 0 0;
  position: relative;
}
.tips #product-related #related-header {
  text-align: center;
  margin: 60px 0 0 0;
}
.tips #product-related #related-header h2 {
  font-size: 30px;
  margin: 0;
  letter-spacing: 2px;
  position: relative;
  padding: 0 40px;
  display: inline-block;
  font-family: bebas, arial, sans-serif;
}
.tips #product-related #related-header h2:before,
.tips #product-related #related-header h2:after {
  content: '';
  width: 90px;
  height: 1px;
  background-color: #e2e2e2;
  position: absolute;
  top: 50%;
}
.tips #product-related #related-header h2:before {
  left: 0;
  -webkit-transform: translateX(-100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.tips #product-related #related-header h2:after {
  right: 0;
  -webkit-transform: translateX(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.tips #product-related #related-bar-wrap {
  width: 100%;
  background-color: #000;
  margin-bottom: 10px;
}
.tips #product-related #related-bar-wrap #related-bar {
  max-width: 1600px;
  margin: 0 auto;
  height: 48px;
  text-align: center;
}
.tips #product-related #related-bar-wrap #related-bar > span {
  display: block;
  padding: 12px 0 0 0;
  font-size: 28px;
  color: #FFF;
  letter-spacing: 2px;
  font-family: bebas, arial, sans-serif;
}
.tips #product-related .wrap-narrow-related {
  max-width: 1400px;
  margin: 0 auto;
  zoom: 1;
}
.tips #product-related .wrap-narrow-related:before {
  content: '';
  display: block;
}
.tips #product-related .wrap-narrow-related:after {
  content: '';
  display: table;
  clear: both;
}
.tips #product-related a {
  position: relative;
  display: block;
  width: 100%;
  border: 1px transparent solid;
}
.tips #product-related a .thumb {
  width: 100%;
}
.tips #product-related a .thumb.ratio-wrap {
  position: relative;
  padding-bottom: 80%;
  height: 0;
}
.tips #product-related a .thumb.ratio-wrap .ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tips #product-related a .thumb.ratio-wrap .ratio .in-ratio-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -30%;
  padding-bottom: 60%;
  width: 60%;
  height: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.tips #product-related a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}
.tips #product-related a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio.preload-background-image {
  background-image: url(../img/loader.svg);
  background-position: center;
  background-size: 30px 30px;
  background-repeat: no-repeat;
}
.tips #product-related a .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio.preload-background-image-loaded {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}
.tips #product-related a .data {
  text-align: center;
  padding: 30px 0;
}
.tips #product-related a .data .name {
  text-transform: uppercase;
  color: #000;
  font-size: 18px;
  line-height: 18px;
  padding: 0 10px 7px 15px;
  font-family: bebas, arial, sans-serif;
}
.tips #product-related a .data .price > span {
  display: inline-block;
  padding: 0;
  margin: 0 2px;
  color: #808080;
}
.tips #product-related a .data .price > span > span,
.tips #product-related a .data .price > span > sup {
  font-size: 14px;
  font-family: montserratlight, arial, sans-serif;
}
.tips #product-related a .data .price > span > span {
  display: inline-block;
}
.tips #product-related a .data .price > span > span:nth-child(3) {
  margin-left: 3px;
}
.tips #product-related a .data .price > span > sup {
  display: inline-block;
  top: 0;
}
.tips #product-related a .data .price > span.new > span,
.tips #product-related a .data .price > span.new sup {
  color: #f8541f;
}
.tips #product-related a .data .price > span.old {
  position: relative;
}
.tips #product-related a .data .price > span.old::after {
  content: '';
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #808080;
}
.tips #product-related a:hover {
  border-color: #d9d9d9;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.tips #product-related a:hover .thumb.ratio-wrap .ratio .in-ratio-wrap {
  bottom: 5%;
}
.tips #product-related .list-nav #related-scroll {
  padding: 20px 0 0 0;
  font-size: 0;
}
.tips #product-related .list-nav #related-scroll > a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px #cccccc solid;
  cursor: pointer;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.tips #product-related .list-nav #related-scroll > a > .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  display: block;
  width: 20px;
  height: 20px;
  text-indent: -99999px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-image: url(../img/next-prev.png);
}
.tips #product-related .list-nav #related-scroll > a.arrow-left,
.tips #product-related .list-nav #related-scroll > a.arrow-right {
  position: absolute;
  top: 50%;
  margin-top: 0;
}
.tips #product-related .list-nav #related-scroll > a.arrow-left {
  left: 28px;
}
.tips #product-related .list-nav #related-scroll > a.arrow-left .icon {
  background-position: 0 -20px;
}
.tips #product-related .list-nav #related-scroll > a.arrow-right {
  right: 28px;
}
.tips #product-related .list-nav #related-scroll > a.arrow-right .icon {
  background-position: 0 0;
}
.tips #product-related .list-nav #related-scroll > a:hover {
  background-color: #000;
  border-color: #000;
}
.tips #product-related .list-nav #related-scroll > a:hover.arrow-left .icon {
  background-position: -20px -20px;
}
.tips #product-related .list-nav #related-scroll > a:hover.arrow-right .icon {
  background-position: -20px 0;
}
.tips .product-inspiration-container {
  margin-bottom: 0;
  zoom: 1;
}
.tips .product-inspiration-container:before {
  content: '';
  display: block;
}
.tips .product-inspiration-container:after {
  content: '';
  display: table;
  clear: both;
}
.tips .product-inspiration-container .product-inspiration-header {
  text-align: center;
  margin: 100px 0 60px 0;
}
.tips .product-inspiration-container .product-inspiration-header h2 {
  font-size: 30px;
  margin: 0;
  letter-spacing: 2px;
  position: relative;
  padding: 0 40px;
  display: inline-block;
  font-family: bebas, arial, sans-serif;
}
.tips .product-inspiration-container .product-inspiration-header h2:before,
.tips .product-inspiration-container .product-inspiration-header h2:after {
  content: '';
  width: 90px;
  height: 1px;
  background-color: #e2e2e2;
  position: absolute;
  top: 50%;
}
.tips .product-inspiration-container .product-inspiration-header h2:before {
  left: 0;
  -webkit-transform: translateX(-100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.tips .product-inspiration-container .product-inspiration-header h2:after {
  right: 0;
  -webkit-transform: translateX(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.tips .product-inspiration-container .product-inspiration-content {
  padding: 0;
  margin: 0 -10px;
}
.tips .product-inspiration-container .product-inspiration-content__left,
.tips .product-inspiration-container .product-inspiration-content__right {
  float: left;
  width: 50%;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item,
.tips .product-inspiration-container .product-inspiration-content__right > .item {
  float: left;
  width: 33.333%;
  padding: 10px;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item.item--product .ratio-wrap .ratio .tile .box-inner strong,
.tips .product-inspiration-container .product-inspiration-content__right > .item.item--product .ratio-wrap .ratio .tile .box-inner strong {
  font-size: 35px;
  line-height: 40px;
  letter-spacing: 5px;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item.item--product .ratio-wrap .ratio .tile .box-inner img,
.tips .product-inspiration-container .product-inspiration-content__right > .item.item--product .ratio-wrap .ratio .tile .box-inner img {
  max-width: 100%;
  padding: 0 40px;
}
@media (max-width: 1800px) {
  .tips .product-inspiration-container .product-inspiration-content__left > .item.item--product .ratio-wrap .ratio .tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item.item--product .ratio-wrap .ratio .tile .box-inner img {
    padding: 0;
  }
}
.tips .product-inspiration-container .product-inspiration-content__left > .item.item--w2,
.tips .product-inspiration-container .product-inspiration-content__right > .item.item--w2 {
  width: 66.66666%;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item.item--h2 > div.ratio-wrap,
.tips .product-inspiration-container .product-inspiration-content__right > .item.item--h2 > div.ratio-wrap {
  padding-bottom: calc(200% + 21px);
}
.tips .product-inspiration-container .product-inspiration-content__left > .item.item--h-half > div.ratio-wrap,
.tips .product-inspiration-container .product-inspiration-content__right > .item.item--h-half > div.ratio-wrap {
  padding-bottom: calc(50% - 10px);
}
.tips .product-inspiration-container .product-inspiration-content__left > .item > div.ratio-wrap,
.tips .product-inspiration-container .product-inspiration-content__right > .item > div.ratio-wrap {
  position: relative;
  padding-bottom: 100%;
  height: 0;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item > div.ratio-wrap > div.ratio,
.tips .product-inspiration-container .product-inspiration-content__right > .item > div.ratio-wrap > div.ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ccc;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item a,
.tips .product-inspiration-container .product-inspiration-content__right > .item a,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
.tips .product-inspiration-container .product-inspiration-content__left > .item a .box-cover,
.tips .product-inspiration-container .product-inspiration-content__right > .item a .box-cover,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile .box-cover,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile .box-cover {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  margin-top: 0;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item a .box-cover:after,
.tips .product-inspiration-container .product-inspiration-content__right > .item a .box-cover:after,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile .box-cover:after,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile .box-cover:after {
  content: '';
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  border: 1px solid #FFF;
  position: absolute;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item a .box-inner,
.tips .product-inspiration-container .product-inspiration-content__right > .item a .box-inner,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile .box-inner,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile .box-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 10;
  margin-top: 0;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item a strong,
.tips .product-inspiration-container .product-inspiration-content__right > .item a strong,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile strong,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile strong,
.tips .product-inspiration-container .product-inspiration-content__left > .item a span,
.tips .product-inspiration-container .product-inspiration-content__right > .item a span,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile span,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile span {
  display: block;
  text-align: center;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item a .sprandi-logo,
.tips .product-inspiration-container .product-inspiration-content__right > .item a .sprandi-logo,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile .sprandi-logo,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile .sprandi-logo {
  width: 60%;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item a strong,
.tips .product-inspiration-container .product-inspiration-content__right > .item a strong,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile strong,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile strong {
  font-size: 50px;
  line-height: 54px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 10px;
  margin-bottom: 0;
  padding: 10px 15px 0 15px;
  font-family: bebas, arial, sans-serif;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item a a,
.tips .product-inspiration-container .product-inspiration-content__right > .item a a,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile a,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile a {
  padding: 20px 30px;
  font-family: bebas, arial, sans-serif;
  height: auto;
  font-size: 16px;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #FFF;
  display: inline-block;
  width: auto;
  margin-top: 40px;
  color: #FFF;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item a a:hover,
.tips .product-inspiration-container .product-inspiration-content__right > .item a a:hover,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile a:hover,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile a:hover,
.tips .product-inspiration-container .product-inspiration-content__left > .item a a.active,
.tips .product-inspiration-container .product-inspiration-content__right > .item a a.active,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile a.active,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile a.active {
  background-color: #ffffff;
  color: #000;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item a span,
.tips .product-inspiration-container .product-inspiration-content__right > .item a span,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile span,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile span {
  font-size: 21px;
  color: #FFF;
  letter-spacing: 3px;
  margin-top: 20px;
  text-transform: uppercase;
  font-family: montserratlight, arial, sans-serif;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item a:hover .box-cover,
.tips .product-inspiration-container .product-inspiration-content__right > .item a:hover .box-cover,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile:hover .box-cover,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile:hover .box-cover,
.tips .product-inspiration-container .product-inspiration-content__left > .item a:active .box-cover,
.tips .product-inspiration-container .product-inspiration-content__right > .item a:active .box-cover,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile:active .box-cover,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile:active .box-cover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  background: rgba(0, 0, 0, 0.4);
}
.tips .product-inspiration-container .product-inspiration-content__left > .item a.tile-s .box-inner span,
.tips .product-inspiration-container .product-inspiration-content__right > .item a.tile-s .box-inner span,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile.tile-s .box-inner span,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile.tile-s .box-inner span {
  margin-top: 10px;
}
.tips .product-inspiration-container .product-inspiration-content__left > .item a.tile-s .box-inner a,
.tips .product-inspiration-container .product-inspiration-content__right > .item a.tile-s .box-inner a,
.tips .product-inspiration-container .product-inspiration-content__left > .item div.tile.tile-s .box-inner a,
.tips .product-inspiration-container .product-inspiration-content__right > .item div.tile.tile-s .box-inner a {
  margin-top: 10px;
}
@media (max-width: 1800px) {
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 6px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner img {
    width: 80%;
    padding: 0;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 3px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    margin-top: 40px;
  }
}
@media (max-width: 1600px) {
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: 4px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner span {
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 15px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner a {
    padding: 15px 10px;
    letter-spacing: 2px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 2px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span {
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 15px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    padding: 15px 10px;
    letter-spacing: 2px;
  }
}
@media (max-width: 1480px) {
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 3px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner span {
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 15px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner img {
    max-width: 200px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner a {
    padding: 10px 5px;
    font-size: 14px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span {
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 10px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img {
    max-width: 200px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    padding: 10px 5px;
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 1200px) {
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 2px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner span {
    font-size: 14px;
    letter-spacing: 0;
    margin-top: 10px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner img {
    width: 60%;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner a {
    padding: 5px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span {
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 10px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img {
    max-width: 170px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    padding: 5px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}
@media (max-width: 990px) {
  .tips .product-inspiration-container .product-inspiration-content__left,
  .tips .product-inspiration-container .product-inspiration-content__right {
    width: 100%;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: 4px;
    padding-top: 0;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner span {
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 15px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner img {
    max-width: 170px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner a {
    padding: 15px 10px;
    letter-spacing: 2px;
    font-size: 16px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 2px;
    padding-top: 0;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span {
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 15px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img {
    max-width: 170px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    padding: 15px 10px;
    letter-spacing: 2px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .tips .product-inspiration-container .product-inspiration-content__left > .item,
  .tips .product-inspiration-container .product-inspiration-content__right > .item,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product {
    width: 50%;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item.item--w2,
  .tips .product-inspiration-container .product-inspiration-content__right > .item.item--w2,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product.item--w2,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product.item--w2 {
    width: 100%;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item.item--h2,
  .tips .product-inspiration-container .product-inspiration-content__right > .item.item--h2,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product.item--h2,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product.item--h2 {
    width: 100%;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item.item--h-half,
  .tips .product-inspiration-container .product-inspiration-content__right > .item.item--h-half,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product.item--h-half,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product.item--h-half {
    width: 50%;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item.item--h-half div.ratio-wrap,
  .tips .product-inspiration-container .product-inspiration-content__right > .item.item--h-half div.ratio-wrap,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product.item--h-half div.ratio-wrap,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product.item--h-half div.ratio-wrap {
    padding-bottom: 100%;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner strong {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 2px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner span {
    font-size: 8px;
    letter-spacing: 0;
    margin-top: 10px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner img {
    max-width: 90px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio a .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio a .box-inner a {
    padding: 8px 13px;
    letter-spacing: 0;
    font-size: 8px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner strong {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 2px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner span {
    font-size: 8px;
    letter-spacing: 0;
    margin-top: 10px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner img {
    max-width: 90px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    padding: 8px 13px;
    letter-spacing: 0;
    font-size: 8px;
  }
  .tips .product-inspiration-container .product-inspiration-content__left > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right > .item div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__left .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a,
  .tips .product-inspiration-container .product-inspiration-content__right .item.item--product div.ratio-wrap div.ratio div.tile-s .box-inner a {
    margin-top: 5px;
  }
}
/* Tips END */
#wrap-bts {
  /* BEGIN back-to-school */
  /* END back-to-school */
  /* BEGIN game */
  /* END game */
  /* BEGIN weather */
  /* END weather */
  /* BEGIN product */
  /* END product */
}
#wrap-bts .back-to-school__header {
  height: 686px;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}
#wrap-bts .back-to-school__header h2 {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #FFF;
  font-family: bebas, arial, sans-serif;
  letter-spacing: .12em;
}
#wrap-bts .back-to-school__header p {
  font-size: 18px;
  line-height: 30px;
  font-family: montserratlight, arial, sans-serif;
  color: #FFF;
  margin-bottom: 30px;
}
#wrap-bts .back-to-school__header-inner {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  width: 100%;
  max-width: 1450px;
  text-align: center;
  padding: 0 10px;
}
#wrap-bts .back-to-school__header-inner .btn {
  display: inline-block;
  font-size: 25px;
  text-transform: uppercase;
  font-family: bebas, arial, sans-serif;
  letter-spacing: .34em;
  text-indent: .34em;
  background: #FFF;
  color: #f59f24;
  padding: 20px 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-bts .back-to-school__header-inner .btn:hover {
  background: #f59f24;
  color: #FFF;
  -webkit-transform: translateY(-2px) scale(1.02) translateZ(0) scale(1, 1);
  -moz-transform: translateY(-2px) scale(1.02);
  -o-transform: translateY(-2px) scale(1.02);
  -ms-transform: translateY(-2px) scale(1.02);
  transform: translateY(-2px) scale(1.02);
}
#wrap-bts .back-to-school__slider {
  height: 800px;
  position: relative;
  overflow: hidden;
}
#wrap-bts .back-to-school__slider #owl-ratio {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  z-index: 1;
  padding-bottom: 0;
  width: 1010px;
  height: 100%;
  background: none;
}
#wrap-bts .back-to-school__slider #owl-ratio:before {
  content: '';
  background: url("../img/bts/bts-rocket.png") 50% 50% / contain no-repeat;
  width: 472px;
  height: 320px;
  position: absolute;
  z-index: 0;
  left: 30px;
  top: 160px;
  -webkit-transform: translateX(-100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
#wrap-bts .back-to-school__slider #owl-ratio:after {
  content: '';
  background: url("../img/bts/bts-boy.png") 50% 50% / contain no-repeat;
  width: 454px;
  height: 740px;
  position: absolute;
  bottom: 0;
  right: 40px;
  z-index: 0;
  -webkit-transform: translateX(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
#wrap-bts .back-to-school__slider #owl-ratio .owl-inner {
  padding: 90px 50px 75px 50px;
  height: 100%;
  background: url('../img/bts/bts-board.png') 50% 50% / contain no-repeat;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#wrap-bts .back-to-school__slider #owl-ratio h3 {
  font-family: kalambold, arial, sans-serif;
  font-size: 25px;
  text-align: center;
  letter-spacing: .065em;
  color: #FFF;
  margin-top: 50px;
  padding-top: .3em;
}
#wrap-bts .back-to-school__slider #owl-ratio .slide {
  padding: 0 50px;
  max-width: 660px;
  margin: 40px auto 0 auto;
}
#wrap-bts .back-to-school__slider #owl-ratio .owl-buttons {
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
#wrap-bts .back-to-school__slider #owl-ratio .owl-buttons > div {
  background: 50% 50% / contain no-repeat;
  width: 50px;
  height: 90px;
  color: transparent;
  zoom: 1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-bts .back-to-school__slider #owl-ratio .owl-buttons > div:before {
  content: '';
  display: block;
}
#wrap-bts .back-to-school__slider #owl-ratio .owl-buttons > div:after {
  content: '';
  display: table;
  clear: both;
}
#wrap-bts .back-to-school__slider #owl-ratio .owl-buttons > div.owl-prev {
  background-image: url("../img/bts/arrow-left.svg");
  float: left;
}
#wrap-bts .back-to-school__slider #owl-ratio .owl-buttons > div.owl-next {
  background-image: url("../img/bts/arrow-right.svg");
  float: right;
}
#wrap-bts .back-to-school__slider #owl-ratio .owl-buttons > div:hover.owl-prev {
  -webkit-transform: translateX(-5px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}
#wrap-bts .back-to-school__slider #owl-ratio .owl-buttons > div:hover.owl-next {
  -webkit-transform: translateX(5px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
#wrap-bts .back-to-school__slider--2 #owl-ratio h3 {
  margin-top: 30px;
}
#wrap-bts .back-to-school__slider--2 #owl-ratio:before {
  content: '';
  background: url("../img/bts/bts-boy-2.png") 50% 100% / contain no-repeat;
  width: 502px;
  height: 757px;
  position: absolute;
  z-index: 0;
  left: 50px;
  top: auto;
  bottom: 0;
  -webkit-transform: translateX(-100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
#wrap-bts .back-to-school__slider--2 #owl-ratio:after {
  content: '';
  background: url("../img/bts/bts-airplane.png") 50% 50% / contain no-repeat;
  width: 360px;
  height: 369px;
  position: absolute;
  top: 100px;
  right: 45px;
  z-index: 0;
  -webkit-transform: translateX(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
@media (max-width: 1680px) {
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio:before {
    width: 40%;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio:after {
    width: 30%;
    bottom: 0;
    background-position: 50% 100%;
  }
  #wrap-bts .back-to-school .back-to-school__slider--2 #owl-ratio:before {
    width: 40%;
  }
  #wrap-bts .back-to-school .back-to-school__slider--2 #owl-ratio:after {
    width: 30%;
    right: 125px;
  }
}
@media (max-width: 1480px) {
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio:before,
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio:after {
    width: 30%;
  }
  #wrap-bts .back-to-school .back-to-school__slider--2 #owl-ratio:before,
  #wrap-bts .back-to-school .back-to-school__slider--2 #owl-ratio:after {
    width: 30%;
  }
}
@media (max-width: 1300px) {
  #wrap-bts .back-to-school .back-to-school__slider {
    height: 480px;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio {
    width: 670px;
    height: 480px;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio:before,
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio:after {
    width: 50%;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio h3 {
    font-size: 24px;
    margin-top: 5px;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio .owl-inner {
    padding: 40px 50px 60px 50px;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio .owl-buttons {
    left: 0;
    right: 0;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio .slide {
    margin: 15px auto 0 auto;
  }
  #wrap-bts .back-to-school .back-to-school__slider--2 #owl-ratio:before,
  #wrap-bts .back-to-school .back-to-school__slider--2 #owl-ratio:after {
    width: 50%;
  }
}
@media (max-width: 990px) {
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio {
    width: 640px;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio:before,
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio:after {
    content: none;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio .owl-inner {
    background-position: 50% 0;
  }
}
@media (max-width: 768px) {
  #wrap-bts .back-to-school .back-to-school__tiles .tiles__list .tile--no-photo img {
    max-width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  #wrap-bts .back-to-school .back-to-school__header {
    height: auto;
  }
  #wrap-bts .back-to-school .back-to-school__header-inner {
    position: static;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
    padding: 40px 2%;
  }
  #wrap-bts .back-to-school .back-to-school__header-inner h2 {
    font-size: 39px;
  }
  #wrap-bts .back-to-school .back-to-school__slider {
    background: none!important;
    height: auto;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio {
    width: 100%;
    position: static;
    -webkit-transform: none translateZ(0) scale(1, 1);
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    height: auto;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio:before,
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio:after {
    content: none;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio .owl-inner {
    padding: 0  ;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio .owl-buttons {
    display: none;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio .slide {
    height: 70vw;
  }
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio h3 {
    padding: 35px 20px 0 20px;
  }
}
@media (max-width: 480px) {
  #wrap-bts .back-to-school .back-to-school__slider #owl-ratio h3 {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1;
    padding-top: 30px;
  }
  #wrap-bts .back-to-school .back-to-school__tiles .tiles__list .tile--no-photo .box-inner span {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
#wrap-bts .game {
  margin-bottom: 70px;
}
#wrap-bts .game__header {
  height: 474px;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}
#wrap-bts .game__header h2 {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 50px;
  text-transform: uppercase;
  color: #FFF;
  font-family: bebas, arial, sans-serif;
  letter-spacing: .12em;
}
#wrap-bts .game__header-inner {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  width: 100%;
  max-width: 1600px;
  text-align: center;
  padding: 0 10px;
}
#wrap-bts .game__section {
  background: url("../img/bts/game-content-bg.jpg") 50% 50% / cover no-repeat;
  min-height: 800px;
}
#wrap-bts .game__section-inner {
  zoom: 1;
}
#wrap-bts .game__section-inner:before {
  content: '';
  display: block;
}
#wrap-bts .game__section-inner:after {
  content: '';
  display: table;
  clear: both;
}
#wrap-bts .game__article {
  width: 33.333333%;
  float: left;
  margin-top: 60px;
}
#wrap-bts .game__article strong {
  font-family: montserratbold, arial, sans-serif;
}
#wrap-bts .game__article-header {
  text-align: center;
}
#wrap-bts .game__article-header h3 {
  font-family: montserratbold, arial, sans-serif;
  font-size: 25px;
  text-transform: none;
  color: #3c2304;
  letter-spacing: .025em;
}
#wrap-bts .game__article-intro {
  color: #3c2304;
  padding-top: 60px;
  font-family: montserratlight, arial, sans-serif;
}
#wrap-bts .game__article-intro p {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 20px;
  letter-spacing: .025em;
}
#wrap-bts .game__article-intro p:last-child {
  margin-bottom: 0;
}
#wrap-bts .game__article-content {
  color: #3c2304;
  padding-top: 60px;
}
#wrap-bts .game__article-content p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 25px;
  font-family: montserratlight, arial, sans-serif;
  letter-spacing: .025em;
}
#wrap-bts .game__recommend {
  width: 33.333333%;
  float: left;
  text-align: center;
}
#wrap-bts .game__recommend-bg {
  background: url("../img/bts/game-board.png") 50% 50% / contain no-repeat;
  width: 420px;
  height: 715px;
  margin: 60px auto 20px auto;
  position: relative;
  z-index: 1;
  padding: 100px 80px;
}
#wrap-bts .game__recommend-bg h4 {
  font-family: kalambold, arial, sans-serif;
  color: #FFF;
  font-size: 30px;
  letter-spacing: .065em;
}
#wrap-bts .game__recommend-bg #owl-ratio {
  background: none;
}
#wrap-bts .game__recommend-inner {
  position: relative;
  display: inline-block;
}
#wrap-bts .game__recommend-inner:before {
  content: '';
  background: url("../img/bts/game-board-line1.png") 50% 50% / contain no-repeat;
  width: 131px;
  height: 46px;
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 32px;
  -webkit-transform: translateX(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#wrap-bts .game__recommend-inner:after {
  content: '';
  background: url("../img/bts/game-board-line2.png") 50% 50% / contain no-repeat;
  width: 126px;
  height: 129px;
  position: absolute;
  bottom: 46px;
  left: -50px;
  z-index: 0;
}
#wrap-bts .game__recommend--2 .game__recommend-inner:before {
  content: '';
  background: url("../img/bts/game-board-line3.png") 50% 50% / contain no-repeat;
  width: 117px;
  height: 122px;
  position: absolute;
  z-index: 0;
  right: -110px;
  top: 43px;
  left: auto;
}
#wrap-bts .game__recommend--2 .game__recommend-inner:after {
  content: '';
  background: url("../img/bts/game-board-line4.png") 50% 50% / contain no-repeat;
  width: 126px;
  height: 129px;
  position: absolute;
  bottom: 116px;
  left: -78px;
  z-index: 0;
}
@media (max-width: 1580px) {
  #wrap-bts .game .game__recommend {
    width: 30%;
  }
  #wrap-bts .game .game__recommend .product {
    margin-top: 30px;
  }
  #wrap-bts .game .game__recommend .product .product__img {
    max-width: 170px;
  }
  #wrap-bts .game .game__recommend .product .product__price span {
    font-size: 48px;
  }
  #wrap-bts .game .game__recommend .product .product__price sup {
    font-size: 28px;
  }
  #wrap-bts .game .game__recommend .product .product__no {
    padding-top: 10px;
  }
  #wrap-bts .game .game__recommend-bg {
    width: 360px;
    height: 666px;
    margin: 35px auto 0 auto;
    padding: 100px 60px;
  }
  #wrap-bts .game .game__recommend--slider .game__recommend-bg {
    padding: 100px 0;
  }
  #wrap-bts .game .game__article {
    width: 40%;
  }
}
@media (max-width: 1300px) {
  #wrap-bts .game .game__header h2 {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: .12em;
  }
  #wrap-bts .game .game__header--inner {
    top: 50%;
  }
  #wrap-bts .game .game__recommend-bg {
    width: 400px;
    height: 725px;
  }
  #wrap-bts .game .game__article {
    width: calc(100% - 385px);
    padding: 0 40px;
    display: inline-block;
    vertical-align: middle;
    float: none;
    position: relative;
  }
  #wrap-bts .game .game__recommend--slider {
    display: inline-block;
    width: 380px;
    vertical-align: middle;
    float: none;
  }
  #wrap-bts .game .game__recommend--slider .game__recommend-inner:before {
    content: '';
    background: url("../img/bts/game-board-line5.png") 50% 50% / contain no-repeat;
    width: 138px;
    height: 162px;
    position: absolute;
    z-index: 0;
    top: 52px;
    left: 42px;
  }
  #wrap-bts .game .game__recommend--slider .game__recommend-inner:after {
    content: '';
    background: url("../img/bts/game-board-line6.png") 50% 50% / contain no-repeat;
    width: 264px;
    height: 311px;
    position: absolute;
    bottom: 20px;
    left: auto;
    right: -190px;
    z-index: 0;
  }
  #wrap-bts .game .game__recommend--slider .owl-carousel {
    padding: 0 40px;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio {
    display: block;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .slide {
    padding: 10px 30px;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .product {
    margin-top: 50px;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-pagination {
    position: absolute;
    bottom: -130px;
    left: 0;
    right: 0;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-pagination .owl-page {
    width: 24px;
    height: 24px;
    background: #FFF;
    margin: 0 15px;
    display: inline-block;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-pagination .owl-page:hover,
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-pagination .owl-page.active {
    background: #fe3100;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-buttons {
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-buttons > div {
    background: 50% 50% / contain no-repeat;
    width: 30px;
    height: 60px;
    color: transparent;
    zoom: 1;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-buttons > div:before {
    content: '';
    display: block;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-buttons > div:after {
    content: '';
    display: table;
    clear: both;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-buttons > div.owl-prev {
    background-image: url("../img/bts/arrow-left.svg");
    float: left;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-buttons > div.owl-next {
    background-image: url("../img/bts/arrow-right.svg");
    float: right;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-buttons > div:hover.owl-prev {
    -webkit-transform: translateX(-5px) translateZ(0) scale(1, 1);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-buttons > div:hover.owl-next {
    -webkit-transform: translateX(5px) translateZ(0) scale(1, 1);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}
@media (max-width: 768px) {
  #wrap-bts .game .game__section {
    padding-bottom: 100px;
  }
  #wrap-bts .game .game__header h2 {
    font-size: 38px;
    line-height: 42px;
    letter-spacing: .12em;
  }
  #wrap-bts .game .game__recommend--slider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-pagination {
    bottom: -90px;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-buttons {
    display: none;
  }
  #wrap-bts .game .game__section-inner {
    padding-bottom: 725px;
    position: relative;
  }
  #wrap-bts .game .game__article {
    width: 100%;
  }
  #wrap-bts .game .game__article-header {
    text-align: left;
  }
  #wrap-bts .game .game__article-content {
    padding-top: 40px;
  }
  #wrap-bts .game .game__recommend-bg .product .product__img {
    max-width: 250px;
  }
  #wrap-bts .game .game__recommend-bg .product .product__price span {
    font-size: 66px;
  }
  #wrap-bts .game .game__recommend-bg .product .product__price sup {
    font-size: 38px;
  }
  #wrap-bts .game .game__recommend-bg .product .product__no {
    padding-top: 20px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  #wrap-bts .game .game__header h2 {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: .12em;
  }
  #wrap-bts .game .game__header-inner {
    top: 50%;
  }
  #wrap-bts .game .game__section-inner {
    padding-bottom: 580px;
  }
  #wrap-bts .game .game__recommend-bg {
    width: 300px;
    height: 620px;
    padding: 80px 50px 100px 50px;
  }
  #wrap-bts .game .game__recommend-bg .product {
    margin-top: 20px;
  }
  #wrap-bts .game .game__recommend-bg .product .product__icon {
    max-width: 50px;
  }
  #wrap-bts .game .game__recommend-bg .product .product__img {
    max-width: 90px;
  }
  #wrap-bts .game .game__recommend-bg .product .product__price span {
    font-size: 32px;
  }
  #wrap-bts .game .game__recommend-bg .product .product__price sup {
    font-size: 20px;
  }
  #wrap-bts .game .game__recommend-bg .product .product__no {
    font-size: 14px;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .owl-pagination {
    bottom: -150px;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .slide {
    padding: 10px;
  }
  #wrap-bts .game .game__recommend--slider #owl-ratio .product {
    margin-top: 15px;
  }
  #wrap-bts .game .game__article-content p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
  }
}
#wrap-bts .weather__val {
  font-family: montserratlight, arial, sans-serif;
  font-size: 54px;
  color: #FFF;
}
#wrap-bts .weather__celcius {
  width: 13px;
  height: 13px;
  border-radius: 100%;
  border: 3px solid #FFF;
  display: inline-block;
  vertical-align: top;
}
#wrap-bts .weather__icon {
  background-size: contain;
  background-position: 50% 50%;
  display: inline-block;
  width: 55px;
  height: 40px;
}
#wrap-bts .weather__icon--sunny {
  background-image: url('../img/bts/weather.svg');
  background-repeat: no-repeat;
}
#wrap-bts .weather__icon--rainy {
  background-image: url('../img/bts/rain.png');
  background-repeat: no-repeat;
  background-position-y: 4px;
}
#wrap-bts .weather__city {
  font-family: montserratlight, arial, sans-serif;
  text-transform: uppercase;
  color: #FFF;
  padding-top: 5px;
  letter-spacing: .17em;
  font-size: 16px;
  display: block;
  text-align: center;
}
#wrap-bts .product {
  position: relative;
  display: block;
  padding-top: 35px;
  margin-top: 50px;
}
#wrap-bts .product__icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: all 200ms ease-in-out 0ms;
  -moz-transition: all 200ms ease-in-out 0ms;
  -o-transition: all 200ms ease-in-out 0ms;
  -ms-transition: all 200ms ease-in-out 0ms;
  transition: all 200ms ease-in-out 0ms;
  -o-transform: translate(0px);
}
#wrap-bts .product__icon > img {
  max-width: 100%;
}
#wrap-bts .product__icon .icon--cloud {
  margin-top: 20px;
}
#wrap-bts .product__price {
  position: absolute;
  right: 0;
  top: 0;
  font-family: kalamregular, arial, sans-serif;
  color: #FFF;
  -webkit-transition: all 200ms ease-in-out 0ms;
  -moz-transition: all 200ms ease-in-out 0ms;
  -o-transition: all 200ms ease-in-out 0ms;
  -ms-transition: all 200ms ease-in-out 0ms;
  transition: all 200ms ease-in-out 0ms;
  -o-transform: translate(0px);
}
#wrap-bts .product__price span {
  font-size: 55px;
  padding-right: 5px;
}
#wrap-bts .product__price sup {
  font-size: 32px;
}
#wrap-bts .product__img {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
  -webkit-transition: all 200ms ease-in-out 0ms;
  -moz-transition: all 200ms ease-in-out 0ms;
  -o-transition: all 200ms ease-in-out 0ms;
  -ms-transition: all 200ms ease-in-out 0ms;
  transition: all 200ms ease-in-out 0ms;
  -o-transform: translate(0px);
}
#wrap-bts .product__no {
  text-align: center;
  display: block;
  font-family: montserratlight, arial, sans-serif;
  font-size: 17px;
  color: #6e915c;
  text-transform: uppercase;
  padding-top: 30px;
  -webkit-transition: all 200ms ease-in-out 0ms;
  -moz-transition: all 200ms ease-in-out 0ms;
  -o-transition: all 200ms ease-in-out 0ms;
  -ms-transition: all 200ms ease-in-out 0ms;
  transition: all 200ms ease-in-out 0ms;
  -o-transform: translate(0px);
}
#wrap-bts .product__no--two-lines {
  padding-top: 15px;
}
#wrap-bts .product:hover .product__icon {
  -webkit-transform: translate(-5px, -10px) translateZ(0) scale(1, 1);
  -ms-transform: translate(-5px, -10px);
  transform: translate(-5px, -10px);
  -webkit-transform: translate(-5px, -10px) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-5px, -10px) translateZ(0) scale(1, 1);
  -o-transform: translate(-5px, -10px) translateZ(0) scale(1, 1);
  -ms-transform: translate(-5px, -10px) translateZ(0) scale(1, 1);
  transform: translate(-5px, -10px) translateZ(0) scale(1, 1);
  -webkit-transition: all 300ms ease-in-out 100ms;
  -moz-transition: all 300ms ease-in-out 100ms;
  -o-transition: all 300ms ease-in-out 100ms;
  -ms-transition: all 300ms ease-in-out 100ms;
  transition: all 300ms ease-in-out 100ms;
  -o-transform: translate(0px);
}
#wrap-bts .product:hover .product__price {
  -webkit-transform: scale(1.1) translateZ(0) scale(1, 1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 300ms ease-out 200ms;
  -moz-transition: all 300ms ease-out 200ms;
  -o-transition: all 300ms ease-out 200ms;
  -ms-transition: all 300ms ease-out 200ms;
  transition: all 300ms ease-out 200ms;
  -o-transform: translate(0px);
}
#wrap-bts .product:hover .product__img {
  -webkit-transform: translateY(-10px) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 400ms ease-in-out 0ms;
  -moz-transition: all 400ms ease-in-out 0ms;
  -o-transition: all 400ms ease-in-out 0ms;
  -ms-transition: all 400ms ease-in-out 0ms;
  transition: all 400ms ease-in-out 0ms;
  -o-transform: translate(0px);
}
#wrap-bts .product:hover .product__no {
  -webkit-transform: translateY(-20px) scale(1.1) translateZ(0) scale(1, 1);
  -moz-transform: translateY(-20px) scale(1.1);
  -o-transform: translateY(-20px) scale(1.1);
  -ms-transform: translateY(-20px) scale(1.1);
  transform: translateY(-20px) scale(1.1);
  color: #FFF;
  -webkit-transition: all 300ms ease-in-out 0ms;
  -moz-transition: all 300ms ease-in-out 0ms;
  -o-transition: all 300ms ease-in-out 0ms;
  -ms-transition: all 300ms ease-in-out 0ms;
  transition: all 300ms ease-in-out 0ms;
  -o-transform: translate(0px);
}
@media (max-width: 480px) {
  #wrap-bts .product:hover .product__icon,
  #wrap-bts .product:hover .product__price,
  #wrap-bts .product:hover .product__img,
  #wrap-bts .product:hover .product__no {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
#wrap-bts .product.product--big {
  margin-top: 0;
}
#wrap-bts .product.product--big .product__icon {
  right: 0;
}
#wrap-bts .product.product--big .product__icon img {
  width: 100%;
}
#wrap-bts .product.product--big .product__price {
  right: 100px;
  top: 30px;
  z-index: 2;
}
#wrap-bts .product.product--big .product__price span {
  font-size: 70px;
}
#wrap-bts .product.product--big .product__price sup {
  font-size: 40px;
}
#wrap-bts .product.product--big .product__price.product__price--rainy {
  right: 20px;
}
#wrap-bts .product.product--big .product__price:after {
  content: '';
  background: url("../img/bts/bts-product-arrow.png") 50% 50% / contain no-repeat;
  width: 90px;
  height: 55px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate(-60%, 100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-60%, 100%);
  transform: translate(-60%, 100%);
  -webkit-transform: translate(-60%, 100%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-60%, 100%) translateZ(0) scale(1, 1);
  -o-transform: translate(-60%, 100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-60%, 100%) translateZ(0) scale(1, 1);
  transform: translate(-60%, 100%) translateZ(0) scale(1, 1);
}
#wrap-bts .product.product--big .product__desc {
  position: relative;
  z-index: 1;
  font-family: kalamregular, arial, sans-serif;
  font-size: 28px;
  color: #FFF;
  margin-top: 25px;
  display: inline-block;
  -webkit-transform: translateX(-60px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-60px);
  transform: translateX(-60px);
}
#wrap-bts .product.product--big .product__desc:before {
  content: '';
  background: url("../img/bts/bts-product-arrow2.png") 50% 50% / contain no-repeat;
  width: 51px;
  height: 48px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, -100%);
  transform: translate(100%, -100%);
  -webkit-transform: translate(100%, -100%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -o-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  transform: translate(100%, -100%) translateZ(0) scale(1, 1);
}
#wrap-bts .product.product--big .product__foot {
  text-align: center;
}
#wrap-bts .product.product--big .product__btn {
  font-family: bebas, arial, sans-serif;
  font-size: 25px;
  margin-top: 15px;
  text-transform: uppercase;
  color: #FFF;
  padding: 25px 48px;
  text-indent: .2em;
  letter-spacing: .2em;
  border: 1px solid #FFF;
  display: inline-block;
  -webkit-transition: all 200ms ease-in-out 0ms;
  -moz-transition: all 200ms ease-in-out 0ms;
  -o-transition: all 200ms ease-in-out 0ms;
  -ms-transition: all 200ms ease-in-out 0ms;
  transition: all 200ms ease-in-out 0ms;
  -o-transform: translate(0px);
}
#wrap-bts .product.product--big .product__btn:hover {
  background: #FFF;
  color: #000;
}
#wrap-bts .product.product--big .product__no {
  padding-top: 5px;
}
#wrap-bts .product.product--big:hover .product__icon,
#wrap-bts .product.product--big:hover .product__price,
#wrap-bts .product.product--big:hover .product__img,
#wrap-bts .product.product--big:hover .product__no {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
#wrap-bts .product.product--big:hover .product__no {
  color: #6e915c;
}
@media (max-width: 1300px) {
  #wrap-bts .product.product--big {
    padding-top: 5px;
  }
  #wrap-bts .product.product--big .product__price span {
    font-size: 48px;
  }
  #wrap-bts .product.product--big .product__price sup {
    font-size: 28px;
  }
  #wrap-bts .product.product--big .product__img {
    max-height: 130px;
  }
  #wrap-bts .product.product--big .product__price {
    top: 0;
    right: 50px;
  }
  #wrap-bts .product.product--big .product__desc {
    font-size: 18px;
    -webkit-transform: translateX(40px) translateZ(0) scale(1, 1);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }
  #wrap-bts .product.product--big .product__desc:before {
    width: 31px;
    height: 28px;
  }
  #wrap-bts .product.product--big .product__btn {
    padding: 17px 32px;
    font-size: 17px;
    letter-spacing: .2em;
  }
}
@media (max-width: 640px) {
  #wrap-bts .product.product--big .product__img {
    max-height: 90px;
    max-width: 30%;
    margin: 5% auto;
  }
  #wrap-bts .product.product--big .product__no {
    display: none;
  }
  #wrap-bts .product.product--big .product__desc {
    display: none;
  }
  #wrap-bts .product.product--big .product__price:after {
    display: none;
  }
  #wrap-bts .product.product--big .product__btn {
    margin-top: 5px;
  }
}
@media (max-width: 480px) {
  #wrap-bts .product.product--big .product__btn {
    padding: 7px 15px;
    font-size: 14px;
  }
  #wrap-bts .product.product--big .product__price span {
    font-size: 28px;
  }
  #wrap-bts .product.product--big .product__price sup {
    font-size: 14px;
  }
  #wrap-bts .product.product--big .product__img {
    margin: 0 auto;
  }
}
.tiles__list {
  padding: 10px;
  zoom: 1;
}
.tiles__list:before {
  content: '';
  display: block;
}
.tiles__list:after {
  content: '';
  display: table;
  clear: both;
}
.tiles__list .tile {
  float: left;
  width: 33.333%;
  padding: 10px;
}
.tiles__list .tile .ratio-wrap {
  position: relative;
  padding-bottom: 100%;
  height: 0;
}
.tiles__list .tile .ratio-wrap .ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tiles__list .tile .ratio-wrap .ratio .preload-background-image {
  background: url("../img/loader.svg") 50% 50% #eee no-repeat;
  background-size: auto!important;
}
.tiles__list .tile .ratio-wrap .ratio .preload-background-image .box-inner {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.tiles__list .tile .ratio-wrap .ratio > a,
.tiles__list .tile .ratio-wrap .ratio > div {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
}
.tiles__list .tile .ratio-wrap .ratio > a .box-cover,
.tiles__list .tile .ratio-wrap .ratio > div .box-cover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  background-color: rgba(0, 0, 0, 0);
}
.tiles__list .tile .ratio-wrap .ratio > a .box-inner,
.tiles__list .tile .ratio-wrap .ratio > div .box-inner {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.tiles__list .tile .ratio-wrap .ratio > a:hover .box-cover,
.tiles__list .tile .ratio-wrap .ratio > div:hover .box-cover,
.tiles__list .tile .ratio-wrap .ratio > a .hover-mobile .box-cover,
.tiles__list .tile .ratio-wrap .ratio > div .hover-mobile .box-cover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  background-color: rgba(0, 0, 0, 0.5);
}
.tiles__list .tile .ratio-wrap .ratio > a:hover .box-inner,
.tiles__list .tile .ratio-wrap .ratio > div:hover .box-inner,
.tiles__list .tile .ratio-wrap .ratio > a .hover-mobile .box-inner,
.tiles__list .tile .ratio-wrap .ratio > div .hover-mobile .box-inner {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.tiles__list .tile .ratio-wrap .ratio > a:hover .box-inner .btn,
.tiles__list .tile .ratio-wrap .ratio > div:hover .box-inner .btn,
.tiles__list .tile .ratio-wrap .ratio > a .hover-mobile .box-inner .btn,
.tiles__list .tile .ratio-wrap .ratio > div .hover-mobile .box-inner .btn {
  -webkit-transform: none translateZ(0) scale(1, 1);
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.tiles__list .tile .ratio-wrap .ratio .box-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 20px;
  width: 100%;
  max-width: 550px;
  text-align: center;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
.tiles__list .tile .ratio-wrap .ratio .box-inner strong,
.tiles__list .tile .ratio-wrap .ratio .box-inner span {
  display: block;
  position: static;
  text-align: center;
  line-height: 1;
}
.tiles__list .tile .ratio-wrap .ratio .box-inner strong {
  font-family: bebas, arial, sans-serif;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: .105em;
  color: #FFF;
  margin-bottom: 10px;
}
.tiles__list .tile .ratio-wrap .ratio .box-inner span {
  font-family: montserratlight, arial, sans-serif;
  font-size: 20px;
  letter-spacing: 5px;
  color: #FFF;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.tiles__list .tile .ratio-wrap .ratio .box-inner .btn {
  font-family: bebas, arial, sans-serif;
  font-size: 25px;
  margin-top: 50px;
  text-transform: uppercase;
  color: #FFF;
  padding: 25px 48px;
  text-indent: .2em;
  letter-spacing: .2em;
  border: 1px solid #FFF;
  display: inline-block;
  -webkit-transition: all 200ms ease-in-out 0ms;
  -moz-transition: all 200ms ease-in-out 0ms;
  -o-transition: all 200ms ease-in-out 0ms;
  -ms-transition: all 200ms ease-in-out 0ms;
  transition: all 200ms ease-in-out 0ms;
  -o-transform: translate(0px);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transform: scale(1.1) translateY(15px) translateZ(0) scale(1, 1);
  -moz-transform: scale(1.1) translateY(15px);
  -o-transform: scale(1.1) translateY(15px);
  -ms-transform: scale(1.1) translateY(15px);
  transform: scale(1.1) translateY(15px);
}
.tiles__list .tile .ratio-wrap .ratio .box-inner .btn:hover {
  background: #FFF;
  color: #000;
}
.tiles__list .tile--no-photo .ratio-wrap .ratio .box-inner img {
  margin-bottom: 50px;
  text-transform: none;
}
.tiles__list .tile--no-photo .ratio-wrap .ratio .box-inner span {
  font-family: montserratlight, arial, sans-serif;
  text-transform: none;
  font-size: 18px;
  text-align: center;
  color: #606060;
}
.tiles__list .tile--slider .ratio-wrap .ratio > .ratio-inner {
  width: 100%;
  height: 100%;
}
.tiles__list .tile--slider .ratio-wrap .ratio > .ratio-inner .box-inner {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: none translateZ(0) scale(1, 1);
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  max-width: none;
}
.tiles__list .tile--slider .ratio-wrap .ratio > .ratio-inner .box-inner #owl-ratio {
  background: none;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
}
.tiles__list .tile--slider .ratio-wrap .ratio > .ratio-inner .box-inner #owl-ratio .owl-carousel {
  height: 100%;
}
.tiles__list .tile--slider .ratio-wrap .ratio > .ratio-inner .box-inner #owl-ratio .owl-carousel .owl-wrapper-outer {
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
.tiles__list .tile--slider .ratio-wrap .ratio > .ratio-inner .box-inner #owl-ratio .owl-carousel .owl-wrapper .owl-item .slide {
  text-align: center;
}
.tiles__list .tile--slider .ratio-wrap .ratio > .ratio-inner .box-inner #owl-ratio .owl-carousel .owl-wrapper .owl-item .slide p {
  font-family: montserratultra_light, arial, sans-serif;
  color: #797979;
  font-size: 18px;
  line-height: 32px;
  padding: 0 5%;
}
.tiles__list .tile--slider .ratio-wrap .ratio > .ratio-inner .box-inner #owl-ratio .owl-carousel .owl-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.tiles__list .tile--slider .ratio-wrap .ratio > .ratio-inner .box-inner #owl-ratio .owl-carousel .owl-controls .owl-pagination {
  text-align: center;
}
.tiles__list .tile--slider .ratio-wrap .ratio > .ratio-inner .box-inner #owl-ratio .owl-carousel .owl-controls .owl-pagination .owl-page {
  display: inline-block;
  padding: 0 10px;
}
.tiles__list .tile--slider .ratio-wrap .ratio > .ratio-inner .box-inner #owl-ratio .owl-carousel .owl-controls .owl-pagination .owl-page span {
  display: block;
  width: 16px;
  height: 16px;
  background: #aaaaaa;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.tiles__list .tile--slider .ratio-wrap .ratio > .ratio-inner .box-inner #owl-ratio .owl-carousel .owl-controls .owl-pagination .owl-page span:hover {
  background: #e4e4e4;
}
.tiles__list .tile--slider .ratio-wrap .ratio > .ratio-inner .box-inner #owl-ratio .owl-carousel .owl-controls .owl-pagination .owl-page.active span {
  background: #e4e4e4;
}
@media (max-width: 1600px) {
  .tiles__list .tile .ratio-wrap .ratio > a .box-inner strong,
  .tiles__list .tile .ratio-wrap .ratio > div .box-inner strong {
    font-size: 48px;
    line-height: 48px;
  }
}
@media (max-width: 1366px) {
  .tiles__list .tile .ratio-wrap .ratio > a .box-inner strong,
  .tiles__list .tile .ratio-wrap .ratio > div .box-inner strong {
    font-size: 32px;
    line-height: 32px;
  }
  .tiles__list .tile .ratio-wrap .ratio > a .box-inner span,
  .tiles__list .tile .ratio-wrap .ratio > div .box-inner span {
    font-size: 16px;
    line-height: 16px;
  }
  .tiles__list .tile .ratio-wrap .ratio > a .box-inner img,
  .tiles__list .tile .ratio-wrap .ratio > div .box-inner img {
    max-width: 80%;
  }
  .tiles__list .tile--slider #tips-slider .slide p {
    font-size: 14px!important;
    line-height: 16px!important;
  }
}
@media (max-width: 990px) {
  .tiles__list .tile {
    width: 50%;
  }
  .tiles__list .tile .ratio-wrap .ratio > a .box-inner p,
  .tiles__list .tile .ratio-wrap .ratio > div .box-inner p {
    font-size: 16px;
    line-height: 24px;
  }
  .tiles__list .tile--slider #tips-slider .slide p {
    font-size: 14px!important;
    line-height: 18px!important;
  }
}
@media (max-width: 640px) {
  .tiles__list .tile {
    width: 100%;
  }
  .tiles__list .tile--slider #tips-slider .slide p {
    font-size: 14px!important;
    line-height: 18px!important;
  }
}
@media (max-width: 480px) {
  .tiles__list .tile {
    width: 100%;
  }
  .tiles__list .tile .ratio-wrap .ratio > a .box-inner strong,
  .tiles__list .tile .ratio-wrap .ratio > div .box-inner strong {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 3px;
  }
  .tiles__list .tile--slider #tips-slider .slide p {
    font-size: 12px!important;
    line-height: 14px!important;
  }
}
.tests__header {
  height: 337px;
  position: relative;
  background-position: 50% 50%;
}
.tests__header h2 {
  font-family: bebas, arial, sans-serif;
  color: #FFF;
  font-size: 85px;
  left: 50%;
  letter-spacing: .2em;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
@media (max-width: 1024px) {
  .tests__header h2 {
    font-size: 98px;
  }
}
@media (max-width: 768px) {
  .tests__header h2 {
    max-width: 650px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .tests__header h2 {
    font-size: 64px;
    padding: 2%;
  }
}
@media (max-width: 420px) {
  .tests__header {
    background-image: url('../img/tests/top-mobile.jpg') !important;
  }
  .tests__header h2 {
    font-size: 40px;
    max-width: 150px;
  }
}
.tests__cta {
  margin: 50px 0;
  text-align: center;
}
.tests__cta h3 {
  color: #000;
  display: inline-block;
  font-size: 43px;
  margin-right: 40px;
  text-transform: uppercase;
  vertical-align: middle;
}
.tests__cta .btn {
  font-family: bebas, arial, sans-serif;
  background: #000;
  border: 1px solid #000;
  color: #FFF;
  display: inline-block;
  font-size: 21px;
  padding: 28px 50px;
  text-transform: uppercase;
  letter-spacing: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.tests__cta .btn > span {
  color: #f8541f;
}
.tests__cta .btn:hover {
  background: #FFF;
  color: #000;
}
@media (max-width: 1024px) {
  .tests__cta h3 {
    font-size: 40px;
  }
}
@media (max-width: 720px) {
  .tests__cta h3 {
    font-size: 32px;
  }
  .tests__cta .btn {
    padding: 18px 30px;
  }
}
@media (max-width: 640px) {
  .tests__cta h3 {
    display: block;
    font-size: 40px;
    margin: 0 2%;
  }
  .tests__cta .btn {
    margin: 30px 2% 0;
  }
}
.tests__list {
  margin: 20px;
}
@media (max-width: 640px) {
  .tests__list {
    margin: 0 5%;
  }
}
.tests__foot {
  padding-bottom: 50px;
  text-align: center;
}
.tests__foot .btn {
  font-family: bebas, arial, sans-serif;
  border: 1px solid #000;
  color: #000;
  display: inline-block;
  font-size: 22px;
  letter-spacing: .2em;
  margin-top: 30px;
  padding: 20px 50px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.tests__foot .btn:hover {
  background: #000;
  color: #FFF;
}
.tests .test {
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: stretch;
  margin-bottom: 25px;
}
.tests .test__cell {
  width: 50%;
}
.tests .test__cell:last-of-type {
  border-left: 1px solid #e0e0e0;
}
.tests .test__product {
  padding: 20px;
}
.tests .test__review {
  position: relative;
}
.tests .test__review:before {
  position: absolute;
  top: 50%;
  left: -20px;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 20px 0;
  border-color: transparent #d0d0d0 transparent transparent;
  z-index: 1;
}
.tests .test__review:after {
  position: absolute;
  top: 50%;
  left: -19px;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 20px 0;
  border-color: transparent #FFF transparent transparent;
  z-index: 2;
}
@media (max-width: 768px) {
  .tests .test {
    border: none;
    margin-bottom: 40px;
    display: block;
  }
  .tests .test__cell {
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    width: 100%;
  }
  .tests .test__review:before,
  .tests .test__review:after {
    display: none;
  }
}
.tests .product__top {
  zoom: 1;
}
.tests .product__top:before {
  content: '';
  display: block;
}
.tests .product__top:after {
  content: '';
  display: table;
  clear: both;
}
.tests .product__rate {
  font-family: bebas, arial, sans-serif;
  float: left;
  font-size: 20px;
  width: 50%;
  text-transform: uppercase;
}
.tests .product__rate > span {
  color: #f8541f;
}
.tests .product__stars {
  float: left;
  text-align: right;
  width: 50%;
}
.tests .product__stars .star {
  display: inline-block;
}
.tests .product__img {
  margin-top: 40px;
  text-align: center;
}
.tests .product__img > img {
  max-width: 100%;
}
.tests .product__meta {
  text-align: center;
}
.tests .product__meta h4 {
  font-family: bebas, arial, sans-serif;
  font-size: 43px;
  margin-top: 40px;
  text-align: center;
  text-transform: uppercase;
}
.tests .product__symbol {
  color: #808080;
  display: inline-block;
  font-size: 12px;
  font-family: montserratlight, arial, sans-serif;
  padding: 10px 20px;
}
.tests .product__price {
  color: #f8541f;
  display: block;
  font-size: 20px;
  margin-top: 20px;
  font-family: montserratlight, arial, sans-serif;
}
.tests .product__foot {
  text-align: center;
}
.tests .product__foot .btn {
  font-family: bebas, arial, sans-serif;
  border: 1px solid #000;
  color: #000;
  display: inline-block;
  font-size: 22px;
  letter-spacing: .2em;
  margin-top: 50px;
  padding: 20px 50px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.tests .product__foot .btn:hover {
  background: #000;
  color: #FFF;
}
@media (max-width: 1366px) {
  .tests .product__img > img {
    max-height: 300px;
  }
  .tests .product__foot {
    padding-bottom: 0;
  }
}
@media (max-width: 640px) {
  .tests .product__meta h4 {
    font-size: 30px;
  }
  .tests .product__symbol {
    font-size: 15px;
    padding: 5px 10px;
  }
}
.tests .review {
  padding: 20px;
}
.tests .review #owl-ratio {
  background: none;
  padding-bottom: 0;
  height: 100%;
}
.tests .review #owl-ratio .slide {
  padding-top: 100px;
}
.tests .review #owl-ratio .owl-controls {
  display: block!important;
  position: absolute;
  top: 0;
  width: 100%;
}
.tests .review #owl-ratio .owl-controls .owl-buttons {
  zoom: 1;
}
.tests .review #owl-ratio .owl-controls .owl-buttons:before {
  content: '';
  display: block;
}
.tests .review #owl-ratio .owl-controls .owl-buttons:after {
  content: '';
  display: table;
  clear: both;
}
.tests .review #owl-ratio .owl-controls .owl-buttons > div {
  font-family: bebas, arial, sans-serif;
  color: #b2b2b2;
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.tests .review #owl-ratio .owl-controls .owl-buttons > div:hover {
  color: #f8541f;
}
.tests .review #owl-ratio .owl-controls .owl-buttons .owl-prev {
  background: url('../img/tests/prev.svg') 0 50% / contain no-repeat;
  float: left;
  padding-left: 30px;
}
.tests .review #owl-ratio .owl-controls .owl-buttons .owl-next {
  background: url('../img/tests/next.svg') 100% 50% / contain no-repeat;
  float: right;
  padding-right: 30px;
}
.tests .review__title h4 {
  font-family: bebas, arial, sans-serif;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
}
.tests .review__stars {
  margin-top: 20px;
  text-align: center;
}
.tests .review__stars .star {
  display: inline-block;
}
.tests .review__quote {
  margin-top: 15px;
  padding: 20px 40px;
  overflow: hidden;
}
.tests .review__quote:before,
.tests .review__quote:after {
  background: url('../img/tests/quote-open.svg') 0 0 no-repeat;
  content: '';
  display: block;
  height: 36px;
  width: 36px;
}
.tests .review__quote:before {
  margin-bottom: 40px;
}
.tests .review__quote:after {
  float: right;
  background-image: url('../img/tests/quote-close.svg');
  margin-top: 100px;
}
.tests .review__quote p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 35px;
  font-family: montserratlight, arial, sans-serif;
  text-align: center;
}
.tests .review__foot {
  bottom: 0;
  left: 0;
  position: absolute;
}
.tests .review__foot .share {
  display: none;
}
.tests .review__foot .share > span {
  font-family: bebas, arial, sans-serif;
  color: #000;
  font-size: 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.tests .review__foot .share > img {
  margin-left: 10px;
}
.tests .review__foot .share:hover {
  color: #f8541f;
}
@media (max-width: 1366px) {
  .tests .review .review__quote {
    padding: 0;
  }
  .tests .review .review__quote:after {
    margin-top: 0;
  }
  .tests .review .review__quote p {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 25px;
  }
}
@media (max-width: 640px) {
  .tests .review {
    padding: 5%;
  }
  .tests .review #owl-ratio .owl-controls .owl-buttons .owl-prev {
    background-size: 12px;
    padding-left: 20  px;
    font-size: 16px;
  }
  .tests .review #owl-ratio .owl-controls .owl-buttons .owl-next {
    background-size: 12px;
    padding-right: 20px;
    font-size: 16px;
  }
}
.tests .tests__tiles .tiles__list .tile--w3 {
  width: 100%;
}
.tests .tests__tiles .tiles__list .tile--w3 .ratio-wrap {
  padding-bottom: 40%;
}
.tests .tests__tiles .tiles__list .tile--w3 .ratio-wrap .ratio .box-inner {
  left: auto;
  right: 0;
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  transform: translate(0, -50%) translateZ(0) scale(1, 1);
}
.tests .tests__tiles .tiles__list .tile--w3 .ratio-wrap .ratio .box-inner > span {
  padding-top: 45px;
}
.tests .tests__tiles .tiles__list .tile--w3 .ratio-wrap .ratio .box-inner .hashtag {
  text-transform: none;
}
@media (max-width: 1366px) {
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap {
    padding-bottom: 50%;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner > span {
    font-size: 18px;
    padding-top: 20px;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner strong {
    font-size: 40px;
    line-height: 44px;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner > img {
    max-width: 50px;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner .btn {
    margin-top: 10px;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner .hashtag {
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner > span {
    padding-top: 10px;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner .btn {
    margin-top: 0;
  }
}
@media (max-width: 860px) {
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner {
    max-width: 50%;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner > span {
    padding-top: 0;
    margin-bottom: 10px;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner strong {
    font-size: 30px;
    line-height: 1;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner > img {
    max-width: 35px;
    margin-bottom: 20px;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner .hashtag {
    margin-top: 20px;
    font-size: 14px;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner .btn {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap {
    padding-bottom: 350px;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio > div {
    background-position: 50% 50%;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner {
    max-width: 60%;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner .btn {
    padding: 18px 30px;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner .hashtag {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio > div {
    background-image: url('../img/tests/big-tile-mobile.jpg') !important;
  }
  .tests .tests__tiles .tiles .tile--w3 .ratio-wrap .ratio .box-inner {
    max-width: 100%;
  }
}
.tests-register {
  background: url('../img/tests-register/main_bg-new.jpg') 50% 50% / cover no-repeat;
  height: auto;
}
@media (max-width: 1024px) {
  .tests-register {
    background: url('../img/tests-register/main_bg-new-mobile.jpg') 50% 50% / cover no-repeat;
  }
}
.tests-register #header {
  background-color: transparent;
  position: static;
}
.tests-register #header #logo {
  background-color: inherit;
}
.tests-register #header #nav-right,
.tests-register #header #state-change-container,
.tests-register #header #top-nav,
.tests-register #header #nav-main {
  display: none!important;
}
.tests-register #content {
  padding-top: 0;
}
.tests-register .top-nav {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 103;
}
.tests-register .top-nav .menu__item {
  display: inline-block;
  vertical-align: middle;
  padding-right: 30px;
}
.tests-register .top-nav .menu__item a {
  font-family: bebas, arial, sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: .05em;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.tests-register .top-nav .menu__item a:hover {
  color: #f8541f;
}
.tests-register .top-nav .menu__item--icon {
  padding: 0 3px;
}
.tests-register .top-nav .menu__item--icon a img {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  filter: alpha(opacity=70);
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.tests-register .top-nav .menu__item--icon a:hover img {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.tests-register .top-nav .menu__item--fb a img {
  height: 20px;
}
.tests-register .tests {
  margin-top: -55px;
  margin-bottom: 40px;
}
.tests-register .tests__header {
  height: auto;
  margin-bottom: 50px;
}
.tests-register .tests__header h2 {
  font-family: ainslie, arial, sans-serif;
  position: static;
  transform: none;
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .05em;
  max-width: none;
}
.tests-register .tests__header h2 .orange {
  color: #f8541f;
}
.tests-register .tests__form {
  max-width: 990px;
  margin: 0 auto;
}
.tests-register .tests__form form {
  width: 100%;
}
.tests-register .tests__form form .input-validate-msg {
  font-family: montserratlight, arial, sans-serif;
  letter-spacing: .1em;
  font-size: 12px;
  color: red;
  position: absolute;
  left: 0;
  bottom: -20px;
}
.tests-register .tests__form form .input-validate-msg span {
  margin-top: 5px;
  display: block;
}
.tests-register .tests__form form .input,
.tests-register .tests__form form select {
  height: 50px;
  width: 100%;
  border: 1px solid #e2d1c0;
  color: #a69687;
  font-family: montserratlight, arial, sans-serif;
  letter-spacing: .17em;
  padding: 0 20px;
  text-transform: uppercase;
  box-shadow: none!important;
}
.tests-register .tests__form form .input.input--half,
.tests-register .tests__form form select.input--half {
  width: 50%;
  float: left;
}
.tests-register .tests__form form .input.input--half + .input--half,
.tests-register .tests__form form select.input--half + .input--half {
  border-left-width: 0;
  margin-bottom: 10px;
}
.tests-register .tests__form form .input.input--text-center,
.tests-register .tests__form form select.input--text-center {
  text-align: center;
}
.tests-register .tests__form form .input.ng-invalid:not(.ng-pristine),
.tests-register .tests__form form select.ng-invalid:not(.ng-pristine) {
  background: rgba(255, 0, 0, 0.2);
}
.tests-register .tests__form form .input-container .input-prefix {
  width: 50px;
  height: 50px;
  line-height: 50px;
  float: left;
  vertical-align: middle;
  font-family: montserratlight, arial, sans-serif;
  letter-spacing: .17em;
  padding-left: 20px;
  border: solid #e2d1c0;
  border-width: 1px 0 1px 1px;
  margin: 5px 0;
}
.tests-register .tests__form form .input-container .input {
  width: calc(100% - 50px);
  border-left: 0;
}
.tests-register .tests__form form textarea {
  background-attachment: local;
  background-image: linear-gradient(to left, #f5eee7 1px, transparent 10px), repeating-linear-gradient(#f5eee7, #f5eee7 50px, #d7c5b4 50px, #d7c5b4 51px, #f5eee7 51px);
  line-height: 51px;
  border: 0;
  width: 100%;
  font-size: 14px;
  color: #ac9e90;
  font-family: montserratlight, arial, sans-serif;
  letter-spacing: .1em;
  resize: none;
  box-shadow: none!important;
}
.tests-register .tests__form form .checkbox-container {
  zoom: 1;
}
.tests-register .tests__form form .checkbox-container:before {
  content: '';
  display: block;
}
.tests-register .tests__form form .checkbox-container:after {
  content: '';
  display: table;
  clear: both;
}
.tests-register .tests__form form .checkbox-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;
}
.tests-register .tests__form form .checkbox-container input[type="checkbox"] + label {
  height: 50px;
  border: 1px solid #e2d1c0;
  display: block;
  width: calc(100% - 75px);
  float: left;
  padding-left: 50px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  cursor: pointer;
  line-height: 50px;
  font-size: 12px;
  font-family: montserratlight, arial, sans-serif;
}
.tests-register .tests__form form .checkbox-container input[type="checkbox"] + label > a {
  text-decoration: underline;
  color: #000;
}
.tests-register .tests__form form .checkbox-container input[type="checkbox"] + label:before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  width: 32px;
  border: solid #e2d1c0;
  border-width: 1px 1px 1px 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  background: url('../img/tests-register/icon-thick.svg') 50% 50% / contain no-repeat;
  background-size: 0;
}
.tests-register .tests__form form .checkbox-container input[type="checkbox"] + label:hover {
  background: #f5eee7;
}
.tests-register .tests__form form .checkbox-container input[type="checkbox"] + label:hover:before {
  background-size: 12px;
  opacity: .5;
}
.tests-register .tests__form form .checkbox-container input[type="checkbox"]:checked + label:before {
  background-size: 12px;
}
.tests-register .tests__form form .checkbox-container input[type="checkbox"]:checked + label:hover:before {
  opacity: 1;
}
.tests-register .tests__form form .checkbox-container input[type="checkbox"].ng-invalid:not(.ng-pristine) + label {
  background: rgba(255, 0, 0, 0.2);
}
.tests-register .tests__form form .checkbox-container .attachment {
  width: 75px;
  height: 50px;
  float: left;
  line-height: 50px;
  background: #f5eee7;
  border: solid #e2d1c0;
  border-width: 1px 1px 1px 0;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  font-family: montserratlight, arial, sans-serif;
}
.tests-register .tests__form form .checkbox-container .attachment a {
  color: #000;
}
.tests-register .tests__form form .checkbox-container .attachment a > img {
  vertical-align: middle;
  width: 16px;
  height: auto;
  margin: 0 0 5px 5px;
}
.tests-register .tests__form form.ng-submitted .checkbox-container input[type="checkbox"].ng-invalid + label {
  background: rgba(255, 0, 0, 0.2);
}
.tests-register .tests__form form.ng-submitted input.ng-invalid,
.tests-register .tests__form form.ng-submitted select.ng-invalid {
  background: rgba(255, 0, 0, 0.2);
}
.tests-register .tests__form .form__left,
.tests-register .tests__form .form__right {
  width: 50%;
  display: table-cell;
  padding: 50px 40px;
}
.tests-register .tests__form .form__left {
  background: #fff;
}
.tests-register .tests__form .form__right {
  background: #f5eee7;
}
.tests-register .tests__form .form__row {
  zoom: 1;
  margin-bottom: 30px;
  position: relative;
  font-weight: 600;
}
.tests-register .tests__form .form__row:before {
  content: '';
  display: block;
}
.tests-register .tests__form .form__row:after {
  content: '';
  display: table;
  clear: both;
}
.tests-register .tests__form .form__row p {
  font-size: 14px;
  line-height: 20px;
  font-family: montserratlight, arial, sans-serif;
  letter-spacing: .1em;
  margin-bottom: 25px;
}
.tests-register .tests__form .form__row:last-of-type {
  margin-bottom: 0;
}
.tests-register .tests__form .form__foot {
  width: 100%;
  text-align: center;
}
.tests-register .tests__form .form__foot .btn {
  padding: 20px 70px;
  text-transform: uppercase;
  color: #fff;
  background: #f8541f;
  font-size: 25px;
  letter-spacing: .2em;
  font-family: bebas, arial, sans-serif;
  border: 0;
  margin-top: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.tests-register .tests__form .form__foot .btn:hover {
  background: #fff;
  color: #f8541f;
}
.tests-register .tests__footer {
  text-align: center;
  max-width: 85%;
  margin: 50px auto;
}
.tests-register .tests__footer small {
  font-family: montserratlight, arial, sans-serif;
  letter-spacing: .1em;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  display: block;
  margin: 0 auto;
  max-width: 350px;
  margin-bottom: 15px;
}
.tests-register .tests__footer a {
  color: #fff;
  font-family: bebas, arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 20px;
  line-height: 20px;
  text-decoration: underline;
}
.tests-register .tests.tests--thank-you {
  margin: 40px auto 0 auto;
  max-width: 820px;
}
.tests-register .tests.tests--thank-you .tests__content p {
  font-family: montserratlight, arial, sans-serif;
  letter-spacing: .1em;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
.tests-register .tests.tests--thank-you .tests__content > img {
  width: 64px;
  height: 64px;
  display: block;
  margin: 100px auto;
}
@media (max-width: 640px) {
  .tests-register .tests.tests--thank-you .tests__content p {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .tests-register .tests {
    margin-top: 50px;
  }
  .tests-register .tests__content,
  .tests-register .tests__form {
    max-width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .tests-register #header #logo {
    height: 117px;
  }
  .tests-register #header #logo img {
    height: 117px;
  }
  .tests-register .tests {
    margin-top: 70px;
  }
  .tests-register .tests__header h2 {
    font-size: 40px;
  }
  .tests-register .tests__form form .form__left,
  .tests-register .tests__form form .form__right {
    border: none;
  }
}
@media (max-width: 840px) {
  .tests-register #content {
    padding-top: 117px;
  }
}
@media (max-width: 768px) {
  .tests-register .tests__form .form__left,
  .tests-register .tests__form .form__right {
    width: 100%;
    padding: 30px;
    display: block;
  }
  .tests-register .tests__form select.input.input--half {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .tests-register #header {
    text-align: center;
  }
  .tests-register #header #logo {
    height: 117px;
    position: static;
  }
  .tests-register #header #logo h1 {
    display: inline-block;
  }
  .tests-register #content {
    padding-top: 0;
  }
  .tests-register .top-nav {
    position: static;
    text-align: center;
    padding: 0 5%;
    margin-top: 15px;
  }
  .tests-register .top-nav .menu__item:not(.menu__item--icon) {
    display: block;
    padding-right: 0;
    margin-bottom: 10px;
  }
  .tests-register .tests__header {
    background-image: none!important;
    max-width: 85%;
    margin: 45px auto;
    text-align: center;
  }
  .tests-register .tests__header h2 {
    max-width: none;
  }
  .tests-register .tests__content p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .tests-register .tests__header h2 {
    font-size: 35px;
  }
  .tests-register .tests__form form .input.input--half {
    width: 100%;
  }
  .tests-register .tests__form form .input.input--half + .input--half {
    border-left-width: 1px;
  }
  .tests-register .tests__form form .checkbox-container input[type="checkbox"] + label {
    width: 100%;
    text-align: center;
    padding-left: 30px;
  }
  .tests-register .tests__form form .checkbox-container .attachment {
    width: 100%;
    border-left-width: 1px;
    margin-top: -1px;
  }
}
.photocontest #header {
  position: absolute;
}
@media screen and (max-width: 840px) {
  .photocontest #header {
    position: relative;
  }
}
.fbButton {
  position: absolute;
  top: -40px;
  left: 0;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.2em;
  padding: 15px 28px;
  color: #FFF;
  font-family: bebas, arial, sans-serif;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  background-color: #f8541f;
}
.fbButton:hover {
  background-color: #FFF;
  color: #000;
}
.photo-contest {
  width: 100%;
  display: block;
  position: relative;
}
.photo-contest .jsInview {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}
.photo-contest .preload-background-image {
  background: url('../img/loader.svg') center center / 100px no-repeat !important;
}
.photo-contest .slider-loader img {
  width: 200px;
  height: 200px;
}
.photo-contest h1,
.photo-contest h2,
.photo-contest h3,
.photo-contest h4 {
  font-family: ainslie, arial, sans-serif;
}
.photo-contest p {
  font-family: montserratlight, sans-serif;
}
.photo-contest a {
  font-family: bebas, arial, sans-serif;
  transition: all 300ms ease-in-out;
  color: #FFF;
}
.photo-contest a:hover {
  color: #f8541f;
}
.photo-contest input {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  color: #FFF;
  padding: 0 14px;
  letter-spacing: 0.17em;
  font-size: 13px;
  transition: all 300ms ease-in-out;
  text-align: center;
}
.photo-contest input:hover,
.photo-contest input:focus {
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.photo-contest input:focus {
  background-color: rgba(255, 255, 255, 0.1);
}
.photo-contest input.input--50 {
  width: 50%;
  float: left;
  display: inline-block;
}
.photo-contest input[type="submit"] {
  border: 0;
}
@keyframes zoomin {
  from {
    -webkit-transform: scale(1) translateZ(0) scale(1, 1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(2) translateZ(0) scale(1, 1);
    -moz-transform: scale(2);
    -o-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
  }
}
.photo-contest .js-inview {
  position: absolute;
  top: 50%;
}
.photo-contest .col50 {
  display: block;
  width: 50%;
  float: left;
  position: relative;
  min-height: 30px;
}
.photo-contest .confirmation-message {
  display: none;
  color: red;
  font-family: montserratlight, sans-serif;
  margin-bottom: 10px;
}
.photo-contest input.error {
  border-color: red;
}
.photo-contest .checkbox label.error:after {
  border-color: red;
}
.photo-contest .box {
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 99;
}
.photo-contest .box--topleft {
  top: -1px;
  left: -1px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.photo-contest .box--bottomleft {
  bottom: -1px;
  left: -1px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.photo-contest .box--topright {
  top: -1px;
  right: -1px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.photo-contest .box--bottomright {
  bottom: -1px;
  right: -1px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.photo-contest .box--middletop {
  top: -1px;
  left: 0;
  right: 30px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.photo-contest .box--middletop:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -30px;
  top: -1px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.photo-contest .box--middlebottom {
  bottom: -1px;
  left: 0;
  right: 30px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.photo-contest .box--middlebottom:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -30px;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.photo-contest .box--middle {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.photo-contest .box--middle span {
  font-size: 30px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
}
.photo-contest .checkbox {
  display: block;
  position: relative;
  margin-bottom: 10px;
  text-align: left;
  font-family: montserratlight, sans-serif;
}
.photo-contest .checkbox input[type="checkbox"] {
  display: none;
}
.photo-contest .checkbox input[type="checkbox"]:checked + label:after {
  border: 1px solid #f8541f;
}
.photo-contest .checkbox input[type="checkbox"]:checked + label:before {
  display: block;
  position: absolute;
  content: "\e908";
  color: #f8541f;
  left: 4px;
  top: 4px;
  font-size: 10px;
  font-family: 'icomoon' !important;
  line-height: 1;
}
.photo-contest .checkbox label {
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.photo-contest .checkbox label:after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  left: 0;
  top: 0;
}
.photo-contest .checkbox__label {
  display: inline-block;
  padding-left: 35px;
  font-size: 11px;
  letter-spacing: 0.17em;
  color: #FFF;
  line-height: 1.5;
}
.photo-contest .checkbox__label a {
  font-family: inherit;
  text-transform: none;
  text-decoration: underline;
}
.photo-contest .label--required {
  display: inline-block;
  color: red;
}
.photo-contest .btn {
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.2em;
  padding: 15px 28px;
  background-color: #000;
  color: #FFF;
  font-family: bebas, arial, sans-serif;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}
.photo-contest .btn:hover {
  color: #FFF;
}
.photo-contest .btn--orange {
  background-color: #f8541f;
}
.photo-contest .btn--orange:hover {
  background-color: #FFF;
  color: #000;
}
.photo-contest .btn--transparent {
  background-color: transparent;
  border: 1px solid #FFF;
  padding: 14px 27px;
}
.photo-contest .btn--transparent:hover {
  color: #f8541f;
  border: 1px solid #f8541f;
}
.photo-contest .btn--link,
.photo-contest .btn--link:hover {
  background-color: transparent;
  border-bottom: 1px solid #FFF;
  padding: 10px;
}
.photo-contest .btn--link:hover {
  color: #f8541f;
  border-bottom: 1px solid #f8541f;
}
.photo-contest .section {
  display: block;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px;
}
.photo-contest .section .container {
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.photo-contest .navigation {
  display: block;
  position: fixed;
  left: 35px;
  bottom: 30px;
  z-index: 999;
}
.photo-contest .navigation ul {
  display: block;
  list-style-type: none;
}
.photo-contest .navigation ul li {
  display: inline-block;
}
.photo-contest .navigation ul li a {
  border-bottom: 2px solid transparent;
}
.photo-contest .navigation ul li a.active {
  border-color: #f8541f;
}
.photo-contest .navigation a {
  display: block;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.12em;
}
.photo-contest .facebook-link {
  position: absolute;
  left: 0;
  top: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  height: 55px;
  width: 50px;
}
.photo-contest .facebook-link span {
  display: block;
  color: #FFF;
  font-size: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.photo-contest .facebook-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.photo-contest .header {
  display: block;
  position: relative;
  text-align: center;
  width: 90%;
  margin: 60px auto 50px auto;
}
.photo-contest .header h2 {
  color: #FFF;
  font-size: 51px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  display: block;
  margin-bottom: 10px;
}
.photo-contest .header p {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.17em;
  color: #a0a0a0;
}
.photo-contest .header p span {
  color: #f8541f;
  display: block;
}
.photo-contest .content {
  display: block;
  position: relative;
  width: 500px;
  margin: 0 auto 40px auto;
  text-align: center;
}
.photo-contest .content .btn {
  margin-top: 55px;
  margin-bottom: 25px;
}
.photo-contest .owl-carousel {
  width: 100%;
  display: block;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  position: relative;
}
.photo-contest .owl-carousel .item:not(.b-lazy) {
  background-size: cover;
}
.photo-contest .owl-carousel .item {
  width: 500px;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
}
.photo-contest .owl-carousel .item__half {
  width: 50%;
  float: left;
  transition: all 900ms cubic-bezier(0.42, 0, 0.04, 1.61);
}
.photo-contest .owl-carousel .item__half--left {
  transform: translateY(-100%);
}
.photo-contest .owl-carousel .item__half--right {
  transform: translateY(100%);
}
.photo-contest .owl-carousel .item a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.photo-contest .owl-buttons {
  font-size: 75px;
  line-height: 1;
  z-index: 9999;
}
.photo-contest .owl-buttons .owl-prev,
.photo-contest .owl-buttons .owl-next {
  position: absolute;
  top: 43%;
  color: #FFF;
  transition: all 300ms ease-in-out;
}
.photo-contest .owl-buttons .owl-prev:hover,
.photo-contest .owl-buttons .owl-next:hover {
  color: #f8541f;
}
.photo-contest .owl-buttons .owl-prev {
  left: -120px;
}
.photo-contest .owl-buttons .owl-next {
  right: -120px;
}
.photo-contest .owl-item.active .item__half--left {
  transform: translateY(0);
}
.photo-contest .owl-item.active .item__half--right {
  transform: translateY(0);
}
.photo-contest #sync1 .owl-buttons,
.photo-contest #sync2 .owl-buttons {
  font-size: 4.4vw;
}
.photo-contest ma-swiper {
  position: relative;
}
.photo-contest ma-swiper .swiper-button {
  right: 0;
  transform: translateX(13vw) translateY(-100%);
  width: 13vw;
  height: 13vw;
  top: -40px;
  margin-top: 0;
  left: 50%;
  z-index: 9999;
  background: none;
}
.photo-contest ma-swiper .swiper-button > span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #FFF;
  font-size: 80px;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.photo-contest ma-swiper .swiper-button > span:hover {
  color: #f8541f;
}
.photo-contest ma-swiper .swiper-button.swiper-button-prev {
  transform: translateX(-26vw) translateY(-200%);
}
.photo-contest .swiper-container {
  margin: auto;
  z-index: 99;
  height: calc(26vw + 40px);
  width: 100%;
  -webkit-transform: translateX(-6.5vw) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-6.5vw);
  transform: translateX(-6.5vw);
}
.photo-contest .swiper-container .swiper-slide {
  position: relative;
  height: 13vw;
  width: 13vw;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.photo-contest .swiper-container .swiper-slide .item__photo {
  position: absolute;
  height: 100%;
  -webkit-transform: translateY(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  opacity: 0 !important;
}
.photo-contest .swiper-container .swiper-slide.swiper-slide-active {
  width: 26vw;
  height: calc(26vw + 40px);
}
.photo-contest .swiper-container .swiper-slide.swiper-slide-active .item__photo {
  height: calc(100% - 40px);
  -webkit-transform: translateY(0) translateZ(0) scale(1, 1);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-backface-visibility: hidden;
  opacity: 1!important;
}
.photo-contest .swiper-container .swiper-slide.swiper-slide-active .connection {
  opacity: 1;
}
.photo-contest .swiper-container .swiper-slide.swiper-slide-next .item__photo {
  -webkit-transform: translateY(0) translateZ(0) scale(1, 1);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-backface-visibility: hidden;
  opacity: 1!important;
}
.photo-contest .swiper-container .swiper-slide.swiper-slide-next + .swiper-slide .item__photo {
  -webkit-transform: translateY(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-backface-visibility: hidden;
  opacity: 1!important;
}
.photo-contest .swiper-container .swiper-slide.swiper-slide-previous .item__photo {
  -webkit-transform: translateY(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-backface-visibility: hidden;
  opacity: 1!important;
}
.photo-contest .swiper-container .swiper-slide.swiper-slide-prev-prev .item__photo {
  -webkit-transform: translateY(0) translateZ(0) scale(1, 1);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-backface-visibility: hidden;
  opacity: 1!important;
}
.photo-contest .swiper-container .item__photo {
  height: 500px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.photo-contest #sync2 {
  position: absolute;
  top: 0;
  height: 26vw;
  width: 100%;
}
.photo-contest #sync2 .item {
  width: 13vw;
  height: 13vw;
  cursor: pointer;
}
.photo-contest #sync2 .owl-wrapper {
  width: 100% !important;
  height: 26vw;
  transform: none !important;
}
.photo-contest #sync2 .owl-item {
  display: block;
  width: 16vw !important;
  height: 16vw;
  float: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.photo-contest #sync2 .owl-item:nth-child(1) {
  margin-left: -31vw;
}
.photo-contest #sync2 .owl-item:nth-child(2) {
  margin-top: 13vw;
  margin-left: -18vw;
}
.photo-contest #sync2 .owl-item:nth-child(3) {
  margin-left: 21vw;
}
.photo-contest #sync2 .owl-item:nth-child(4) {
  margin-left: 34vw;
  margin-top: 13vw;
}
.photo-contest .form-wrap {
  display: block;
  position: relative;
  width: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 500px;
  transition: all 300ms ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: auto;
}
.photo-contest .form-wrap:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.photo-contest .form-wrap__header {
  display: block;
  position: absolute;
  width: 90%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  top: 55px;
}
.photo-contest .form-wrap__header h3 {
  font-size: 25px;
  line-height: 1.2;
  color: #FFF;
  margin-bottom: 30px;
  font-family: montserratlight, sans-serif;
  letter-spacing: 0.17em;
}
.photo-contest .form-wrap__header p {
  font-size: 13px;
  letter-spacing: 0.17em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
.photo-contest .btns-wrap {
  display: block;
  width: 100%;
}
.photo-contest .btns-wrap .btn:not(:last-child) {
  margin-right: 25px;
}
.photo-contest .addphoto {
  display: block;
  width: 100%;
  padding: 70px 30px;
  cursor: pointer;
  position: relative;
}
.photo-contest .addphoto h3 {
  display: block;
  color: #FFF;
  line-height: 1.2;
  font-size: 21px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.photo-contest .addphoto span {
  font-size: 70px;
  color: #FFF;
  margin-bottom: 70px;
  display: block;
}
.photo-contest .addphoto p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.17em;
  line-height: 1.4;
  margin-bottom: 20px;
}
.photo-contest .addphoto .btn {
  position: absolute;
  left: 0;
  margin: auto;
  top: 370px;
  right: 0;
  width: 130px;
}
.photo-contest .manipulatephoto {
  display: block;
  width: 100%;
  height: 100%;
}
.photo-contest .signphoto {
  display: block;
  z-index: 99;
  width: 100%;
  height: 100%;
}
.photo-contest .signphoto__inputs {
  bottom: 30px;
  top: auto;
  width: 100%;
  position: absolute;
  z-index: 999;
}
.photo-contest .signphoto__inputs .col50 {
  padding: 30px;
}
.photo-contest .connection {
  display: block;
  position: absolute;
  bottom: -15px;
  font-size: 15px;
  letter-spacing: 0.12em;
  line-height: 1.2;
  font-family: ainslie, arial, sans-serif;
  width: 100%;
  padding: 20px;
  margin: auto;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.photo-contest .connection__name {
  display: inline-block;
  float: left;
  width: 50%;
  color: #f8541f;
}
.photo-contest .connection__name--left {
  text-align: right;
  padding-right: 30px;
}
.photo-contest .connection__name--right {
  text-align: left;
  padding-left: 30px;
}
.photo-contest .connection .add {
  font-size: 20px;
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  color: #FFF;
}
.photo-contest #signup {
  overflow: hidden;
  position: relative;
}
.photo-contest #signup .bg_container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.photo-contest #signup .bg-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 200%;
  min-height: 200%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
@media (min-width: 1024px) {
}
.photo-contest #signup .bg-blur:after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.photo-contest #signup .header {
  margin-top: 130px;
  margin-bottom: 20px;
}
.photo-contest #signup .header p {
  margin-top: 20px;
  font-size: 16px;
}
.photo-contest #signup .win__box {
  width: 100%;
  font-family: montserratlight, sans-serif;
  margin-bottom: 110px;
}
.photo-contest #signup .win__box__conterner {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  color: #FFF;
}
.photo-contest #signup .win__box__conterner:after {
  content: '';
  display: table;
  clear: both;
}
.photo-contest #signup .win__box__conterner .winner--best {
  width: auto;
  background-color: #f8541f;
  padding: 20px 10px;
  margin: 40px 10px 0;
  font-size: 23px;
  text-align: center;
}
.photo-contest #signup .win__box__conterner .winner--best strong {
  font-weight: 600;
}
.photo-contest #signup .win__box__conterner .winner {
  width: 50%;
  float: left;
}
.photo-contest #signup .win__box__conterner .winner ul {
  padding: 30px 20px 10px;
  font-size: 14px;
}
.photo-contest #signup .win__box__conterner .winner li {
  padding-bottom: 11px;
  font-family: montserratlight, sans-serif;
}
.photo-contest #signup .win__box__conterner .winner li .data {
  width: 63px;
  display: inline-block;
}
.photo-contest #signup .win__box__conterner .winner li .name {
  font-weight: 600;
  padding-left: 14px;
}
.photo-contest .content--tab1 .col50 {
  height: 100%;
}
.photo-contest .content--tab1 .addphoto {
  height: 100%;
}
.photo-contest .content--tab3 .form-wrap:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.photo-contest .content--tab4 {
  margin-bottom: 200px;
}
.photo-contest .content--tab4 .form-wrap {
  padding: 50px;
}
.photo-contest .content--tab4 .form-wrap__header {
  top: auto;
  position: relative;
  width: 100%;
}
.photo-contest .content--tab4 .form-wrap__header h3 {
  font-size: 30px;
  margin-bottom: 20px;
}
.photo-contest .content--tab4 .form-wrap__header p {
  margin-bottom: 25px;
}
.photo-contest .content--tab4 input {
  margin-bottom: 15px;
}
.photo-contest .content--tab4 input[type="submit"] {
  position: absolute;
  font-size: 25px;
  top: 100%;
  left: 0;
  right: 0;
  margin: 50px auto 0 auto;
  padding: 15px 33px;
}
.photo-contest #gallery .container {
  overflow: hidden;
}
.photo-contest #gallery .header {
  margin: 180px auto 40px auto;
}
.photo-contest #gallery .header p {
  color: #FFF;
}
.photo-contest #gallery .content {
  width: 100%;
  height: 100%;
}
.photo-contest #gallery .btn--link {
  margin-top: 60px;
}
.photo-contest #gallery .btn--close {
  display: none;
}
.photo-contest #gallery.section--gallery {
  background-color: #282828;
  background-size: 0;
  position: fixed;
  height: 100%;
  top: 0;
  z-index: 9999;
}
.photo-contest #gallery.section--gallery .btn--close {
  display: block;
  position: absolute;
  font-size: 70px;
  right: 235px;
  top: 145px;
  z-index: 99;
}
.photo-contest .gallery-container {
  width: 90%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
.photo-contest .owl-item {
  width: 12.5%;
}
.photo-contest .gallery-full .item {
  height: 100%;
  width: auto;
}
.photo-contest .gallery-full .owl-prev,
.photo-contest .gallery-full .owl-next {
  background-color: #282828;
  width: 12.5%;
}
.photo-contest .gallery-full .owl-prev .ratio-wrap,
.photo-contest .gallery-full .owl-next .ratio-wrap {
  position: relative;
  padding-bottom: 100%;
  display: block;
}
.photo-contest .gallery-full .owl-prev .ratio-wrap .ratio-inner,
.photo-contest .gallery-full .owl-next .ratio-wrap .ratio-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.photo-contest .gallery-full .owl-prev .icon,
.photo-contest .gallery-full .owl-next .icon {
  width: 75px;
  height: 75px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}
.photo-contest .gallery-full .owl-prev {
  left: 12.5%;
  top: 25%;
}
.photo-contest .gallery-full .owl-next {
  right: 25%;
  top: 50%;
  width: 12.5%;
  -webkit-transform: translate(-1px, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(-1px, 0);
  transform: translate(-1px, 0);
  -webkit-transform: translate(-1px, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-1px, 0) translateZ(0) scale(1, 1);
  -o-transform: translate(-1px, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(-1px, 0) translateZ(0) scale(1, 1);
  transform: translate(-1px, 0) translateZ(0) scale(1, 1);
}
.photo-contest .gallery-full .gallery-full__item {
  position: relative;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.photo-contest .gallery-full .gallery-full__item .ratio-wrap {
  position: relative;
  padding-bottom: 100%;
}
.photo-contest .gallery-full .gallery-full__item .ratio-wrap .ratio {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.photo-contest .gallery-full .gallery-full__item a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: 400ms ease-in-out;
}
.photo-contest .gallery-full .gallery-full__item a:hover {
  opacity: 0;
}
.photo-contest .gallery-close {
  display: block;
  position: absolute;
  z-index: 99;
  width: 12.5%;
  right: 0;
}
.photo-contest .gallery-close .ratio-wrap {
  display: block;
  position: relative;
  padding-bottom: 100%;
}
.photo-contest .gallery-close .ratio-wrap .ratio-inner {
  background-color: #282828;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.photo-contest .gallery-close .icon {
  font-size: 75px;
  width: 75px;
  height: 75px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}
.photo-contest .canvas-container {
  position: relative;
}
.photo-contest .canvas-container .fileChange {
  display: none;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.photo-contest .canvasDeco {
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  /* background-image: url(data:image/gif;base64,R0lGODlhCgAKAIAAAOLi4v///yH5BAAHAP8ALAAAAAAKAAoAAAIRhB2ZhxoM3GMSykqd1VltzxQAOw==); */
  display: block;
  width: 249px;
  height: 500px;
  z-index: 1;
}
.photo-contest #canvasContainer1,
.photo-contest #canvasContainer2 {
  position: relative;
  display: block;
  width: 249px;
  height: 500px;
  z-index: 3;
  background-color: transparent;
}
.photo-contest #temp {
  width: 800px;
  height: 400px;
  border: 1px solid red;
}
.photo-contest #image-download {
  position: absolute;
  top: 440px;
  width: 808px;
  left: calc(-354vw);
}
.photo-contest .press {
  display: inline-block;
  padding: 15px;
  background-color: teal;
  border: 1px solid teal;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}
.photo-contest .drop {
  background-color: teal;
}
.photo-contest .drop.set .btn {
  top: auto;
  bottom: -45px;
}
.photo-contest .fileChange {
  display: none;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.photo-contest #imgMerge {
  transform: scale(1, 1);
  position: absolute;
  width: 808px;
  height: 404px;
  top: 0;
  left: calc(-354vw);
}
.photo-contest #signup > .canvas-container:first-child {
  display: none;
}
.mfp-wrap {
  z-index: 99999;
}
.mfp-bg {
  z-index: 99999;
}
.mfp-figure:after {
  content: none!important;
}
.mfp-arrow,
.mfp-close {
  opacity: 1;
  z-index: 9999;
  display: block;
  color: #FFF;
  font-size: 75px;
  font-family: 'icomoon' !important;
  line-height: 1;
  cursor: pointer;
}
.mfp-arrow:hover,
.mfp-close:hover {
  color: #f8541f;
}
.mfp-arrow:after,
.mfp-close:after {
  border: 0;
  cursor: pointer;
}
.mfp-arrow-left:before,
.mfp-arrow-right:before {
  display: none;
}
.mfp-arrow-left {
  left: -120px;
}
.mfp-arrow-right {
  right: -120px;
}
.mfp-arrow-right:after,
.mfp-arrow-left:after {
  margin: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.mfp-arrow-right:after {
  content: "\e901";
}
.mfp-arrow-left:after {
  content: "\e900";
}
body button.mfp-close {
  font-size: 0;
  line-height: 0;
  width: auto!important;
}
body button.mfp-close:after {
  display: block;
  cursor: pointer;
  content: "\e902";
  position: absolute;
  top: -50px;
  right: -100px;
  font-size: 75px;
}
.mfp-bottom-bar {
  display: none;
}
body img.mfp-img {
  padding: 0;
  margin: 20px auto 0 auto;
}
.mfp-content {
  margin-top: 100px;
}
@media screen and (max-width: 1366px) {
  .photo-contest .gallery-container .gallery-close {
    width: 14.3%;
  }
  .photo-contest .gallery-container .owl-prev,
  .photo-contest .gallery-container .owl-next {
    width: 14.3%;
  }
  .photo-contest .gallery-container .owl-prev {
    left: 14.3%;
  }
  .photo-contest .gallery-container .owl-next {
    right: 14.3%;
  }
}
@media screen and (max-width: 1260px) {
  .photo-contest br {
    display: none;
  }
  .photo-contest .header {
    width: 80%;
  }
  .photo-contest .header h2 {
    line-height: 1.05;
  }
  .photo-contest #signup .header {
    margin-top: 50px;
    margin-bottom: 60px;
  }
  .photo-contest #signup .btn--link {
    margin-top: 75px;
    margin-bottom: 35px;
  }
  .photo-contest #gallery .header {
    margin: 60px auto 135px auto;
  }
}
@media screen and (max-width: 1024px) {
  .mfp-content {
    margin-top: 0;
  }
  .mfp-content .mfp-close {
    right: -40px;
    top: 60px;
  }
  .mfp-content .mfp-close:after {
    right: 0;
    top: -40px;
    font-size: 25px;
  }
  .photo-contest #gallery .header {
    margin: 60px auto;
  }
  .photo-contest .gallery-container .owl-prev,
  .photo-contest .gallery-container .owl-next,
  .photo-contest .gallery-container .gallery-close {
    width: 16.666%;
    text-align: center;
  }
  .photo-contest .gallery-container .owl-prev {
    top: 25%;
    left: 16.666%;
  }
  .photo-contest .gallery-container .owl-next {
    right: 16.666%;
  }
}
@media screen and (max-width: 786px) {
  .photo-contest .navigation {
    left: 30px;
    bottom: 25px;
  }
  .photo-contest #owl-contest .owl-prev {
    left: -75px;
  }
  .photo-contest #owl-contest .owl-next {
    right: -75px;
  }
  .photo-contest #owl-contest .owl-item,
  .photo-contest #owl-contest .item {
    width: 62vw;
    height: 62vw;
    margin: auto;
  }
  .photo-contest #owl-contest .owl-item__half,
  .photo-contest #owl-contest .item__half {
    width: 50%;
  }
  .photo-contest #sync1 {
    margin: auto;
    z-index: 99;
    width: 62vw;
    height: 62vw;
    padding-top: 5px;
  }
  .photo-contest #sync1 .item {
    width: 62vw;
    height: 62vw;
  }
  .photo-contest #sync1 .item__photo {
    height: 100%;
  }
  .photo-contest #sync1 .owl-buttons {
    font-size: 75px;
  }
  .photo-contest #sync1 .owl-prev {
    left: -100px;
  }
  .photo-contest #sync1 .owl-next {
    right: -100px;
  }
  .photo-contest #sync2 {
    position: relative;
    top: 0;
    height: 15.5vw;
    width: 62vw;
    margin: auto;
  }
  .photo-contest #sync2 .item {
    width: 15.5vw;
    height: 15.5vw;
  }
  .photo-contest #sync2 .owl-item {
    transform: none;
    margin-left: auto;
  }
  .photo-contest #sync2 .owl-item:nth-child(2) {
    margin-top: 0;
    margin-left: -15.5vw;
  }
  .photo-contest #sync2 .owl-item:nth-child(3) {
    margin-top: 0;
    margin-left: 0;
  }
  .photo-contest #sync2 .owl-item:nth-child(4) {
    margin-top: 0;
    margin-left: 15.5vw;
  }
  .photo-contest #signup .btn--link {
    margin-top: 30px;
  }
  .photo-contest .gallery-container .owl-prev,
  .photo-contest .gallery-container .owl-next,
  .photo-contest .gallery-container .gallery-close {
    width: 16.666%;
  }
  .photo-contest .gallery-container .owl-prev {
    left: 16.666%;
    top: 16.666%;
  }
  .photo-contest .gallery-container .owl-next {
    right: 16.666%;
  }
}
@media screen and (max-width: 640px) {
  .mfp-wrap .mfp-close {
    top: 20px;
    right: 10px;
  }
  .photo-contest #owl-contest .owl-prev {
    left: -50px;
  }
  .photo-contest #owl-contest .owl-next {
    right: -50px;
  }
  .photo-contest .small-gallery .swiper-container {
    transform: none;
    height: auto;
  }
  .photo-contest .small-gallery .swiper-slide {
    transform: none!important;
    height: auto!important;
  }
  .photo-contest .small-gallery .swiper-slide .item__photo {
    height: 280px!important;
    width: 280px;
    transform: none!important;
    position: static;
    margin: 0 auto;
  }
  .photo-contest .small-gallery .swiper-button {
    transform: none!important;
    top: 0;
  }
  .photo-contest .small-gallery .swiper-button > span {
    padding-top: 15px;
    font-size: 35px;
  }
  .photo-contest .small-gallery .swiper-button.swiper-button-prev {
    left: -100px;
  }
  .photo-contest .small-gallery .swiper-button.swiper-button-next {
    right: -100px;
    left: auto;
  }
}
@media screen and (max-width: 600px) {
  .photo-contest .section {
    padding: 10px;
  }
  .photo-contest .header {
    margin: 65px 0 40px 0;
    width: 100%;
    padding: 0 20px;
  }
  .photo-contest .header h2 {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .photo-contest .header p {
    font-size: 14px;
  }
  .photo-contest .content .btn {
    margin-top: 105px;
    margin-bottom: 45px;
  }
  .photo-contest .content label.btn {
    margin: 0 auto;
  }
  .photo-contest #owl-contest .owl-next,
  .photo-contest #owl-contest .owl-prev {
    font-size: 45px;
    top: calc(100% + 30px);
  }
  .photo-contest #owl-contest .owl-next {
    right: 20vw;
  }
  .photo-contest #owl-contest .owl-prev {
    left: 20vw;
  }
  .photo-contest #owl-contest .owl-item,
  .photo-contest #owl-contest .item {
    width: 100%;
  }
  .photo-contest #owl-contest .item__half {
    width: 50%;
  }
  .photo-contest #signup .header {
    margin-top: 70px;
  }
  .photo-contest #signup .addphoto .btn {
    width: 85%;
    padding: 15px 0;
  }
  .photo-contest #gallery .header {
    margin: 60px auto 50px 0;
  }
  .photo-contest #gallery .content {
    padding: 0 20px;
  }
  .photo-contest #gallery .btn--link {
    margin-bottom: 60px;
  }
  .photo-contest .btn--link {
    margin-bottom: 60px;
  }
  .photo-contest #sync1 {
    width: 100%;
  }
  .photo-contest #sync1 .item {
    width: 100%;
  }
  .photo-contest #sync1 .owl-next,
  .photo-contest #sync1 .owl-prev {
    font-size: 45px;
    top: -80px;
  }
  .photo-contest #sync1 .owl-next {
    right: 20vw;
  }
  .photo-contest #sync1 .owl-prev {
    left: 20vw;
  }
  .photo-contest #sync2 {
    display: none !important;
  }
  .photo-contest .gallery-container {
    margin-bottom: 150px;
  }
  .photo-contest .gallery-container .gallery-close,
  .photo-contest .gallery-container .owl-prev,
  .photo-contest .gallery-container .owl-next {
    width: 50%;
  }
  .photo-contest .gallery-container .gallery-close span,
  .photo-contest .gallery-container .owl-prev span,
  .photo-contest .gallery-container .owl-next span {
    font-size: 50px;
  }
  .photo-contest .gallery-container .owl-next,
  .photo-contest .gallery-container .owl-prev {
    position: static;
    float: left;
  }
  .canvasDeco,
  #canvasContainer1,
  #canvasContainer2,
  .lower-canvas,
  .upper-canvas,
  .canvas-container {
    width: 100% !important;
    height: 100% !important;
  }
}
@media screen and (max-width: 550px) {
  .photo-contest .navigation {
    text-align: center;
    font-size: 14px;
    left: 0;
    right: 0;
  }
  .photo-contest .navigation a {
    font-size: 14px;
    padding: 10px 5px;
  }
  .photo-contest .content {
    width: 100%;
    padding: 0 20px;
    margin: auto;
  }
  .photo-contest .signphoto__inputs .col50 {
    padding: 0 10px;
  }
  .photo-contest .content--tab1 .btns-wrap {
    text-align: center;
  }
  .photo-contest .content--tab1 .btns-wrap .btn {
    margin-top: 0;
  }
  .photo-contest .content--tab1 .btns-wrap .btn:not(:last-child) {
    margin-right: 25px;
    margin-left: 25px;
    margin-bottom: 20px;
  }
  .photo-contest .content--tab3 .btns-wrap .btn {
    margin-top: 25px;
  }
  .photo-contest .content--tab4 .box {
    display: none;
  }
  .photo-contest .content--tab4 .form-wrap__header h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .photo-contest .content--tab4 .form-wrap {
    border: 0;
    height: auto;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
  }
  .photo-contest .content--tab4 .form-wrap:hover {
    background-color: transparent;
  }
  .photo-contest .content--tab4 input[type="submit"] {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 50px 0;
  }
  .photo-contest .addphoto {
    padding: 40px 5px;
  }
  .photo-contest .addphoto h3 {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .photo-contest .addphoto .btn {
    top: 230px;
  }
  .photo-contest .addphoto p {
    display: none;
  }
  .photo-contest .btns-wrap {
    margin-top: 40px;
  }
  .photo-contest .form-wrap {
    width: 100%;
    height: 85vw;
    margin-bottom: 25px;
  }
  .photo-contest #signup .win__box {
    margin-bottom: 50px;
  }
  .photo-contest #signup .win__box__conterner .winner--best {
    margin-bottom: 30px;
  }
  .photo-contest #signup .win__box__conterner .winner {
    width: 100%;
  }
  .photo-contest #signup .win__box__conterner .winner ul {
    padding: 0 20px;
  }
  .photo-contest #signup .win__box__conterner .winner li {
    width: 253px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 400px) {
  .photo-contest .btn {
    letter-spacing: 0.1em;
  }
  .photo-contest .addphoto .btn {
    top: 200px;
  }
}
@media screen and (max-width: 360px) {
  .photo-contest #owl-contest .owl-next,
  .photo-contest #owl-contest .owl-prev {
    top: 115%;
  }
}
.fun .info-contest {
  padding: 15px 20px;
}
@media (min-width: 1200px) {
  .fun .info-contest {
    padding: 20px;
  }
}
.fun .info-contest p {
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 1200px) {
  .fun .info-contest p {
    font-size: 15px;
  }
}
.fun .info-contest p strong {
  font-family: montserratregular, arial, sans-serif;
}
.fun p {
  font-family: montserratlight, arial, sans-serif;
  font-size: 18px;
}
.fun .fun__header {
  height: 697px;
  background: url("../img/fun/fun-header-new.jpg") 50% 50% / auto no-repeat;
  position: relative;
  color: #fff;
  margin-bottom: 10px;
}
.fun .fun__header .fun__header-inner {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
.fun .fun__header .fun__header-inner h2 {
  font-size: 95px;
  letter-spacing: 20px;
  font-family: bebas, arial, sans-serif;
}
.fun .fun__header .fun__header-inner p {
  margin-top: 35px;
  line-height: 24px;
  letter-spacing: 4px;
}
.fun .fun__header .fun__header-inner img {
  margin-top: 54px;
}
@media (max-width: 1024px) {
  .fun .fun__header {
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .fun .fun__header .fun__header-inner h2 {
    font-size: 65px;
    letter-spacing: 10px;
  }
}
@media (max-width: 540px) {
  .fun .fun__header .fun__header-inner h2 {
    font-size: 40px;
  }
  .fun .fun__header .fun__header-inner p {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .17em;
  }
}
.fun .box-winner {
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: 100px;
  margin: 10px;
}
.fun .box-winner > img {
  max-width: 30px;
  display: block;
  margin: 0 auto;
}
.fun .box-winner > span {
  font-family: montserratlight, arial, sans-serif;
  font-size: 12px;
  color: #FFF;
  padding-top: 10px;
  display: block;
  text-align: center;
}
@media (max-width: 990px) {
  .fun .box-winner {
    left: 2%;
    top: 2%;
  }
  .fun .box-winner > img {
    max-width: 20px;
  }
  .fun .box-winner > span {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .fun .box-winner > span {
    display: none;
  }
}
.fun #zabawy,
.fun .container--barbie,
.fun .container--cars {
  padding: 0 10px;
}
.fun #zabawy .ob-weather,
.fun .container--barbie .ob-weather,
.fun .container--cars .ob-weather {
  text-align: center;
}
.fun #zabawy .ob-weather .weather,
.fun .container--barbie .ob-weather .weather,
.fun .container--cars .ob-weather .weather {
  margin-bottom: 40px;
}
.fun #zabawy .ob-weather .weather__val,
.fun .container--barbie .ob-weather .weather__val,
.fun .container--cars .ob-weather .weather__val {
  font-family: montserratlight, arial, sans-serif;
  font-size: 54px;
  color: #000;
}
.fun #zabawy .ob-weather .weather__celcius,
.fun .container--barbie .ob-weather .weather__celcius,
.fun .container--cars .ob-weather .weather__celcius {
  width: 13px;
  height: 13px;
  border-radius: 100%;
  border: 3px solid #000;
  display: inline-block;
  vertical-align: top;
}
.fun #zabawy .ob-weather .weather__icon,
.fun .container--barbie .ob-weather .weather__icon,
.fun .container--cars .ob-weather .weather__icon {
  background-size: contain;
  background-position: 50% 50%;
  display: inline-block;
  width: 55px;
  height: 40px;
}
.fun #zabawy .ob-weather .weather__icon--sunny,
.fun .container--barbie .ob-weather .weather__icon--sunny,
.fun .container--cars .ob-weather .weather__icon--sunny {
  background-image: url('../img/bts/weather-dark.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-y: -16px;
}
.fun #zabawy .ob-weather .weather__icon--rainy,
.fun .container--barbie .ob-weather .weather__icon--rainy,
.fun .container--cars .ob-weather .weather__icon--rainy {
  background-image: url('../img/bts/rain-dark.png');
  background-repeat: no-repeat;
  background-position-y: 0;
}
.fun #zabawy .ob-weather .weather__city,
.fun .container--barbie .ob-weather .weather__city,
.fun .container--cars .ob-weather .weather__city {
  font-family: montserratlight, arial, sans-serif;
  text-transform: uppercase;
  color: #000;
  padding-top: 5px;
  letter-spacing: .17em;
  font-size: 16px;
  display: block;
  text-align: center;
}
.fun #zabawy .ob-weather a,
.fun .container--barbie .ob-weather a,
.fun .container--cars .ob-weather a {
  max-width: 510px;
  margin: auto;
}
.fun #zabawy .ob-weather a .btn,
.fun .container--barbie .ob-weather a .btn,
.fun .container--cars .ob-weather a .btn {
  background-color: #fff;
  border: 1px solid #730000;
  letter-spacing: 4px;
  font-size: 18px;
  line-height: 24px;
  height: auto;
  max-width: 510px;
  margin: 107px auto 0;
  color: #000;
  padding: 25px 10px;
  transition: background-color 0.5s, color 0.5s;
}
.fun #zabawy .ob-weather a .btn:hover,
.fun .container--barbie .ob-weather a .btn:hover,
.fun .container--cars .ob-weather a .btn:hover {
  background-color: #730000;
  color: #fff;
  transition: all 0.5s;
}
.fun #zabawy .ob-weather .tile,
.fun .container--barbie .ob-weather .tile,
.fun .container--cars .ob-weather .tile {
  margin-top: 110px;
  padding: 10px;
}
.fun #zabawy .ob-weather p,
.fun .container--barbie .ob-weather p,
.fun .container--cars .ob-weather p {
  line-height: 21px;
}
.fun #zabawy .ratio-wrap .ratio a,
.fun .container--barbie .ratio-wrap .ratio a,
.fun .container--cars .ratio-wrap .ratio a {
  background-position: 50% 0;
}
.fun #zabawy .content h3,
.fun .container--barbie .content h3,
.fun .container--cars .content h3 {
  font-size: 44px;
  letter-spacing: 11px;
}
.fun #zabawy .content p,
.fun .container--barbie .content p,
.fun .container--cars .content p {
  font-size: 16px;
  letter-spacing: 7px;
}
.fun #zabawy a,
.fun .container--barbie a,
.fun .container--cars a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  background-position: center;
  background-size: 101%;
  background-color: #eee;
}
.fun #zabawy a .content,
.fun .container--barbie a .content,
.fun .container--cars a .content {
  opacity: 0;
  -webkit-transition: all 0.2s ease 0;
  -moz-transition: all 0.2s ease 0;
  -o-transition: all 0.2s ease 0;
  -ms-transition: all 0.2s ease 0;
  transition: all 0.2s ease 0;
  -o-transform: translate(0px);
  width: 100%;
  position: absolute;
}
.fun #zabawy a.preload-background-image-loaded .content,
.fun .container--barbie a.preload-background-image-loaded .content,
.fun .container--cars a.preload-background-image-loaded .content {
  opacity: 1;
}
.fun #zabawy a h3,
.fun .container--barbie a h3,
.fun .container--cars a h3 {
  color: #FFF;
  letter-spacing: 12px;
  font-size: 70px;
  z-index: 10;
}
.fun #zabawy a p,
.fun .container--barbie a p,
.fun .container--cars a p {
  color: #FFF;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  padding: 15px 80px 0 80px;
}
.fun #zabawy a .box-cover,
.fun .container--barbie a .box-cover,
.fun .container--cars a .box-cover {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.fun #zabawy a:hover .box-cover,
.fun .container--barbie a:hover .box-cover,
.fun .container--cars a:hover .box-cover {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  filter: alpha(opacity=70);
}
.fun #zabawy .ob-33 div.ratio-wrap,
.fun .container--barbie .ob-33 div.ratio-wrap,
.fun .container--cars .ob-33 div.ratio-wrap {
  position: relative;
  height: 0;
}
.fun #zabawy .ob-33 div.ratio-wrap div.ratio,
.fun .container--barbie .ob-33 div.ratio-wrap div.ratio,
.fun .container--cars .ob-33 div.ratio-wrap div.ratio {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fun #zabawy div.game div.ratio-wrap,
.fun .container--barbie div.game div.ratio-wrap,
.fun .container--cars div.game div.ratio-wrap {
  padding-bottom: 50.5%;
}
.fun #zabawy div.game a,
.fun .container--barbie div.game a,
.fun .container--cars div.game a {
  background-size: cover;
}
.fun #zabawy div.game a .content,
.fun .container--barbie div.game a .content,
.fun .container--cars div.game a .content {
  padding: 0 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
@media (max-width: 1600px) {
  .fun #zabawy .ob-weather .weather,
  .fun .container--barbie .ob-weather .weather,
  .fun .container--cars .ob-weather .weather {
    margin-bottom: 30px;
  }
  .fun #zabawy .ob-weather .tile,
  .fun .container--barbie .ob-weather .tile,
  .fun .container--cars .ob-weather .tile {
    margin-top: 80px;
  }
  .fun #zabawy .ob-weather .tile a,
  .fun .container--barbie .ob-weather .tile a,
  .fun .container--cars .ob-weather .tile a {
    background: none;
  }
  .fun #zabawy .ob-weather .tile .btn,
  .fun .container--barbie .ob-weather .tile .btn,
  .fun .container--cars .ob-weather .tile .btn {
    margin-top: 70px;
  }
}
@media (max-width: 1400px) {
  .fun #zabawy .ob-weather p,
  .fun .container--barbie .ob-weather p,
  .fun .container--cars .ob-weather p {
    font-size: 16px;
    line-height: 22px;
  }
  .fun #zabawy .ob-weather .weather,
  .fun .container--barbie .ob-weather .weather,
  .fun .container--cars .ob-weather .weather {
    margin-bottom: 20px;
  }
  .fun #zabawy .ob-weather .tile,
  .fun .container--barbie .ob-weather .tile,
  .fun .container--cars .ob-weather .tile {
    margin-top: 30px;
  }
  .fun #zabawy .ob-weather .tile a,
  .fun .container--barbie .ob-weather .tile a,
  .fun .container--cars .ob-weather .tile a {
    background: none;
  }
  .fun #zabawy .ob-weather .tile .btn,
  .fun .container--barbie .ob-weather .tile .btn,
  .fun .container--cars .ob-weather .tile .btn {
    margin-top: 40px;
  }
  .fun #zabawy .content h3,
  .fun .container--barbie .content h3,
  .fun .container--cars .content h3 {
    font-size: 38px;
    letter-spacing: .2em;
  }
}
@media (max-width: 1200px) {
  .fun #zabawy .ob-weather p,
  .fun .container--barbie .ob-weather p,
  .fun .container--cars .ob-weather p {
    font-size: 14px;
    line-height: 20px;
  }
  .fun #zabawy .ob-weather .tile,
  .fun .container--barbie .ob-weather .tile,
  .fun .container--cars .ob-weather .tile {
    margin-top: 10px;
  }
  .fun #zabawy .ob-weather .tile a,
  .fun .container--barbie .ob-weather .tile a,
  .fun .container--cars .ob-weather .tile a {
    background: none;
  }
  .fun #zabawy .ob-weather .tile .btn,
  .fun .container--barbie .ob-weather .tile .btn,
  .fun .container--cars .ob-weather .tile .btn {
    margin-top: 30px;
  }
}
@media (max-width: 1080px) {
  .fun #zabawy .ob-weather .tile,
  .fun .container--barbie .ob-weather .tile,
  .fun .container--cars .ob-weather .tile {
    margin-top: 0;
  }
  .fun #zabawy .ob-weather .tile a,
  .fun .container--barbie .ob-weather .tile a,
  .fun .container--cars .ob-weather .tile a {
    background: none;
  }
  .fun #zabawy .ob-weather .tile .btn,
  .fun .container--barbie .ob-weather .tile .btn,
  .fun .container--cars .ob-weather .tile .btn {
    margin-top: 20px;
    padding: 15px 5px;
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 1024px) {
  .fun #zabawy .ob-weather p,
  .fun .container--barbie .ob-weather p,
  .fun .container--cars .ob-weather p {
    font-size: 12px;
    line-height: 18px;
  }
  .fun #zabawy .ratio,
  .fun .container--barbie .ratio,
  .fun .container--cars .ratio {
    padding: 5px;
  }
  .fun #zabawy .ratio .content h3,
  .fun .container--barbie .ratio .content h3,
  .fun .container--cars .ratio .content h3 {
    font-size: 35px;
  }
}
@media (max-width: 990px) {
  .fun #zabawy > .ob-33,
  .fun .container--barbie > .ob-33,
  .fun .container--cars > .ob-33 {
    width: 50%;
  }
  .fun #zabawy .ob-weather,
  .fun .container--barbie .ob-weather,
  .fun .container--cars .ob-weather {
    width: 100%;
  }
  .fun #zabawy .ratio,
  .fun .container--barbie .ratio,
  .fun .container--cars .ratio {
    padding: 5px;
  }
  .fun #zabawy .ratio .content,
  .fun .container--barbie .ratio .content,
  .fun .container--cars .ratio .content {
    padding: 10px;
  }
  .fun #zabawy .ratio .content h3,
  .fun .container--barbie .ratio .content h3,
  .fun .container--cars .ratio .content h3 {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .fun #zabawy .ratio,
  .fun .container--barbie .ratio,
  .fun .container--cars .ratio {
    padding: 5px;
  }
  .fun #zabawy .ratio .content h3,
  .fun .container--barbie .ratio .content h3,
  .fun .container--cars .ratio .content h3 {
    font-size: 32px;
    letter-spacing: .15em;
  }
  .fun #zabawy .ratio .content p,
  .fun .container--barbie .ratio .content p,
  .fun .container--cars .ratio .content p {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .fun #zabawy .ratio,
  .fun .container--barbie .ratio,
  .fun .container--cars .ratio {
    padding: 5px;
  }
  .fun #zabawy .ratio .content h3,
  .fun .container--barbie .ratio .content h3,
  .fun .container--cars .ratio .content h3 {
    font-size: 28px;
    letter-spacing: .1em;
  }
  .fun #zabawy .ratio .content p,
  .fun .container--barbie .ratio .content p,
  .fun .container--cars .ratio .content p {
    font-size: 14px;
    padding-top: 5px;
  }
}
@media (max-width: 540px) {
  .fun #zabawy > .ob-33,
  .fun .container--barbie > .ob-33,
  .fun .container--cars > .ob-33 {
    width: 100%;
  }
  .fun #zabawy .ratio,
  .fun .container--barbie .ratio,
  .fun .container--cars .ratio {
    padding: 5px;
  }
  .fun #zabawy .ratio .content h3,
  .fun .container--barbie .ratio .content h3,
  .fun .container--cars .ratio .content h3 {
    font-size: 28px;
    letter-spacing: .1em;
  }
  .fun #zabawy .ratio .content p,
  .fun .container--barbie .ratio .content p,
  .fun .container--cars .ratio .content p {
    font-size: 14px;
    padding-top: 5px;
  }
}
.fun .container .color-books__header {
  margin: 25px 0;
  text-align: center;
  font-size: 56px;
  letter-spacing: 4px;
  font-family: bebas, arial, sans-serif;
}
.fun .container.container--coloring-book {
  padding-top: 40px;
  margin-top: 20px;
}
@media (min-width: 990px) {
  .fun .container.container--coloring-book {
    padding-top: 80px;
  }
}
.fun .container.container--coloring-book h2 {
  color: #fff;
  font-family: bebas, arial, sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
  padding: 0 10px;
  letter-spacing: .025em;
}
@media (min-width: 990px) {
  .fun .container.container--coloring-book h2 {
    font-size: 56px;
    margin-bottom: 60px;
  }
}
.fun .container.container--coloring-book > .container {
  position: relative;
}
.fun .container.container--coloring-book > .container .logo {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-120%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-120%, -50%);
  transform: translate(-120%, -50%);
  -webkit-transform: translate(-120%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-120%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-120%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-120%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-120%, -50%) translateZ(0) scale(1, 1);
}
@media (min-width: 990px) {
  .fun .container.container--coloring-book > .container .logo {
    -webkit-transform: translate(-120%, -100%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-120%, -100%);
    transform: translate(-120%, -100%);
    -webkit-transform: translate(-120%, -100%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-120%, -100%) translateZ(0) scale(1, 1);
    -o-transform: translate(-120%, -100%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-120%, -100%) translateZ(0) scale(1, 1);
    transform: translate(-120%, -100%) translateZ(0) scale(1, 1);
  }
}
.fun .container.container--coloring-book .ob-33 {
  width: 100%;
}
@media (min-width: 990px) {
  .fun .container.container--coloring-book .ob-33 {
    width: 50%;
  }
}
.fun .container.container--coloring-book .ob-33 .content h3 {
  letter-spacing: .025em;
  font-size: 32px;
}
.fun .container.container--coloring-book .ob-33 .content p {
  font-family: bebas, arial, sans-serif;
  letter-spacing: .025em;
  font-size: 18px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .fun .container.container--coloring-book .ob-33 .content h3 {
    font-size: 36px;
  }
  .fun .container.container--coloring-book .ob-33 .content p {
    font-size: 24px;
  }
}
@media (min-width: 1180px) {
  .fun .container.container--coloring-book .ob-33 .content h3 {
    font-size: 47px;
  }
  .fun .container.container--coloring-book .ob-33 .content p {
    font-size: 32px;
  }
}
.fun .container.container--cars {
  background-color: #d13138;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 40px;
}
@media (max-width: 639px) {
  .fun .container.container--cars {
    background-image: none!important;
  }
}
@media (min-width: 640px) {
  .fun .container.container--cars {
    padding-left: 50%;
  }
}
@media (min-width: 990px) {
  .fun .container.container--cars {
    padding-bottom: 120px;
    background-position: 0 0;
    background-size: contain;
  }
}
.fun .container.container--barbie {
  background-color: #ec429a;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
@media (max-width: 639px) {
  .fun .container.container--barbie {
    background-image: none!important;
  }
}
@media (min-width: 640px) {
  .fun .container.container--barbie {
    padding-left: 50%;
  }
}
@media (min-width: 990px) {
  .fun .container.container--barbie {
    background-size: contain;
    background-position: 0 0;
  }
}
.fun .container.container--barbie .barbie-foot {
  text-align: right;
}
.fun .container.container--barbie .barbie-foot img {
  margin: 10px 0;
  width: 100%;
  max-width: 280px;
}
@media (min-width: 990px) {
  .fun .container.container--barbie .barbie-foot img {
    max-width: 50vw;
    width: auto;
  }
}
.fun #contest_gallery h2 {
  margin: 25px 0;
  text-align: center;
  font-size: 56px;
  letter-spacing: 4px;
  font-family: bebas, arial, sans-serif;
}
.fun #contest_gallery #owl-ratio {
  background: none;
  padding-bottom: 0;
  height: auto;
}
.fun #contest_gallery #owl-ratio .owl-item {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.fun #contest_gallery #owl-ratio .tiles__list {
  padding: 10px 10px 0;
}
.fun #contest_gallery #owl-ratio .slide > div {
  padding: 10px;
}
.fun #contest_gallery #owl-ratio .slide > div.slide--no-padding {
  padding: 0;
}
.fun #contest_gallery #owl-ratio .owl-controls {
  display: block!important;
}
.fun #contest_gallery #owl-ratio .owl-controls .owl-buttons {
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  height: 0;
}
.fun #contest_gallery #owl-ratio .owl-controls .owl-buttons > div {
  background: 50% 50% / contain no-repeat;
  width: 28px;
  height: 53px;
  color: transparent;
  zoom: 1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.fun #contest_gallery #owl-ratio .owl-controls .owl-buttons > div:before {
  content: '';
  display: block;
}
.fun #contest_gallery #owl-ratio .owl-controls .owl-buttons > div:after {
  content: '';
  display: table;
  clear: both;
}
.fun #contest_gallery #owl-ratio .owl-controls .owl-buttons > div.owl-prev {
  background-image: url("../img/fun/prev.svg");
  float: left;
}
.fun #contest_gallery #owl-ratio .owl-controls .owl-buttons > div.owl-next {
  background-image: url("../img/fun/next.svg");
  float: right;
}
.fun #contest_gallery #owl-ratio .owl-controls .owl-buttons > div:hover.owl-prev {
  -webkit-transform: translateX(-5px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}
.fun #contest_gallery #owl-ratio .owl-controls .owl-buttons > div:hover.owl-next {
  -webkit-transform: translateX(5px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.fun #contest_gallery div.ratio-wrap {
  padding-bottom: 66%;
}
.fun #contest_gallery div.ratio-wrap .box-cover .box-inner {
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
.fun #contest_gallery div.ratio-wrap .box-cover strong {
  font-size: 31px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 18px;
  padding: 15px;
  font-family: bebas, arial, sans-serif;
}
.fun #contest_gallery .ob--big div.ratio-wrap {
  padding-bottom: 100%;
}
.fun #contest_gallery .ob-50 {
  max-height: 50%;
  padding: 10px;
}
.fun #contest_gallery .ob-50 .ratio-wrap {
  padding-bottom: 65.8%;
}
.fun #contest_gallery .ob-50 a,
.fun #contest_gallery .ob-50 > div {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
.fun #contest_gallery .ob-50 .tile img {
  width: 100.2%;
}
.fun #contest_gallery .ob-50 .text-contest {
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  margin-top: 48px;
}
.fun #contest_gallery .ob-50 .text-contest h4 {
  font-size: 43px;
  font-family: bebas, arial, sans-serif;
  padding-top: 7px;
}
.fun #contest_gallery .ob-50 .text-contest .orange {
  color: #f59f24;
  padding: 8px 15px 53px;
}
.fun #contest_gallery .ob-50 .text-contest .text-line {
  line-height: 22px;
}
.fun #contest_gallery .ob-50 .text-contest a.btn {
  color: #000;
  letter-spacing: 4px;
  border: 1px solid #000;
  max-width: 224px;
  margin: 48px auto 0;
  padding: 23px;
  transition: background-color 0.5s, color 0.5s;
}
.fun #contest_gallery .ob-50 .text-contest a.btn:hover {
  background-color: #000;
  color: #fff;
  transition: all 0.5s;
}
.fun #contest_gallery .ob-33 .ob-100 {
  height: 50%;
  padding: 10px;
}
.fun #contest_gallery .ob-33 .ob-100 a,
.fun #contest_gallery .ob-33 .ob-100 > div {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
.fun #contest_gallery .ob-33 .ob-100 a strong,
.fun #contest_gallery .ob-33 .ob-100 > div strong {
  font-size: 20px;
  letter-spacing: 4px;
}
.fun #contest_gallery .ob-33 {
  height: 50%;
  padding: 10px;
}
.fun #contest_gallery .ob-33 a,
.fun #contest_gallery .ob-33 > div {
  background-size: 101%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
.fun #contest_gallery .ob-33 a strong,
.fun #contest_gallery .ob-33 > div strong {
  font-size: 20px;
  letter-spacing: 4px;
}
.fun #contest_gallery .ob-33 > .ob-100 {
  padding: 10px;
}
.fun #contest_gallery .ob-33 > .ob-100 .ratio-wrap {
  padding-bottom: 100%;
}
.fun #contest_gallery .ob-66 .ratio-wrap .ratio a strong,
.fun #contest_gallery .ob-66 .ratio-wrap .ratio > div strong {
  font-size: 27px;
  letter-spacing: 8px;
}
@media (max-width: 1800px) {
  .fun #contest_gallery .ob-50 .text-contest {
    margin-top: 0;
  }
}
@media (max-width: 1630px) {
  .fun #contest_gallery .ob-33 .ob-100 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-33 .ob-100 .ratio-wrap .ratio > div strong {
    font-size: 14px;
    letter-spacing: .2em;
  }
}
@media (max-width: 1600px) {
  .fun #contest_gallery .ob-50 .text-contest .orange {
    padding-bottom: 20px;
  }
  .fun #contest_gallery .ob-50 .text-contest p.text-line {
    font-size: 16px;
    line-height: 20px;
  }
  .fun #contest_gallery .ob-50 .text-contest a.btn {
    margin-top: 20px;
  }
  .fun #contest_gallery .ob-50 .ob-33 .ob-100 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-50 .ob-33 .ob-100 .ratio-wrap .ratio > div strong {
    font-size: 14px;
    letter-spacing: 3px;
  }
}
@media (max-width: 1400px) {
  .fun #contest_gallery .ob-50 .text-contest h4 {
    font-size: 36px;
  }
  .fun #contest_gallery .ob-50 .text-contest .orange {
    padding-bottom: 15px;
  }
  .fun #contest_gallery .ob-50 .text-contest p.text-line {
    font-size: 15px;
    line-height: 18px;
  }
  .fun #contest_gallery .ob-66 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-66 .ratio-wrap .ratio > div strong {
    font-size: 18px;
    letter-spacing: .3em;
  }
  .fun #contest_gallery .ob-100 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-100 .ratio-wrap .ratio > div strong {
    font-size: 28px;
    letter-spacing: .4em;
  }
}
@media (max-width: 1200px) {
  .fun #contest_gallery .ob-50 .text-contest h4 {
    font-size: 28px;
  }
  .fun #contest_gallery .ob-50 .text-contest .orange {
    padding-bottom: 10px;
  }
  .fun #contest_gallery .ob-50 .text-contest p.text-line {
    font-size: 12px;
    line-height: 14px;
  }
  .fun #contest_gallery .ob-50 .text-contest a.btn {
    font-size: 18px;
    padding: 16px;
    max-width: 175px;
  }
  .fun #contest_gallery .ob-100 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-100 .ratio-wrap .ratio > div strong {
    font-size: 20px;
    letter-spacing: .3em;
  }
  .fun #contest_gallery .ob-33 .ob-100 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-33 .ob-100 .ratio-wrap .ratio > div strong {
    font-size: 12px;
    letter-spacing: .1em;
  }
}
@media (max-width: 990px) {
  .fun #contest_gallery .container--contest > .ob-50 > .text-contest h4 {
    font-size: 40px;
  }
  .fun #contest_gallery .container--contest > .ob-50 > .text-contest .orange {
    padding-bottom: 20px;
    font-size: 20px;
  }
  .fun #contest_gallery .container--contest > .ob-50 > .text-contest p.text-line {
    font-size: 17px;
    line-height: 22px;
  }
  .fun #contest_gallery .container--contest > .ob-50 > .tile:not(.tile--pic) {
    padding: 40px 0;
  }
  .fun #contest_gallery .container--contest > .ob-50 > .tile--pic {
    position: relative;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
  }
  .fun #contest_gallery .ob-50 {
    width: 100%;
  }
  .fun #contest_gallery .ob-50 .text-contest h4 {
    font-size: 28px;
  }
  .fun #contest_gallery .ob-50 .text-contest .orange {
    padding-bottom: 10px;
  }
  .fun #contest_gallery .ob-50 .text-contest p.text-line {
    font-size: 12px;
    line-height: 14px;
  }
  .fun #contest_gallery .ob-50 .text-contest a.btn {
    font-size: 18px;
    padding: 16px;
    max-width: 175px;
  }
  .fun #contest_gallery .ob-100 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-100 .ratio-wrap .ratio > div strong {
    font-size: 28px;
    letter-spacing: .3em;
  }
  .fun #contest_gallery .ob-66 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-66 .ratio-wrap .ratio > div strong {
    font-size: 20px;
    letter-spacing: .3em;
  }
  .fun #contest_gallery .ob-33 .ob-100 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-33 .ob-100 .ratio-wrap .ratio > div strong {
    font-size: 16px;
    letter-spacing: .2em;
  }
}
@media (max-width: 768px) {
  .fun #contest_gallery .ob-100 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-100 .ratio-wrap .ratio > div strong {
    font-size: 22px;
    letter-spacing: .2em;
  }
  .fun #contest_gallery .ob-66 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-66 .ratio-wrap .ratio > div strong {
    font-size: 17px;
    letter-spacing: .2em;
  }
  .fun #contest_gallery .ob-33 .ob-100 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-33 .ob-100 .ratio-wrap .ratio > div strong {
    font-size: 13px;
    letter-spacing: .1em;
  }
}
@media (max-width: 480px) {
  .fun #contest_gallery .ob-100 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-100 .ratio-wrap .ratio > div strong {
    display: none;
  }
  .fun #contest_gallery .ob-66 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-66 .ratio-wrap .ratio > div strong {
    display: none;
  }
  .fun #contest_gallery .ob-33 .ob-100 .ratio-wrap .ratio a strong,
  .fun #contest_gallery .ob-33 .ob-100 .ratio-wrap .ratio > div strong {
    display: none;
  }
}
.fun .container--contest .hidden {
  display: none;
}
.fun .container--contest .jsContainerOb {
  transform: translateX(0);
  transition: all 1s;
}
.fun .container--contest .jsContainerOb--position {
  transform: translateX(-33.4%);
}
.fun .container--contest .add-img {
  position: relative;
  opacity: 1;
  transition: opacity 0.5s;
  overflow: hidden;
}
.fun .container--contest .add-img.ng-hide.ng-hide-animate {
  display: none !important;
}
.fun .container--contest .add-img.ng-hide-remove {
  transition: opacity 0.3s !important;
}
.fun .container--contest .add-img.ng-hide {
  opacity: 0;
}
.fun .container--contest .add-img .tile--pic {
  height: 550px;
  background: url('../img/fun/z-8.jpg') no-repeat;
  background-position: 50% 50%;
  display: none;
}
@media (max-width: 990px) {
  .fun .container--contest .add-img .tile--pic {
    background-size: cover;
  }
}
@media (max-width: 400px) {
  .fun .container--contest .add-img .tile--pic {
    height: 400px;
    background-position: 65% 10%;
  }
}
.fun .container--contest .add-img__content {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  left: 77px;
}
.fun .container--contest .add-img__content p {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 37px;
  text-align: center;
}
.fun .container--contest .add-img__content .add-pic-btns {
  padding: 17px 77px;
  box-sizing: border-box;
  border: 1px solid #fff;
  cursor: pointer;
  font-size: 20px;
  letter-spacing: 5px;
  font-family: bebas, arial, sans-serif;
  transition: background-color 0.5s, color 0.5s;
}
.fun .container--contest .add-img__content .add-pic-btns:hover {
  background-color: #fff;
  color: #f59f24;
  transition: all 0.5s;
}
@media (max-width: 530px) {
  .fun .container--contest .add-img__content {
    left: 0;
    right: 0;
    text-align: center;
  }
  .fun .container--contest .add-img__content .add-pic-btns {
    font-size: 15px;
    padding: 17px 57px;
  }
}
@media (max-width: 400px) {
  .fun .container--contest .add-img__content .add-pic-btns {
    padding: 12px 47px;
  }
  .fun .container--contest .add-img__content__content p {
    font-size: 18px;
  }
}
.fun .container--contest .upload-img {
  position: relative;
}
.fun .container--contest .upload-img.ng-leave.ng-leave-active {
  position: absolute;
  opacity: 0;
  transition: 0.5s;
}
.fun .container--contest .upload-img .cropper-img img {
  height: 405px;
}
.fun .container--contest .upload-img__container {
  opacity: 1;
}
.fun .container--contest .upload-img__container.ng-hide {
  opacity: 0;
}
.fun .container--contest .upload-img__container.ng-hide-remove {
  transition: opacity ease-in 0.7s;
}
.fun .container--contest .upload-img .file-name > img {
  display: inline-block;
  max-width: 25px;
  vertical-align: middle;
  margin-right: 5px;
}
.fun .container--contest .upload-img .file-name > span {
  vertical-align: middle;
}
.fun .container--contest .upload-img p {
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.fun .container--contest .upload-img p .exit {
  background: url("../img/exit.png") no-repeat;
  height: 9px;
  width: 9px;
  float: right;
  position: relative;
  display: inline-block;
  top: 1px;
  cursor: pointer;
}
.fun .container--contest .ob-map__info,
.fun .container--contest .ob-map .form-object--btn-map input {
  font-family: bebas, arial, sans-serif;
  letter-spacing: 0.5vw;
}
.fun .container--contest .ob-map__info {
  margin: 7px 0 26px;
  font-size: 36px;
  text-align: center;
}
.fun .container--contest .ob-map .form-object--btn-map input {
  width: 100%;
  background-color: #87001c;
  color: #ffffff;
  font-size: 18px;
  border: 0;
  transition: background-color 0.5s;
  height: 65px;
  margin-top: 33px;
}
.fun .container--contest .ob-map .form-object--btn-map input:hover {
  background-color: #000;
}
@media (max-width: 990px) {
  .fun .container--contest .ob-map .form-object--btn-map input {
    margin-top: 0;
  }
}
.fun .container--contest .ob-map .angular-google-map {
  position: absolute;
  width: 100%;
  height: 383px;
  padding-right: 20px;
}
.fun .container--contest .ob-map .angular-google-map-container {
  width: 100%;
  height: 100%;
  border: 1px solid #bdbdbd;
}
.fun .container--contest .form-container {
  padding: 0 100px;
  position: relative;
}
.fun .container--contest .form-container .angular-google-map {
  position: absolute;
  width: 100%;
  height: 500px;
}
.fun .container--contest .form-container .angular-google-map-container {
  width: 100%;
  height: 100%;
  border: 1px solid #bdbdbd;
}
.fun .container--contest .form-container .thank-you {
  margin-top: 30px;
}
.fun .container--contest .form-container .thank-you img {
  display: block;
  float: left;
}
.fun .container--contest .form-container .thank-you p {
  display: block;
  overflow: hidden;
  padding-left: 15px;
}
.fun .container--contest .form-container .jsExit__form {
  position: absolute;
  top: -6px;
  right: 0;
  width: 48px;
  height: 48px;
  background-color: #f8541f;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url('../img/close-cross.png');
  background-size: 21px 21px;
  cursor: pointer;
  transition: background-color 0.5s;
}
.fun .container--contest .form-container .jsExit__form:hover {
  background-color: #000;
}
.fun .container--contest .form-container h4 {
  margin-top: 7px;
  font-size: 36px;
  text-align: center;
  font-family: bebas, arial, sans-serif;
  letter-spacing: 0.5vw;
}
.fun .container--contest .form-container input:-webkit-autofill,
.fun .container--contest .form-container textarea:-webkit-autofill,
.fun .container--contest .form-container select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
.fun .container--contest .form-container .someinput::-ms-clear,
.fun .container--contest .form-container input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
@media (max-width: 1400px) {
  .fun .container--contest .form-container {
    padding: 0 50px;
  }
  .fun .container--contest .form-container .jsExit__form {
    width: 38px;
    height: 38px;
    background-size: 16px 16px;
  }
}
@media (max-width: 990px) {
  .fun .container--contest .form-container {
    padding: 0;
  }
}
@media (max-width: 540px) {
  .fun .container--contest .form-container {
    padding: 0;
  }
}
.fun .container--contest form .div-form {
  margin-top: 26px;
}
.fun .container--contest form .div-form input[type="checkbox"] {
  display: inline-block;
  vertical-align: middle;
}
.fun .container--contest form .div-form input[type=text],
.fun .container--contest form .div-form input[type=number],
.fun .container--contest form .div-form input[type=email] {
  font-size: 15px;
}
@media (max-width: 400px) {
  .fun .container--contest form .div-form input[type=text],
  .fun .container--contest form .div-form input[type=number],
  .fun .container--contest form .div-form input[type=email] {
    font-size: 12px;
  }
}
.fun .container--contest form .div-form .input-half {
  float: left;
  width: 50%;
}
.fun .container--contest form .div-form .input-half:first-child {
  padding-right: 7px;
}
.fun .container--contest form .div-form .input-half:nth-child(2) {
  padding-left: 7px;
}
.fun .container--contest form .div-form .input {
  width: 100%;
  height: 55px;
  margin: 0;
  padding-left: 16px;
  text-transform: none;
  letter-spacing: 1px;
}
.fun .container--contest form .div-form .input[placeholder] {
  color: #000;
}
.fun .container--contest form .div-form .input.ng-untouched {
  border: 1px solid #bdbdbd;
  box-shadow: none;
}
.fun .container--contest form .div-form .input.ng-invalid:not(.ng-untouched) {
  border: 1px solid rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 3px 0 rgba(255, 0, 0, 0.5);
}
.fun .container--contest form .div-form .input.ng-valid:not(.ng-untouched) {
  border: 1px solid rgba(27, 204, 102, 0.5);
  box-shadow: 0 0 3px 0 rgba(27, 204, 102, 0.5);
}
.fun .container--contest form .div-form .form-object {
  padding-bottom: 17px;
  float: left;
  font-size: 14px;
}
.fun .container--contest form .div-form .form-object--btn {
  padding-bottom: 0;
  font-size: 20px;
  opacity: 1;
  transition: opacity 1s;
}
.fun .container--contest form .div-form .form-object--btn input {
  height: 65px;
}
.fun .container--contest form .div-form .form-object.description {
  padding-bottom: 25px;
}
.fun .container--contest form .div-form .form-object .error {
  color: #ff0000;
  display: block;
  font-size: 15px;
}
.fun .container--contest form .div-form .form-object span {
  font-weight: 500;
  padding-left: 15px;
  letter-spacing: 2px;
}
@media (max-width: 1211px) {
  .fun .container--contest form .div-form .form-object.description {
    padding-bottom: 20px;
  }
}
@media (max-width: 520px) {
  .fun .container--contest form .div-form .form-object {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .fun .container--contest form .div-form .form-object.name,
  .fun .container--contest form .div-form .form-object.age {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .fun .container--contest form .div-form .form-object.contest input[type="submit"] {
    letter-spacing: .3em;
  }
  .fun .container--contest form .div-form .form-object.input-half:first-child {
    padding-right: 0;
  }
  .fun .container--contest form .div-form .form-object.input-half:nth-child(2) {
    padding-left: 0;
  }
}
.fun .container--contest form .div-form .name {
  width: 50%;
  padding-right: 10px;
  padding-bottom: 17px;
}
.fun .container--contest form .div-form .age {
  width: 50%;
  padding-left: 10px;
}
.fun .container--contest form .div-form .email-field {
  width: 100%;
}
.fun .container--contest form .div-form .full {
  width: 100%;
}
.fun .container--contest form .div-form .full.place {
  padding-bottom: 17px;
}
.fun .container--contest form .div-form .full.place > p {
  font-size: 14px;
  padding: 10px 0;
}
.fun .container--contest form .div-form .place {
  position: relative;
}
.fun .container--contest form .div-form .place:after {
  position: absolute;
  content: url("../img/fun-p.jpg");
  right: 15px;
  top: 15px;
}
.fun .container--contest form .div-form .club-number {
  width: 54.634%;
  padding-right: 10px;
}
.fun .container--contest form .div-form .phone-number {
  width: 45.365%;
  padding-left: 10px;
}
.fun .container--contest form .div-form .no-club {
  width: 61.30%;
  padding-right: 10px;
}
.fun .container--contest form .div-form .register {
  width: 38.70%;
  padding-left: 10px;
  font-size: 18px;
  font-family: bebas, arial, sans-serif;
  background-color: #cecdcd;
  text-align: center;
  height: 52px;
  letter-spacing: 10px;
  transition: background-color 0.5s;
}
.fun .container--contest form .div-form .register div {
  padding-top: 18px;
  color: #fff;
}
.fun .container--contest form .div-form .register:hover {
  background-color: #87001c;
  transition: background-color 0.5s;
}
.fun .container--contest form .div-form .rules {
  letter-spacing: 0;
  font-family: montserratlight, arial, sans-serif;
  padding-bottom: 22px;
}
.fun .container--contest form .div-form .rules #reg {
  display: none;
}
.fun .container--contest form .div-form .rules__reg {
  margin-left: 34px;
  padding-left: 0;
  padding-bottom: 10px;
  float: left;
  position: relative;
}
.fun .container--contest form .div-form .rules__reg::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: -5px;
  left: -34px;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  background-image: url('../img/thick_white.png');
  background-size: 100%;
  background-position: -20px 0;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.fun .container--contest form .div-form .rules input[type="checkbox"]:checked + .rules__reg::before {
  background-position: center;
  background-color: #231f20;
}
.fun .container--contest form .div-form .rules a {
  color: #000;
  text-decoration: underline;
}
.fun .container--contest form .div-form .rules a span {
  padding-left: 9px;
}
.fun .container--contest form .div-form .rules span {
  padding-left: 0;
  line-height: 16px;
  letter-spacing: 0;
  color: #000;
}
@media (max-width: 1211px) {
  .fun .container--contest form .div-form .rules {
    padding-bottom: 11px;
  }
}
.fun .container--contest form .div-form .contest input {
  background-color: #87001c;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 10px;
  border: 0px;
  font-family: bebas, arial, sans-serif;
  transition: background-color 0.5s;
}
@media (min-width: 991px) and (max-width: 1050px) {
  .fun .container--contest form .div-form .contest input {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .fun .container--contest form .div-form .contest input {
    font-size: 15px;
  }
}
.fun .container--contest form .div-form .contest input:hover {
  background-color: #000;
  transition: all 0.5s;
}
.fun .container--contest .ng-error li {
  color: red;
  font-size: 12px;
  padding-top: 5px;
  font-family: "Times New Roman", Georgia, Serif;
}
@media (max-width: 1000px) {
  .fun .container--contest .jsContainerOb--position {
    transform: translateX(0);
  }
}
.fun #test {
  padding: 0 10px;
}
.fun #test .map-banner {
  position: relative;
}
.fun #test .map-banner strong {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 36px;
  letter-spacing: 3px;
}
.fun #test div.ratio-wrap {
  padding-bottom: 16%;
}
.fun #test div.ratio-wrap .box-inner strong {
  letter-spacing: 12px;
  font-size: 50px;
}
.fun #test div.ratio-wrap .box-inner .btn {
  max-width: 274px;
  border: 1px solid #fff;
  color: #fff;
  padding: 23px;
  transition: background-color 0.5s, color 0.5s;
}
.fun #test div.ratio-wrap .box-inner .btn:hover {
  background-color: #fff;
  color: #000;
  transition: all 0.5s;
}
.fun #test .ob-100 {
  height: 50%;
  padding: 10px;
}
.fun #test .ob-100 a,
.fun #test .ob-100 > div {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
  cursor: default;
}
.fun #test .ob-100 a.map-banner {
  cursor: pointer;
}
@media (max-width: 1400px) {
  .fun #test .ob-100 .ratio-wrap .ratio .map-banner strong {
    font-size: 30px;
  }
  .fun #test .ob-100 .ratio-wrap .ratio a .box-cover .box-inner strong,
  .fun #test .ob-100 .ratio-wrap .ratio > div .box-cover .box-inner strong {
    font-size: 36px;
    line-height: 1;
    letter-spacing: .4em;
  }
  .fun #test .ob-100 .ratio-wrap .ratio a .box-cover .box-inner .btn,
  .fun #test .ob-100 .ratio-wrap .ratio > div .box-cover .box-inner .btn {
    height: auto;
    padding: 18px;
  }
}
@media (max-width: 1300px) {
  .fun #test .ob-100 .ratio .map-banner strong {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .fun #test .ob-100 .ratio-wrap .ratio a .box-cover .box-inner,
  .fun #test .ob-100 .ratio-wrap .ratio > div .box-cover .box-inner {
    position: relative;
  }
  .fun #test .ob-100 .ratio-wrap .ratio a .box-cover .box-inner strong,
  .fun #test .ob-100 .ratio-wrap .ratio > div .box-cover .box-inner strong {
    font-size: 36px;
    line-height: 1;
    letter-spacing: .4em;
  }
  .fun #test .ob-100 .ratio-wrap .ratio a .box-cover .box-inner .btn,
  .fun #test .ob-100 .ratio-wrap .ratio > div .box-cover .box-inner .btn {
    height: auto;
    max-width: 220px;
    padding: 18px;
    position: absolute;
    right: 50px;
    top: 50%;
    font-size: 16px;
    letter-spacing: .2em;
    -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
  }
}
@media (max-width: 990px) {
  .fun #test .ob-100 .ratio-wrap .ratio .map-banner strong {
    font-size: 24px;
    bottom: -10px;
  }
  .fun #test .ob-100 .ratio-wrap .ratio a .box-cover .box-inner strong,
  .fun #test .ob-100 .ratio-wrap .ratio > div .box-cover .box-inner strong {
    position: absolute;
    left: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
  }
}
@media (max-width: 768px) {
  .fun #test .ob-100 .ratio-wrap {
    padding-bottom: 20%;
  }
  .fun #test .ob-100 .ratio-wrap .ratio a,
  .fun #test .ob-100 .ratio-wrap .ratio > div {
    background-size: cover;
  }
  .fun #test .ob-100 .ratio-wrap .ratio a .box-cover .box-inner strong,
  .fun #test .ob-100 .ratio-wrap .ratio > div .box-cover .box-inner strong {
    font-size: 28px;
    letter-spacing: .2em;
  }
}
@media (max-width: 640px) {
  .fun #test .ob-100 .ratio-wrap {
    padding-bottom: 30%;
  }
  .fun #test .ob-100 .ratio-wrap .ratio a,
  .fun #test .ob-100 .ratio-wrap .ratio > div {
    background-size: cover;
  }
  .fun #test .ob-100 .ratio-wrap .ratio a .box-cover .box-inner strong,
  .fun #test .ob-100 .ratio-wrap .ratio > div .box-cover .box-inner strong {
    position: static;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
  }
  .fun #test .ob-100 .ratio-wrap .ratio a .box-cover .box-inner .btn,
  .fun #test .ob-100 .ratio-wrap .ratio > div .box-cover .box-inner .btn {
    display: none;
  }
}
@media (max-width: 450px) {
  .fun #test .ob-100 .ratio-wrap .ratio .map-banner strong {
    font-size: 14px;
    bottom: -15px;
  }
}
.fun #news {
  padding: 0 10px;
}
.fun #news .box-inner p {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 8px;
}
.fun #news .box-inner .magic-lady {
  width: 60% !important;
}
.fun #news .box-inner .goformore {
  width: 33%;
  margin-bottom: 28px;
}
.fun #news .ob-33 {
  height: 50%;
  padding: 10px;
}
.fun #news .ob-33 .ratio-wrap {
  padding-bottom: calc(100% + 15px);
}
.fun #news .ob-33 a,
.fun #news .ob-33 > div {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
.fun #news .ob-66 .ob-100 {
  height: 50%;
  padding: 10px;
}
.fun #news .ob-66 .ob-100 .ratio-wrap {
  padding-bottom: 24%;
}
.fun #news .ob-66 .ob-100 a,
.fun #news .ob-66 .ob-100 > div {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
.fun #news .ob-66 .ob-100 a .box-inner-right,
.fun #news .ob-66 .ob-100 > div .box-inner-right {
  left: 25.5%;
}
.fun #news .ob-100 .ob-50 {
  height: 50%;
}
.fun #news .ob-100 .ob-50 .ratio-wrap {
  padding-bottom: 50%;
}
.fun #news .ob-100 .ob-50 a,
.fun #news .ob-100 .ob-50 > div {
  background-size: 101%;
  -webkit-transition: background-size 0.2s ease 0s;
  -moz-transition: background-size 0.2s ease 0s;
  -o-transition: background-size 0.2s ease 0s;
  -ms-transition: background-size 0.2s ease 0s;
  transition: background-size 0.2s ease 0s;
  -o-transform: translate(0px);
}
.fun #news .ob-100 .ob-50:first-child {
  padding-right: 10px;
}
.fun #news .ob-100 .ob-50:last-child {
  padding-left: 10px;
}
@media (max-width: 1400px) {
  .fun #news .ob-66 > .ob-100 .ratio-wrap .ratio a .box-cover .box-inner img,
  .fun #news .ob-66 > .ob-100 .ratio-wrap .ratio > div .box-cover .box-inner img {
    width: 150px;
  }
  .fun #news .ob-66 > .ob-100 .ratio-wrap .ratio a .box-cover .box-inner p,
  .fun #news .ob-66 > .ob-100 .ratio-wrap .ratio > div .box-cover .box-inner p {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 1200px) {
  .fun #news .ob-66 > .ob-100 > .ob-50 .ratio-wrap .ratio a .box-cover .box-inner strong,
  .fun #news .ob-66 > .ob-100 > .ob-50 .ratio-wrap .ratio > div .box-cover .box-inner strong {
    font-size: 36px;
    line-height: 1;
    letter-spacing: .3em;
  }
}
@media (max-width: 990px) {
  .fun #news .ob-33 {
    width: 100%;
  }
  .fun #news .ob-33 .ratio-wrap {
    padding-bottom: 25%;
  }
  .fun #news .ob-33 .ratio-wrap .ratio a .box-cover .box-inner > img,
  .fun #news .ob-33 .ratio-wrap .ratio > div .box-cover .box-inner > img {
    max-height: 70px;
    width: auto;
    margin-bottom: 10px;
  }
  .fun #news .ob-33 .ratio-wrap .ratio a .box-cover .box-inner p,
  .fun #news .ob-33 .ratio-wrap .ratio > div .box-cover .box-inner p {
    font-size: 16px;
    line-height: 1;
    letter-spacing: .2em;
  }
  .fun #news .ob-66 {
    width: 100%;
  }
  .fun #news .ob-66 > .ob-100 > .ob-50 .ratio-wrap .ratio a .box-cover .box-inner strong,
  .fun #news .ob-66 > .ob-100 > .ob-50 .ratio-wrap .ratio > div .box-cover .box-inner strong {
    font-size: 36px;
    line-height: 1;
    letter-spacing: .3em;
  }
}
@media (max-width: 640px) {
  .fun #news .ob-33 {
    width: 100%;
  }
  .fun #news .ob-33 .ratio-wrap {
    padding-bottom: 50%;
  }
  .fun #news .ob-33 .ratio-wrap .ratio a .box-cover .box-inner > img,
  .fun #news .ob-33 .ratio-wrap .ratio > div .box-cover .box-inner > img {
    max-height: 70px;
    width: auto;
    margin-bottom: 10px;
  }
  .fun #news .ob-33 .ratio-wrap .ratio a .box-cover .box-inner p,
  .fun #news .ob-33 .ratio-wrap .ratio > div .box-cover .box-inner p {
    font-size: 16px;
    line-height: 1;
    letter-spacing: .2em;
  }
  .fun #news .ob-66 > .ob-100 .ratio-wrap {
    padding-bottom: 50%;
  }
  .fun #news .ob-66 > .ob-100 .ratio-wrap .ratio a {
    background-size: cover;
  }
  .fun #news .ob-66 > .ob-100 .ratio-wrap .ratio a .box-inner.box-inner-right {
    left: 0;
  }
  .fun #news .ob-66 > .ob-100 > .ob-50 {
    width: 100%;
    padding: 0 0 20px 0;
  }
  .fun #news .ob-66 > .ob-100 > .ob-50 .ratio-wrap .ratio a .box-cover .box-inner strong,
  .fun #news .ob-66 > .ob-100 > .ob-50 .ratio-wrap .ratio > div .box-cover .box-inner strong {
    font-size: 36px;
    line-height: 1;
    letter-spacing: .3em;
  }
}
.fun #contest_gallery .ob-50 .rules__reg a {
  display: inline;
  padding-left: 5px;
}
.fun #contest_gallery div div.ratio-wrap,
.fun #test div div.ratio-wrap,
.fun #news div div.ratio-wrap {
  position: relative;
  height: 0;
}
.fun #contest_gallery div div.ratio-wrap div.ratio,
.fun #test div div.ratio-wrap div.ratio,
.fun #news div div.ratio-wrap div.ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fun #contest_gallery div div.ratio-wrap div.ratio > div,
.fun #test div div.ratio-wrap div.ratio > div,
.fun #news div div.ratio-wrap div.ratio > div {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.fun #contest_gallery div div.ratio-wrap div.ratio > div:hover .box-cover,
.fun #test div div.ratio-wrap div.ratio > div:hover .box-cover,
.fun #news div div.ratio-wrap div.ratio > div:hover .box-cover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.fun #contest_gallery div a,
.fun #test div a,
.fun #news div a {
  display: block;
  width: 100%;
  height: 100%;
}
.fun #contest_gallery div a .box-cover,
.fun #test div a .box-cover,
.fun #news div a .box-cover {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  visibility: hidden;
}
.fun #contest_gallery div a .box-cover:after,
.fun #test div a .box-cover:after,
.fun #news div a .box-cover:after {
  content: '';
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  border: 1px solid #FFF;
  position: absolute;
}
.fun #contest_gallery div a .box-inner,
.fun #test div a .box-inner,
.fun #news div a .box-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
.fun #contest_gallery div a strong,
.fun #test div a strong,
.fun #news div a strong,
.fun #contest_gallery div a span,
.fun #test div a span,
.fun #news div a span {
  display: block;
  text-align: center;
}
.fun #contest_gallery div a strong,
.fun #test div a strong,
.fun #news div a strong {
  font-size: 52px;
  line-height: 64px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 18px;
  padding: 15px;
  font-family: bebas, arial, sans-serif;
}
@media (max-width: 555px) {
  .fun #contest_gallery div a strong,
  .fun #test div a strong,
  .fun #news div a strong {
    font-size: 32px;
    letter-spacing: 8px;
  }
}
.fun #contest_gallery div a span,
.fun #test div a span,
.fun #news div a span {
  color: #FFF;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.fun #contest_gallery div a:hover .box-cover,
.fun #test div a:hover .box-cover,
.fun #news div a:hover .box-cover,
.fun #contest_gallery div a:active .box-cover,
.fun #test div a:active .box-cover,
.fun #news div a:active .box-cover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  visibility: visible;
  background: rgba(0, 0, 0, 0.25);
}
.fun .btn.btn-primary {
  width: auto;
  height: auto;
}
.fun .btn {
  width: 100%;
  height: 71px;
  font-family: bebas, arial, sans-serif;
  letter-spacing: 6px;
  cursor: pointer;
  margin: 0 auto;
  font-size: 21px;
}
.fun .container {
  width: 100%;
  zoom: 1;
}
.fun .container:before {
  content: '';
  display: block;
}
.fun .container:after {
  content: '';
  display: table;
  clear: both;
}
.fun .container.container--padded-left {
  padding-left: 0;
}
@media (min-width: 640px) {
  .fun .container.container--padded-left {
    padding-left: 50%;
  }
}
@media (min-width: 990px) {
  .fun .container.container--padded-left {
    padding-left: 33.333333%;
  }
}
.fun .container.container--contest {
  padding: 0 10px;
}
.fun .container.container--contest.mapActive .ob-50 {
  transform: translateX(-100%);
  transition: all 1s;
}
.fun .container.container--contest.mapActive .buttonHidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.fun .container.container--contest.mapActive .jsExit__form {
  display: none;
}
.fun .container.container--contest:not(mapActive) .ob-50 {
  transition: all 1s;
}
@media (max-width: 990px) {
  .fun .container.container--contest.mapActive .buttonHidden {
    display: none;
  }
  .fun .container.container--contest.mapActive .ob-50 {
    transform: translateX(0);
    transition: all 1s;
    opacity: 1;
  }
  .fun .container.container--contest.mapActive .ob-add-img {
    display: none !important;
  }
}
.fun .container .ob-33 {
  width: 33.33%;
  float: left;
}
.fun .container .ob-100 {
  width: 100%;
  float: left;
}
.fun .container .ob-50 {
  width: 50%;
  float: left;
  position: relative;
}
.fun .container .ob-16 {
  width: 16.66%;
  float: left;
}
.fun .container .ob-66 {
  width: 66.66%;
  float: left;
}
.fun a {
  cursor: pointer;
}
.fun-map {
  font-family: montserratlight, arial, sans-serif;
}
.fun-map #grid-top {
  padding: 0;
  margin-top: 0;
}
.fun-map #grid-top .box-cover {
  opacity: 0;
  visibility: hidden;
}
.fun-map #grid-top .ratio:hover .box-cover {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.45);
}
.fun-map #grid-top .box-inner {
  padding: 0 20px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
.fun-map #grid-top > div {
  padding: 0;
}
.fun-map #grid-top > div div.ratio-wrap {
  padding-bottom: 0;
  height: 481px;
}
.fun-map #grid-top > div.tile--66 div.ratio-wrap {
  padding-bottom: 76.76%;
}
.fun-map #grid-top a.preload-background-image-loaded {
  background-repeat: no-repeat;
  background-size: cover;
}
.fun-map #grid-top .tile {
  width: 34%;
}
.fun-map #grid-top .tile--66 {
  width: 66%;
}
@media (max-width: 1250px) {
  .fun-map #grid-top .tile {
    width: 50%;
  }
  .fun-map #grid-top .tile--66 {
    width: 100%;
  }
  .fun-map #grid-top > div.tile--66 div.ratio-wrap {
    padding-bottom: 0;
  }
}
@media (max-width: 653px) {
  .fun-map #grid-top .tile {
    width: 100%;
  }
  .fun-map #grid-top > div div.ratio-wrap {
    height: 371px;
  }
  .fun-map #grid-top > div.tile--66 div.ratio-wrap {
    padding-bottom: 481px;
  }
}
@media (max-width: 480px) {
  .fun-map #grid-top .tile {
    width: 100%;
  }
  .fun-map #grid-top > div div.ratio-wrap {
    height: 371px;
  }
  .fun-map #grid-top > div.tile--66 div.ratio-wrap {
    height: 100vw;
    padding-bottom: 100vw;
  }
}
@media (max-width: 356px) {
  .fun-map #grid-top > div div.ratio-wrap {
    height: 391px;
  }
}
@media (max-width: 320px) {
  .fun-map #grid-top > div.tile--66 div.ratio-wrap {
    height: 80vw;
    padding-bottom: 80vw;
  }
}
.fun-map h2 {
  font-size: 31px;
  letter-spacing: 0.025vw;
  text-transform: uppercase;
}
.fun-map p {
  line-height: 25px;
}
.fun-map .kids__fun {
  padding: 58px 15px 0;
  text-align: center;
  font-size: 16px;
  color: #505050;
}
.fun-map .kids__fun h2 {
  color: #000;
  margin-bottom: 37px;
}
.fun-map .kids__fun img {
  margin-bottom: 38px;
}
.fun-map .kids__fun p:first-of-type {
  padding-bottom: 25px;
}
@media (max-width: 850px) {
  .fun-map .kids__fun {
    padding-top: 28px;
  }
  .fun-map .kids__fun p {
    line-height: 20px;
  }
  .fun-map .kids__fun img {
    margin-bottom: 18px;
  }
  .fun-map .kids__fun h2 {
    margin-bottom: 17px;
  }
}
@media (max-width: 470px) {
  .fun-map .kids__fun {
    font-size: 14px;
  }
  .fun-map .kids__fun h2 {
    font-size: 26px;
  }
}
@media (max-width: 372px) {
  .fun-map .kids__fun p:first-of-type {
    padding-bottom: 15px;
  }
}
.fun-map .tile-contest {
  text-align: center;
  background: url('../img/fun/fun-map/fun-map-2.jpg') no-repeat 50% 50%;
}
.fun-map .tile-contest h2,
.fun-map .tile-contest p,
.fun-map .tile-contest a {
  color: #fff;
}
.fun-map .tile-contest h2 {
  margin-bottom: 17px;
}
.fun-map .tile-contest p {
  font-size: 18px;
  margin-bottom: 38px;
}
.fun-map .tile-contest > div a.btn {
  width: 185px !important;
  height: 61px !important;
  font-size: 17px;
  padding-top: 23px;
  border: 1px solid #fff;
  transition: all 0.5s;
  margin: 0 auto;
}
.fun-map .tile-contest > div a.btn:hover {
  background-color: #f05628;
  border-color: #f05628;
}
.fun-map #map-container .angular-google-map {
  position: absolute;
  width: 100%;
  height: 962px;
}
.fun-map #map-container .angular-google-map-container {
  width: 100%;
  height: 100%;
}
@media (max-width: 1250px) {
  .fun-map #map-container .angular-google-map {
    height: 481px;
  }
}
@media (max-width: 480px) {
  .fun-map #map-container .angular-google-map {
    height: 100vw;
  }
}
@media (max-width: 320px) {
  .fun-map #map-container .angular-google-map {
    height: 80vw;
  }
}
.fun--single .fun__header {
  height: 475px;
  margin-bottom: 0;
  background-size: cover;
}
.fun--single .fun__header .fun__header-inner h2 {
  font-size: 85px;
  letter-spacing: .2em;
}
.fun--single .fun__header .fun__header-inner p {
  font-family: montserratlight, arial, sans-serif;
  letter-spacing: .17em;
}
.fun--single .fun__header .fun__header-inner .fun__header-hashtag {
  font-family: bebas, arial, sans-serif;
  display: inline-block;
  font-size: 25px;
  letter-spacing: .3em;
  padding-top: 40px;
  text-transform: uppercase;
}
.fun--single .fun__header .fun__header-buttons {
  margin-top: 60px;
}
.fun--single .fun__header .fun__header-buttons li {
  display: inline-block;
  padding: 10px 90px;
}
.fun--single .fun__header .fun__header-buttons li a {
  background: transparent;
  font-family: bebas, arial, sans-serif;
  border: 1px solid #FFF;
  color: #FFF;
  display: inline-block;
  font-size: 25px;
  letter-spacing: .34em;
  padding: 20px 30px;
  text-indent: .34em;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.fun--single .fun__header .fun__header-buttons li a:hover,
.fun--single .fun__header .fun__header-buttons li a.active {
  background: #FFF;
  color: #000;
}
@media (max-width: 1680px) {
  .fun--single .fun__header .fun__header-buttons li {
    padding: 10px 30px;
  }
}
@media (max-width: 1024px) {
  .fun--single .fun__header {
    height: 653px;
  }
  .fun--single .fun__header .fun__header-inner h2 {
    font-size: 98px;
  }
  .fun--single .fun__header .fun__header-inner p {
    font-size: 18px;
  }
  .fun--single .fun__header .fun__header-inner .fun__header-hashtag {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .fun--single .fun__header .fun__header-inner h2 {
    font-size: 64px;
    line-height: 1;
  }
  .fun--single .fun__header .fun__header-inner p {
    font-size: 14px;
  }
  .fun--single .fun__header .fun__header-inner .fun__header-hashtag {
    font-size: 18px;
  }
}
.fun--single .fun__content .row {
  padding: 10px;
  zoom: 1;
}
.fun--single .fun__content .row:before {
  content: '';
  display: block;
}
.fun--single .fun__content .row:after {
  content: '';
  display: table;
  clear: both;
}
.fun--single .fun__content .col {
  float: left;
  padding: 10px;
  width: 33.333%;
}
.fun--single .fun__content .col > h3 {
  font-family: montserratlight, arial, sans-serif;
  font-size: 23px;
  padding-top: 80px;
  text-transform: none;
}
.fun--single .fun__content .col > p {
  font-family: montserratlight, arial, sans-serif;
  font-size: 18px;
  line-height: 23px;
  margin-top: 40px;
}
.fun--single .fun__content .col > img {
  max-width: 100%;
}
.fun--single .fun__content #owl-ratio {
  background: none;
  position: relative;
}
.fun--single .fun__content #owl-ratio .slide {
  padding: 120px 0;
  text-align: center;
}
.fun--single .fun__content #owl-ratio .slide img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 50%;
  height: auto;
  max-height: 20vw;
}
.fun--single .fun__content #owl-ratio .slide p {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 20px;
}
.fun--single .fun__content #owl-ratio .slide .btn {
  background: #FFF;
  font-family: bebas, arial, sans-serif;
  border: 1px solid #000;
  color: #000;
  display: inline-block;
  font-size: 25px;
  height: auto;
  letter-spacing: .34em;
  padding: 20px 30px;
  text-transform: uppercase;
  text-indent: .34em;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  width: auto;
}
.fun--single .fun__content #owl-ratio .slide .btn:hover {
  background: #000;
  color: #FFF;
}
.fun--single .fun__content .owl-controls {
  display: block!important;
}
.fun--single .fun__content .owl-controls .owl-buttons {
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
.fun--single .fun__content .owl-controls .owl-buttons > div {
  background: 50% 50% / contain no-repeat;
  width: 28px;
  height: 53px;
  color: transparent;
  zoom: 1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.fun--single .fun__content .owl-controls .owl-buttons > div:before {
  content: '';
  display: block;
}
.fun--single .fun__content .owl-controls .owl-buttons > div:after {
  content: '';
  display: table;
  clear: both;
}
.fun--single .fun__content .owl-controls .owl-buttons > div.owl-prev {
  background-image: url("../img/fun/prev.svg");
  float: left;
}
.fun--single .fun__content .owl-controls .owl-buttons > div.owl-next {
  background-image: url("../img/fun/next.svg");
  float: right;
}
.fun--single .fun__content .owl-controls .owl-buttons > div:hover.owl-prev {
  -webkit-transform: translateX(-5px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}
.fun--single .fun__content .owl-controls .owl-buttons > div:hover.owl-next {
  -webkit-transform: translateX(5px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.fun--single .fun__games .fun__header {
  height: 433px;
}
@media (max-width: 1024px) {
  .fun--single .fun__games .fun__header h2 {
    font-size: 60px;
  }
  .fun--single .fun__games .fun__header .fun__header-buttons li {
    padding: 5px 20px;
  }
  .fun--single .fun__games .fun__header .fun__header-buttons li a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .fun--single .fun__games .fun__header h2 {
    font-size: 60px;
  }
  .fun--single .fun__games .fun__header .fun__header-buttons li a {
    font-size: 16px;
    letter-spacing: .2em;
    width: 350px;
  }
}
@media (max-width: 480px) {
  .fun--single .fun__games .fun__header .fun__header-buttons li a {
    font-size: 13px;
    letter-spacing: .1em;
    width: 100%;
  }
}
.fun--single .fun__games .tiles__list .tile .ratio-wrap {
  padding-bottom: 60%;
}
.fun--single .fun__games .tiles__list .tile .ratio-wrap .ratio .box-inner .btn {
  width: auto;
  height: auto;
}
.fun--single .fun__games .tiles__list .tile--w2 {
  width: 66.666%;
}
.fun--single .fun__games .tiles__list .tile--w2 .ratio-wrap .ratio .box-inner {
  left: auto;
  right: 0;
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, -50%) translateZ(0) scale(1, 1);
  transform: translate(0, -50%) translateZ(0) scale(1, 1);
}
.fun--single .fun__games .tiles__list .tile--w2 .ratio-wrap .ratio .box-inner .btn {
  margin-top: 35px;
  width: auto;
  height: auto;
}
.fun--single .fun__games .tiles__list .tile--w2 .ratio-wrap .ratio .box-inner > span {
  font-size: 18px;
  text-transform: none;
}
.fun--single .fun__games .tiles__list .tile--w2 .ratio-wrap .ratio .box-inner .icon {
  margin-bottom: 50px;
}
.fun--single .fun__games .tiles__list .tile--w2 .ratio-wrap .ratio .hashtag {
  display: block;
  padding-top: 40px;
}
.fun--single .fun__games .tiles__list .tile--h2 .ratio-wrap {
  padding-bottom: calc(120% + 12px);
}
@media (max-width: 1480px) {
  .fun--single .fun__games .tiles__list .tile .ratio-wrap .ratio .box-inner .btn {
    margin-top: 15px;
    font-size: 18px;
    padding: 12px 20px;
  }
}
@media (max-width: 1366px) {
  .fun--single .fun__games .tiles__list .tile .ratio-wrap .ratio .box-inner .btn {
    margin-top: 15px;
    font-size: 16px;
    padding: 16px 24px;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap .ratio .box-inner > img {
    max-width: 50px;
    height: auto;
    margin-bottom: 30px;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap .ratio .box-inner .hashtag {
    padding-top: 20px;
  }
}
@media (max-width: 1024px) {
  .fun--single .fun__games .tiles__list {
    padding: 5px;
  }
  .fun--single .fun__games .tiles__list .tile {
    padding: 5px;
  }
  .fun--single .fun__games .tiles__list .tile .ratio-wrap .ratio .box-inner .btn {
    margin-top: 10px;
    font-size: 16px;
    padding: 10px 15px;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap {
    padding-bottom: calc(60% + 5px);
  }
}
@media (max-width: 990px) {
  .fun--single .fun__games .tiles__list .tile {
    width: 33.333%;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 {
    width: 66.666%;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap {
    padding-bottom: calc(60% + 5px);
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap .ratio .box-inner > img {
    max-width: 40px;
    margin-bottom: 10px;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap .ratio .box-inner > span {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .fun--single .fun__games .tiles__list {
    padding: 10px;
  }
  .fun--single .fun__games .tiles__list .tile {
    padding: 10px;
    width: 50%;
  }
  .fun--single .fun__games .tiles__list .tile .ratio-wrap {
    padding-bottom: 50%;
  }
  .fun--single .fun__games .tiles__list .tile.tile--fotospacer {
    width: 100%;
  }
  .fun--single .fun__games .tiles__list .tile.tile--fotospacer .ratio-wrap {
    padding-bottom: 25%;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 {
    width: 50%;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap {
    padding-bottom: 160%;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap .ratio .box-inner > img {
    margin-bottom: 20px;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap .ratio .box-inner > strong {
    font-size: 36px;
    line-height: 1;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap .ratio .box-inner > span {
    margin-bottom: 15px;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap .ratio .box-inner > .hashtag {
    font-size: 13px;
    line-height: 1;
    letter-spacing: .2em;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap .ratio .box-inner .btn {
    font-size: 21px;
    padding: 15px 30px;
  }
  .fun--single .fun__games .tiles__list .tile.tile--h2 {
    width: 50%;
    margin-top: calc(-50% - 10px);
  }
  .fun--single .fun__games .tiles__list .tile.tile--h2 .ratio-wrap {
    padding-bottom: calc(100% + 10px);
  }
}
@media (max-width: 520px) {
  .fun--single .fun__games .tiles__list .tile {
    width: 100%;
  }
  .fun--single .fun__games .tiles__list .tile .ratio-wrap {
    padding-bottom: 46%;
  }
  .fun--single .fun__games .tiles__list .tile .ratio-wrap .ratio .box-inner > img {
    max-width: 45px;
  }
  .fun--single .fun__games .tiles__list .tile .ratio-wrap .ratio .box-inner .btn {
    margin-top: 0;
  }
  .fun--single .fun__games .tiles__list .tile.tile--fotospacer .ratio-wrap {
    padding-bottom: 46%;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 {
    width: 100%;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap {
    padding-bottom: 190%;
  }
  .fun--single .fun__games .tiles__list .tile.tile--w2 .ratio-wrap .ratio .box-inner .btn {
    margin-top: 40px;
  }
  .fun--single .fun__games .tiles__list .tile.tile--h2 {
    width: 100%;
    margin-top: 0;
  }
  .fun--single .fun__games .tiles__list .tile.tile--h2 .ratio-wrap {
    padding-bottom: 140%;
  }
}
@media (max-width: 1600px) {
  .fun--single .fun__content .col > h3 {
    font-size: 20px;
    padding-top: 20px;
  }
  .fun--single .fun__content .col > p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
  }
}
@media (max-width: 1365px) {
  .fun--single .fun__content .col > h3 {
    font-size: 18px;
    line-height: 22px;
    padding-top: 0;
  }
  .fun--single .fun__content .col > p {
    font-size: 14px;
    line-height: 18px;
    margin-top: 20px;
  }
  .fun--single .fun__content .col br {
    display: none;
  }
  .fun--single .fun__content #owl-ratio {
    height: 100%;
    padding-bottom: 0;
  }
  .fun--single .fun__content #owl-ratio .slide {
    padding: 60px 0;
  }
  .fun--single .fun__content #owl-ratio .owl-buttons {
    left: 0;
    right: 0;
  }
}
@media (max-width: 1024px) {
  .fun--single .fun__content .col > h3 {
    font-size: 15px;
    line-height: 18px;
  }
  .fun--single .fun__content .col > p {
    font-size: 13px;
    line-height: 16px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .fun--single .fun__content .col {
    width: 50%;
    padding: 30px 10px;
  }
  .fun--single .fun__content .col:last-child {
    margin-bottom: 50px;
    padding: 10px;
    width: 100%;
  }
  .fun--single .fun__content .col:last-child > img {
    display: block;
    margin: 0 auto;
  }
  .fun--single .fun__content #owl-ratio .slide {
    padding: 30px 0;
  }
  .fun--single .fun__content #owl-ratio .slide .btn {
    font-size: 16px;
  }
  .fun--single .fun__content #owl-ratio .slide img {
    max-height: 30vw;
  }
}
@media (max-width: 480px) {
  .fun--single .fun__content .col {
    width: 100%;
  }
  .fun--single .fun__content .col:last-child {
    width: 100%;
  }
  .fun--single .fun__content #owl-ratio .slide img {
    max-height: 50vw;
  }
}
@media (max-width: 1024px) {
  .fun--single.coloring-books .fun__header {
    height: 360px;
  }
}
.fun--single.coloring-books .fun__header-inner h2 {
  letter-spacing: .025em;
}
.fun--single.coloring-books .fun__header-inner p {
  font-family: bebas, arial, sans-serif;
  font-size: 32px;
  line-height: 1;
  margin-top: 10px;
}
@media (min-width: 990px) {
  .fun--single.coloring-books .fun__header-inner p {
    font-size: 56px;
    letter-spacing: .025em;
  }
}
.fun--single.coloring-books .fun__games .tiles__list .tile {
  width: 50%;
}
@media (max-width: 640px) {
  .fun--single.coloring-books .fun__games .tiles__list .tile {
    width: 100%;
  }
}
.fun--single.coloring-books .fun__games .tiles__list .tile .ratio-wrap {
  padding-bottom: 40%;
}
@media (max-width: 990px) {
  .fun--single.coloring-books .fun__games .tiles__list .tile .ratio-wrap .ratio .box-inner strong {
    font-size: 24px;
  }
}
@media (max-width: 990px) {
  .fun--single.coloring-books .fun__games .tiles__list .tile .ratio-wrap .ratio .box-inner span {
    font-size: 14px;
  }
}
.fun--single.coloring-books .fun__games .tiles__list .tile--w2 {
  width: 100%;
}
.fun--single.coloring-books .fun__games .tiles__list .tile--w2 .ratio-wrap {
  padding-bottom: 23%;
}
@media (max-width: 990px) {
  .fun--single.coloring-books .fun__games .tiles__list .tile--w2 .ratio-wrap {
    padding-bottom: 400px;
  }
}
.fun--single.coloring-books .fun__games .tiles__list .tile--w2 .ratio-wrap .ratio > div {
  background-position: 50% 50%;
}
.fun--single.coloring-books .fun__games .tiles__list .tile--w2 .ratio-wrap .ratio .box-inner {
  max-width: 100%;
}
.fun--single.coloring-books .fun__games .tiles__list .tile--w2 .ratio-wrap .ratio .box-inner strong br {
  display: none;
}
.fun--single.coloring-books .fun__games .tiles__list .tile--w2 .ratio-wrap .ratio .box-inner .icon {
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .fun--single.coloring-books .fun__games .tiles__list .tile--w2 .ratio-wrap .ratio .box-inner .icon {
    max-width: 25px;
  }
}
.fun--single.coloring-books .fun__games .tiles__list .tile--w2 .ratio-wrap .ratio .box-inner .hashtag {
  padding-top: 0;
}
.fun--single.coloring-books .fun__games .tiles__list .tile--w2 .ratio-wrap .ratio .box-inner .btn {
  margin-top: 0;
}
.fun-contest .box-winner {
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: 100px;
  margin: 10px;
}
.fun-contest .box-winner > img {
  max-width: 30px;
  display: block;
  margin: 0 auto;
}
.fun-contest .box-winner > span {
  font-family: montserratlight, arial, sans-serif;
  font-size: 12px;
  color: #FFF;
  padding-top: 10px;
  display: block;
  text-align: center;
}
@media (max-width: 990px) {
  .fun-contest .box-winner {
    left: 2%;
    top: 2%;
  }
  .fun-contest .box-winner > img {
    max-width: 20px;
  }
  .fun-contest .box-winner > span {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .fun-contest .box-winner > span {
    display: none;
  }
}
.fun-contest p {
  font-family: montserratlight, arial, sans-serif;
  font-size: 18px;
}
.fun-contest .fun-contest__header {
  height: 475px;
  background: url("../img/fun/fun-contest-head.jpg") 50% 50% / cover no-repeat;
  position: relative;
  color: #fff;
}
.fun-contest .fun-contest__header .fun-contest__header-inner {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
.fun-contest .fun-contest__header .fun-contest__header-inner h2 {
  font-size: 80px;
  letter-spacing: 6px;
  font-family: bebas, arial, sans-serif;
}
.fun-contest .fun-contest__header .fun-contest__header-inner p {
  margin-top: 35px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .fun-contest .fun-contest__header {
    height: 650px;
  }
}
@media (max-width: 540px) {
  .fun-contest .fun-contest__header .fun-contest__header-inner h2 {
    font-size: 40px;
    letter-spacing: .2em;
  }
  .fun-contest .fun-contest__header .fun-contest__header-inner p {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .17em;
  }
}
.fun-contest .contest-info .contest-info-list .ratio > div {
  display: table;
}
.fun-contest .contest-info .contest-info-list .ratio > div .ratio-inner {
  display: table-cell;
  vertical-align: middle;
}
@media (min-width: 640px) and (max-width: 990px) {
  .fun-contest .contest-info .contest-info-list .tile:last-of-type {
    display: none;
  }
}
@media (max-width: 640px) {
  .fun-contest .contest-info .contest-info-list .tile:first-of-type {
    display: none;
  }
}
.fun-contest .contest-info .contest-info-list .contest-info-element p {
  text-align: center;
  color: #000;
  padding-top: 32px;
  line-height: 23px;
  font-weight: 600;
}
.fun-contest .contest-info .contest-info-list .contest-info-element p:first-child {
  padding-top: 0;
}
.fun-contest .contest-info .contest-info-list .contest-info-element .orange {
  color: #f59f24;
}
@media (max-width: 1366px) {
  .fun-contest .contest-info .contest-info-list .contest-info-element p {
    font-size: 16px;
    line-height: 18px;
    padding-top: 15px;
  }
}
@media (max-width: 1024px) {
  .fun-contest .contest-info .contest-info-list .contest-info-element p {
    font-size: 12px;
    line-height: 14px;
  }
}
@media (max-width: 640px) {
  .fun-contest .contest-info .contest-info-list .contest-info-element p {
    font-size: 17px;
    line-height: 22px;
  }
}
@media (max-width: 480px) {
  .fun-contest .contest-info .contest-info-list .contest-info-element p {
    padding-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }
}
.fun-contest .gallery__header {
  padding: 70px 20px;
}
.fun-contest .gallery__header h3 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
}
.fun-contest .gallery__header p {
  font-size: 18px;
  text-align: center;
}
.fun-contest .gallery__slider {
  margin-bottom: 60px;
}
.fun-contest .gallery__slider #owl-ratio {
  background: none;
  height: auto;
  padding-bottom: 0;
}
.fun-contest .gallery__slider #owl-ratio .owl-item {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.fun-contest .gallery__slider #owl-ratio .owl-controls {
  display: block!important;
}
.fun-contest .gallery__slider #owl-ratio .owl-controls .owl-buttons {
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
.fun-contest .gallery__slider #owl-ratio .owl-controls .owl-buttons > div {
  background: 50% 50% / contain no-repeat;
  width: 28px;
  height: 53px;
  color: transparent;
  zoom: 1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.fun-contest .gallery__slider #owl-ratio .owl-controls .owl-buttons > div:before {
  content: '';
  display: block;
}
.fun-contest .gallery__slider #owl-ratio .owl-controls .owl-buttons > div:after {
  content: '';
  display: table;
  clear: both;
}
.fun-contest .gallery__slider #owl-ratio .owl-controls .owl-buttons > div.owl-prev {
  background-image: url("../img/fun/prev.svg");
  float: left;
}
.fun-contest .gallery__slider #owl-ratio .owl-controls .owl-buttons > div.owl-next {
  background-image: url("../img/fun/next.svg");
  float: right;
}
.fun-contest .gallery__slider #owl-ratio .owl-controls .owl-buttons > div:hover.owl-prev {
  -webkit-transform: translateX(-5px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}
.fun-contest .gallery__slider #owl-ratio .owl-controls .owl-buttons > div:hover.owl-next {
  -webkit-transform: translateX(5px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.fun-contest .gallery__slider .tiles__list .tile--big {
  width: 100%;
}
.fun-contest .gallery__slider .tiles__list .tile--big .ratio-wrap {
  padding-bottom: 66%;
}
.fun-contest .gallery__slider .tiles__list .tile--big .ratio-wrap .ratio > div .ratio-inner .box-cover {
  overflow: hidden;
}
.fun-contest .gallery__slider .tiles__list .tile--big .ratio-wrap .ratio > div .ratio-inner .box-cover .box-inner {
  align-items: center;
  background: #ad957f;
  display: flex;
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  width: calc(33.333% - 10px);
  -webkit-transform: translate(100%, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transform: translate(100%, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(100%, 0) translateZ(0) scale(1, 1);
  -o-transform: translate(100%, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, 0) translateZ(0) scale(1, 1);
  transform: translate(100%, 0) translateZ(0) scale(1, 1);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.fun-contest .gallery__slider .tiles__list .tile--big .ratio-wrap .ratio > div .ratio-inner .box-cover .box-inner .box-container {
  width: 100%;
  text-align: center;
}
.fun-contest .gallery__slider .tiles__list .tile--big .ratio-wrap .ratio > div .ratio-inner .box-cover .box-inner .box-container strong {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: .35em;
}
.fun-contest .gallery__slider .tiles__list .tile--big .ratio-wrap .ratio > div .ratio-inner .box-cover .box-inner .box-container span {
  font-size: 15px;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: .35em;
}
.fun-contest .gallery__slider .tiles__list .tile--big .ratio-wrap .ratio > div .ratio-inner .box-cover .box-inner .box-container > img {
  margin: 30px auto;
}
.fun-contest .gallery__slider .tiles__list .tile--big .ratio-wrap .ratio > div:hover .ratio-inner .box-cover .box-inner {
  -webkit-transform: translateX(0) translateZ(0) scale(1, 1);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.fun-contest .gallery__slider .tiles__list .tile--small {
  width: 33.333%;
}
.fun-contest .gallery__slider .tiles__list .tile--small .tile__bg {
  background: #87001c;
}
.fun-contest .gallery__slider .tiles__list .tile--wide {
  width: 66.666%;
}
.fun-contest .gallery__slider .tiles__list .tile--wide .ratio-wrap {
  padding-bottom: calc(50% - 10px);
}
.fun-contest .gallery__slider .tiles__list .tile--link .ratio-wrap .ratio .ratio-inner .box-cover .box-inner span {
  font-size: 21px;
  line-height: 24px;
}
.fun-contest .gallery__slider .tiles__list .tile--link .ratio-wrap .ratio .ratio-inner .box-cover .box-inner > img {
  margin-bottom: 20px;
}
.fun-contest .gallery__slider .tiles__list .tile--normal {
  width: 66.666%;
}
@media (max-width: 1366px) {
  .fun-contest .gallery .tiles__list .tile.tile--link .ratio-wrap .ratio .ratio-inner .box-cover .box-inner span {
    font-size: 16px;
    line-height: 20px;
  }
  .fun-contest .gallery .tiles__list .tile.tile--link .ratio-wrap .ratio .ratio-inner .box-cover .box-inner > img {
    max-width: 40px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1200px) {
  .fun-contest .gallery .tiles__list .tile.tile--link .ratio-wrap .ratio .ratio-inner .box-cover .box-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .fun-contest .gallery .tiles__list .tile.tile--link .ratio-wrap .ratio .ratio-inner .box-cover .box-inner span {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
  }
  .fun-contest .gallery .tiles__list .tile.tile--link .ratio-wrap .ratio .ratio-inner .box-cover .box-inner > img {
    max-width: 30px;
    height: auto;
  }
  .fun-contest .gallery .tiles__list .tile.tile--big .ratio-wrap .ratio > div .ratio-inner .box-cover .box-inner .box-container strong {
    font-size: 14px;
  }
  .fun-contest .gallery .tiles__list .tile.tile--big .ratio-wrap .ratio > div .ratio-inner .box-cover .box-inner .box-container span {
    font-size: 13px;
    letter-spacing: .2em;
  }
}
@media (max-width: 540px) {
  .fun-contest .gallery .gallery__header {
    padding: 50px 5%;
  }
  .fun-contest .gallery .tiles__list .tile.tile--link .ratio-wrap .ratio .ratio-inner .box-cover .box-inner {
    padding: 10px;
  }
  .fun-contest .gallery .tiles__list .tile.tile--link .ratio-wrap .ratio .ratio-inner .box-cover .box-inner span {
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0;
  }
  .fun-contest .gallery .tiles__list .tile.tile--link .ratio-wrap .ratio .ratio-inner .box-cover .box-inner > img {
    max-width: 25px;
    height: auto;
    margin-bottom: 0;
  }
  .fun-contest .gallery .tiles__list .tile.tile--big .ratio-wrap .ratio > div .ratio-inner .box-cover .box-inner {
    width: 40%;
  }
  .fun-contest .gallery .tiles__list .tile.tile--big .ratio-wrap .ratio > div .ratio-inner .box-cover .box-inner .box-container strong {
    font-size: 12px;
  }
  .fun-contest .gallery .tiles__list .tile.tile--big .ratio-wrap .ratio > div .ratio-inner .box-cover .box-inner .box-container span {
    font-size: 10px;
    letter-spacing: .1em;
  }
  .fun-contest .gallery .tiles__list .tile.tile--big .ratio-wrap .ratio > div .ratio-inner .box-cover .box-inner .box-container img {
    max-width: 25px;
    margin: 5px 0;
    height: auto;
  }
}
.fun-contest .form {
  width: 100%;
  font: 13px/18px Adrianna, "Trebuchet MS", Arial, Helvetica, sans-serif;
  padding: 0 10px;
}
.fun-contest .form h4 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 98px;
  font-family: bebas, arial, sans-serif;
  letter-spacing: 7px;
}
.fun-contest .form .add-img {
  width: 100%;
  max-width: 655px;
  height: 258px;
  background: url("../img/fun/add-img.jpg") 100% 50% no-repeat;
  padding: 72px 0 0 63px;
  margin-bottom: 8px;
  color: #fff;
}
.fun-contest .form .add-img p {
  font-size: 15px;
  margin-bottom: 64px;
  font-weight: 600;
  letter-spacing: 3px;
}
.fun-contest .form .add-img .add-pic-btns {
  padding: 20px 27px;
  border: 1px solid #fff;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 5px;
  font-family: bebas, arial, sans-serif;
  transition: background-color 0.5s, color 0.5s;
}
.fun-contest .form .add-img .add-pic-btns:hover {
  background-color: #fff;
  color: #f59f24;
  transition: all 0.5s;
}
.fun-contest .form .upload-img {
  position: relative;
}
.fun-contest .form .upload-img .arrow-down {
  background: url("../img/foot-arrow.png") no-repeat;
  height: 19px;
  width: 14px;
  display: block;
  cursor: pointer;
}
.fun-contest .form .upload-img .file-name > img {
  display: inline-block;
  max-width: 25px;
  vertical-align: middle;
  margin-right: 5px;
}
.fun-contest .form .upload-img .file-name > span {
  vertical-align: middle;
}
.fun-contest .form .upload-img p {
  font-size: 10px;
  font-weight: 800;
  padding-left: 12px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.fun-contest .form .upload-img p .exit {
  background: url("../img/exit.png") no-repeat;
  height: 9px;
  width: 20px;
  float: right;
  position: relative;
  display: inline-block;
  top: 5px;
  cursor: pointer;
}
.fun-contest .form .form-container {
  width: 100%;
  max-width: 655px;
  padding: 10px;
  margin: 0 auto;
}
.fun-contest .form .form-container form .div-form {
  margin-top: 30px;
}
.fun-contest .form .form-container form .div-form input[type="checkbox"] {
  display: inline-block;
  vertical-align: middle;
}
.fun-contest .form .form-container form .div-form .input-half {
  float: left;
  width: 50%;
}
.fun-contest .form .form-container form .div-form .input-half:first-child {
  padding-right: 10px;
}
.fun-contest .form .form-container form .div-form .input-half:nth-child(2) {
  padding-left: 10px;
}
.fun-contest .form .form-container form .div-form .input {
  width: 100%;
  height: 52px;
  margin: 0px;
  padding-left: 13px;
  text-transform: none;
  letter-spacing: 1px;
}
.fun-contest .form .form-container form .div-form .input.ng-untouched {
  border: 1px solid #bdbdbd;
  box-shadow: none;
}
.fun-contest .form .form-container form .div-form .input.ng-invalid:not(.ng-untouched) {
  border: 1px solid rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 3px 0 rgba(255, 0, 0, 0.5);
}
.fun-contest .form .form-container form .div-form .input.ng-valid:not(.ng-untouched) {
  border: 1px solid rgba(27, 204, 102, 0.5);
  box-shadow: 0 0 3px 0 rgba(27, 204, 102, 0.5);
}
.fun-contest .form .form-container form .div-form .form-object {
  padding-bottom: 19px;
  float: left;
  font-size: 14px;
}
.fun-contest .form .form-container form .div-form .form-object .error {
  color: #ff0000;
  display: block;
  font-size: 15px;
}
.fun-contest .form .form-container form .div-form .form-object span {
  font-weight: 500;
  padding-left: 15px;
  letter-spacing: 2px;
}
@media (max-width: 520px) {
  .fun-contest .form .form-container form .div-form .form-object {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .fun-contest .form .form-container form .div-form .form-object.name,
  .fun-contest .form .form-container form .div-form .form-object.age {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .fun-contest .form .form-container form .div-form .form-object.contest input[type="submit"] {
    letter-spacing: .3em;
  }
  .fun-contest .form .form-container form .div-form .form-object.input-half:first-child {
    padding-right: 0;
  }
  .fun-contest .form .form-container form .div-form .form-object.input-half:nth-child(2) {
    padding-left: 0;
  }
}
.fun-contest .form .form-container form .div-form .name {
  width: 75.28%;
  padding-right: 10px;
}
.fun-contest .form .form-container form .div-form .age {
  width: 24.71%;
  padding-left: 10px;
}
.fun-contest .form .form-container form .div-form .email-field {
  width: 100%;
}
.fun-contest .form .form-container form .div-form .full {
  width: 100%;
}
.fun-contest .form .form-container form .div-form .full.place {
  padding-bottom: 34px;
}
.fun-contest .form .form-container form .div-form .full.place > p {
  font-size: 14px;
  padding: 10px 0;
}
.fun-contest .form .form-container form .div-form .place {
  position: relative;
}
.fun-contest .form .form-container form .div-form .place:after {
  position: absolute;
  content: url("../img/fun-p.jpg");
  right: 15px;
  top: 15px;
}
.fun-contest .form .form-container form .div-form .club-number {
  width: 54.634%;
  padding-right: 10px;
}
.fun-contest .form .form-container form .div-form .phone-number {
  width: 45.365%;
  padding-left: 10px;
}
.fun-contest .form .form-container form .div-form .no-club {
  width: 61.30%;
  padding-right: 10px;
}
.fun-contest .form .form-container form .div-form .register {
  width: 38.70%;
  padding-left: 10px;
  font-size: 18px;
  font-family: bebas, arial, sans-serif;
  background-color: #cecdcd;
  text-align: center;
  height: 52px;
  letter-spacing: 10px;
  transition: background-color 0.5s;
}
.fun-contest .form .form-container form .div-form .register div {
  padding-top: 18px;
  color: #fff;
}
.fun-contest .form .form-container form .div-form .register:hover {
  background-color: #87001c;
  transition: background-color 0.5s;
}
.fun-contest .form .form-container form .div-form .rules {
  letter-spacing: .1em;
  font-size: 10px;
}
.fun-contest .form .form-container form .div-form .rules a {
  color: #000;
  text-decoration: underline;
}
.fun-contest .form .form-container form .div-form .rules a span {
  padding-left: 9px;
}
.fun-contest .form .form-container form .div-form .rules span {
  padding-left: 10px;
}
.fun-contest .form .form-container form .div-form .contest input {
  background-color: #87001c;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 10px;
  border: 0px;
  font-family: bebas, arial, sans-serif;
  transition: background-color 0.5s;
}
.fun-contest .form .form-container form .div-form .contest input:hover {
  background-color: #000;
  transition: all 0.5s;
}
.fun-contest .form .ng-error li {
  color: red;
  font-size: 12px;
  padding-top: 5px;
}
.fun-contest .form .thank-you {
  padding: 30px 0;
}
.fun-contest .form .thank-you img {
  display: block;
  max-width: 70px;
  margin: 0 auto;
}
.fun-contest .form .thank-you h3 {
  margin-top: 30px;
  font-size: 40px;
  line-height: 1;
  letter-spacing: .2em;
  text-align: center;
}
.fun-contest .fun-contest__foot .tile--wide {
  width: 66.666%;
}
.fun-contest .fun-contest__foot .tile--wide .ratio-wrap {
  padding-bottom: calc(25% - 15px);
}
.fun-contest .fun-contest__foot .tile--wide .ratio-wrap .ratio > a .box-inner .btn,
.fun-contest .fun-contest__foot .tile--wide .ratio-wrap .ratio > div .box-inner .btn {
  margin-top: 0;
}
@media (max-width: 1200px) {
  .fun-contest .fun-contest__foot .tile--wide .ratio-wrap .ratio > a .box-inner,
  .fun-contest .fun-contest__foot .tile--wide .ratio-wrap .ratio > div .box-inner {
    max-width: 100%;
  }
  .fun-contest .fun-contest__foot .tile--wide .ratio-wrap .ratio > a .box-inner .btn,
  .fun-contest .fun-contest__foot .tile--wide .ratio-wrap .ratio > div .box-inner .btn {
    height: auto;
    max-width: 220px;
    padding: 18px;
    position: absolute;
    right: 20px;
    top: 50%;
    font-size: 16px;
    letter-spacing: .2em;
    -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
  }
}
@media (max-width: 990px) {
  .fun-contest .fun-contest__foot .tile {
    width: 33.333%;
  }
  .fun-contest .fun-contest__foot .tile--wide {
    width: 66.666%;
  }
  .fun-contest .fun-contest__foot .tile--wide .ratio-wrap .ratio > a .box-inner > img,
  .fun-contest .fun-contest__foot .tile--wide .ratio-wrap .ratio > div .box-inner > img {
    max-width: 150px;
  }
}
@media (max-width: 580px) {
  .fun-contest .fun-contest__foot .tile {
    width: 100%;
  }
  .fun-contest .fun-contest__foot .tile--wide {
    width: 100%;
  }
  .fun-contest .fun-contest__foot .tile--wide .ratio-wrap {
    padding-bottom: 50%;
  }
  .fun-contest .fun-contest__foot .tile--wide .ratio-wrap .ratio > a .box-inner .btn,
  .fun-contest .fun-contest__foot .tile--wide .ratio-wrap .ratio > div .box-inner .btn {
    position: static;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
  }
}
.cropper .cropper-img {
  padding: 20px 0 5px;
}
.cropper .cropper-img img {
  max-width: 100%;
}
.cropper .cropper-img .cropper-view-box {
  outline: 1px solid #f05628;
}
.cropper .cropper-img .cropper-line {
  background-color: #f05628;
}
.cropper .cropper-img .cropper-point {
  background-color: #f05628;
}
.cropper .cropper-output {
  opacity: 0;
  visibility: hidden;
  height: 1px;
  overflow: hidden;
}
.cropper .cropper-actions {
  overflow: hidden;
}
.cropper .cropper-actions .cropper-btns {
  float: left;
  margin-right: 5px;
}
.cropper .cropper-actions .cropper-btns .btn {
  background-color: #f05628;
  color: #ffffff;
  border: 0;
  transition: background-color 0.5s;
  padding: 0 10px;
  line-height: 34px;
}
.cropper .cropper-actions .cropper-btns .btn:hover {
  background-color: #000;
  transition: all 0.5s;
}
.cropper .cropper-actions .cropper-btns-1 .btn {
  font-size: 14px;
}
.cropper .cropper-actions .cropper-btns-2 .btn {
  font-size: 18px;
}
.months-slider {
  display: block;
  height: 57px;
  margin: 0 70px;
}
.months-slider:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e0e0e0;
}
.months-slider__list {
  margin-bottom: 7px;
  z-index: 2;
}
.months-slider__item {
  float: left;
  text-align: center;
}
.months-slider__item a {
  height: 50px;
  position: relative;
  text-transform: uppercase;
  font-size: 19px;
  padding-top: 18px;
  color: #666666;
  font-family: bebas, arial, sans-serif;
  display: block;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  -o-transform: translate(0px);
}
.months-slider__item a:after {
  content: '';
  border: 1px solid #e0e0e0;
  border-radius: 100%;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 50%;
  margin-left: -7px;
  bottom: -7px;
  background-color: #ffffff;
  z-index: 5;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.months-slider__item a:hover {
  color: #000000;
}
.months-slider__item a:hover:after {
  background-color: #e92e00;
  border-color: #e92e00;
}
.months-slider__item.swiper-slide-active a {
  cursor: default;
  font-size: 30px;
  color: #000000;
  padding-top: 0;
}
.months-slider__item.swiper-slide-active a:after {
  background-color: #e92e00;
  border-color: #e92e00;
}
.months-slider__button {
  background: none;
  font-size: 38px;
  color: #ff3300;
  width: auto;
  height: 38px;
  margin-top: -19px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.months-slider__button--prev {
  left: 0;
}
.months-slider__button--next {
  right: 0;
}
.months-slider__button:hover {
  font-size: 44px;
}
.months-slider__button.swiper-button-prev.swiper-button-disabled,
.months-slider__button.swiper-button-next.swiper-button-disabled {
  opacity: 1;
  color: #b2b2b2;
}
.my-shop {
  /*global my-shop*/
  font-family: montserratregular, arial, sans-serif;
  /*.step, .download, h4 {
    padding-left: 99px;
  }*/
  /*
  /  RWD
  */
}
.my-shop .container {
  width: 100%;
}
.my-shop .container:after {
  content: '';
  display: table;
  clear: both;
}
.my-shop .col-50 {
  width: 50%;
  float: left;
  /*  info-register */
  /*  steps */
}
.my-shop .col-50--info-register {
  background: url("../img/my-shop/shop_img_2.jpg") 50% 0 / cover no-repeat;
  background-size: cover;
  min-height: 962px;
  color: #fff;
  position: relative;
  text-transform: uppercase;
}
.my-shop .col-50--info-register .text {
  position: absolute;
  width: 430px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.my-shop .col-50--info-register h2 {
  font-family: ainslie, arial, sans-serif;
  font-size: 50px;
  letter-spacing: .05em;
  padding-bottom: 47px;
}
.my-shop .col-50--info-register p {
  font-family: ainslie, arial, sans-serif;
  font-size: 30px;
  line-height: 32px;
  letter-spacing: .05em;
}
.my-shop .col-50--info-register p:after {
  content: '';
  background: url("../img/my-shop/arrow-w.png") no-repeat;
  transform: translateX(-60px);
  -webkit-transform: translateX(-60px);
  margin-top: 40px;
  height: 34px;
  display: block;
  width: 89px;
  position: absolute;
}
.my-shop .col-50--steps {
  letter-spacing: 1px;
  line-height: 27px;
  padding: 0 99px;
}
.my-shop .col-50--steps h4 {
  font-size: 20px;
  width: 551px;
  margin: 98px 0 95px;
  text-transform: none;
}
.my-shop .col-50--steps div {
  font-size: 14px;
  padding-bottom: 35px;
}
.my-shop .col-50--steps div p {
  display: inline-block;
}
.my-shop .col-50--steps .step__1 p,
.my-shop .col-50--steps .step__2 p,
.my-shop .col-50--steps .step__3 p {
  padding-left: 70px;
}
.my-shop .col-50--steps .step__2:before {
  content: '';
  background: url("../img/my-shop/arrow-c.png") no-repeat;
  height: 40px;
  width: 20px;
  position: absolute;
  transform: translate(23px, -50px);
  -webkit-transform: translate(23px, -50px);
}
.my-shop .col-50--steps .step__3:before {
  content: '';
  background: url("../img/my-shop/arrow-c.png") no-repeat;
  transform: scaleX(-1) translate(4px, -47px);
  -webkit-transform: scaleX(-1) translate(4px, -47px);
  height: 40px;
  width: 20px;
  position: absolute;
}
.my-shop .col-50--steps .step__1 p {
  width: 589px;
}
.my-shop .col-50--steps .step__2 p {
  width: 484px;
}
.my-shop .col-50--steps .step__3 p {
  width: 346px;
}
.my-shop .col-50--steps .step__circle {
  width: 40px;
  height: 40px;
  background-color: #f37032;
  border-radius: 100%;
  font-size: 16px;
  color: #fff;
  display: inline-block;
  position: absolute;
  margin-top: 7px;
}
.my-shop .col-50--steps .step__circle span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}
.my-shop .col-50--steps .download {
  border-top: 1px solid #d7d7d7;
  width: 430px;
  padding: 46px 0 84px;
  margin: 17px 0 0;
  line-height: 19px;
}
.my-shop .col-50--steps .download__app {
  margin-right: 14px;
}
.my-shop .col-50--steps .download__app,
.my-shop .col-50--steps .download img,
.my-shop .col-50--steps .download p {
  display: inline-block;
}
.my-shop .col-50--steps .download .register {
  font-size: 13px;
  padding-bottom: 48px;
  position: relative;
}
.my-shop .col-50--steps .download .register img {
  position: absolute;
}
.my-shop .col-50--steps .download .register p {
  width: 404px;
  padding-left: 91px;
}
.my-shop .col-50--steps .download img {
  border-radius: 5px;
}
.my-shop .col-50--steps .object {
  position: absolute;
  top: 200px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}
.my-shop .col-50--steps .object .ccc-card {
  position: absolute;
  bottom: 0;
  left: 32%;
}
.my-shop .orange {
  color: #f8541f;
}
@media only screen and (max-width: 1787px) {
  .my-shop .col-50--info-register p:after {
    transform: translate(-180px, 62px);
    -webkit-transform: translate(-180px, 62px);
  }
}
@media only screen and (max-width: 1687px) {
  .my-shop .col-50--steps .step__1 p {
    width: 500px;
  }
}
@media only screen and (max-width: 1608px) {
  .my-shop .col-50--steps .object {
    top: 298px;
  }
  .my-shop .col-50--steps .object img {
    width: 240px;
    height: auto;
  }
  .my-shop .col-50--info-register p:after {
    transform: translate(-145px, 62px);
    -webkit-transform: translate(-145px, 62px);
  }
}
@media only screen and (max-width: 1500px) {
  .my-shop .col-50--steps h4,
  .my-shop .col-50--steps .step__1,
  .my-shop .col-50--steps .step__2,
  .my-shop .col-50--steps .step__3,
  .my-shop .col-50--steps .step__1 p,
  .my-shop .col-50--steps .step__2 p,
  .my-shop .col-50--steps .step__3 p {
    max-width: 100%;
    padding-right: 10px;
  }
  .my-shop .col-50--steps .step__1 {
    width: 450px;
  }
  .my-shop .col-50--steps .step__2 {
    width: 434px;
  }
  .my-shop .col-50--steps .step__3 {
    width: 416px;
  }
  .my-shop .col-50--steps .object {
    top: 347px;
  }
  .my-shop .col-50--steps .object img {
    width: 200px;
    height: auto;
  }
}
@media only screen and (max-width: 1394px) {
  .my-shop .col-50--steps .step__2:before {
    transform: translate(23px, -64px);
    -webkit-transform: translate(23px, -64px);
  }
  .my-shop .col-50--steps .step__3 p {
    width: 314px;
  }
}
@media only screen and (max-width: 1280px) {
  .my-shop .container {
    display: flex;
    display: -webkit-flex;
    flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
  }
  .my-shop .col-50 {
    width: 100%;
  }
  .my-shop .col-50--steps {
    position: relative;
    padding: 0 48px;
  }
  .my-shop .col-50--steps h4,
  .my-shop .col-50--steps .step__1,
  .my-shop .col-50--steps .step__2,
  .my-shop .col-50--steps .step__3,
  .my-shop .col-50--steps .step__1 p,
  .my-shop .col-50--steps .step__2 p,
  .my-shop .col-50--steps .step__3 p {
    max-width: 100%;
  }
  .my-shop .col-50--steps .download,
  .my-shop .col-50--steps .download .register p {
    width: 100%;
  }
  .my-shop .col-50--steps .download__app--left {
    margin-left: 90px;
  }
  .my-shop .col-50--steps .object,
  .my-shop .col-50--steps .step {
    width: 50%;
    float: left;
  }
  .my-shop .col-50--steps .download {
    width: 100%;
    float: left;
  }
  .my-shop .col-50--steps .object {
    position: relative;
    top: -195px;
    text-align: right;
  }
  .my-shop .col-50--steps .object .phone img {
    width: 320px;
  }
  .my-shop .col-50--steps .object .ccc-card {
    left: 9px;
    bottom: -24px;
  }
  .my-shop .col-50--steps .object .ccc-card img {
    width: 383px;
  }
  .my-shop .col-50--info-register {
    text-align: center;
    min-height: 648px;
  }
  .my-shop .col-50--info-register .text {
    padding: 0 5%;
    width: 100%;
  }
  .my-shop .col-50--info-register br:not(.important) {
    display: none;
  }
  .my-shop .col-50--info-register h2 {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .my-shop .col-50--info-register p:after {
    background: none;
  }
}
@media only screen and (max-width: 832px) {
  .my-shop .col-50--steps .object .ccc-card {
    left: -15px;
  }
}
@media only screen and (max-width: 768px) {
  .my-shop .col-50--steps {
    z-index: 1;
  }
  .my-shop .col-50--steps--info-register {
    background: url("../img/my-shop/shop_img_2.jpg") no-repeat;
    background-size: cover;
  }
  .my-shop .col-50--steps h4 {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin: 66px 0 38px;
  }
  .my-shop .col-50--steps .step__1,
  .my-shop .col-50--steps .step__2,
  .my-shop .col-50--steps .step__3 {
    min-height: 80px;
  }
  .my-shop .col-50--steps .step__3 {
    padding-bottom: 10px;
  }
  .my-shop .col-50--steps .step__1,
  .my-shop .col-50--steps .step__2,
  .my-shop .col-50--steps .step__3,
  .my-shop .col-50--steps .step__1 p,
  .my-shop .col-50--steps .step__2 p,
  .my-shop .col-50--steps .step__3 p {
    width: 100%;
    padding-right: 0;
  }
  .my-shop .col-50--steps .step__2:before {
    transform: translate(23px, -50px);
    -webkit-transform: translate(23px, -50px);
  }
  .my-shop .col-50--steps .steps {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    z-index: 2;
  }
  .my-shop .col-50--steps .download {
    order: 3;
    -webkit-order: 3;
    padding: 46px 0 0;
  }
  .my-shop .col-50--steps .download__app--left {
    margin-left: 0;
  }
  .my-shop .col-50--steps .download__link {
    text-align: center;
  }
  .my-shop .col-50--steps .step {
    order: 2;
    -webkit-order: 2;
    margin-top: 507px;
  }
  .my-shop .col-50--steps .object {
    order: 1;
    -webkit-order: 1;
    position: absolute;
    text-align: center;
  }
  .my-shop .col-50--steps .object .ccc-card {
    left: 16%;
  }
  .my-shop .col-50--steps .phone {
    padding-left: 131px;
    margin-top: 40px;
  }
  .my-shop .col-50--steps .object,
  .my-shop .col-50--steps .step {
    width: 100%;
  }
}
@media only screen and (max-width: 556px) {
  .my-shop .col-50--steps .step {
    margin-top: 585px;
  }
  .my-shop .col-50--steps .object {
    top: -134px;
  }
}
@media only screen and (max-width: 500px) {
  .my-shop .col-50--info-register {
    background-position-x: 50%;
  }
  .my-shop .col-50--steps {
    padding: 0 33px;
    text-align: center;
  }
  .my-shop .col-50--steps h4 {
    margin: 66px 0 35px;
  }
  .my-shop .col-50--steps .step__circle {
    position: relative;
    display: block;
    margin: 0 auto 30px;
  }
  .my-shop .col-50--steps .step {
    margin-top: 370px;
  }
  .my-shop .col-50--steps .step__1,
  .my-shop .col-50--steps .step__2 {
    padding-bottom: 90px;
  }
  .my-shop .col-50--steps .step__3 {
    padding-bottom: 32px;
  }
  .my-shop .col-50--steps .step__1 p,
  .my-shop .col-50--steps .step__2 p,
  .my-shop .col-50--steps .step__3 p {
    padding-left: 0;
  }
  .my-shop .col-50--steps .step__2::before {
    transform: translate(-7px, -68px);
    -ms-transform: translate(-7px, -68px);
    -webkit-transform: translate(-7px, -68px);
    left: 50%;
  }
  .my-shop .col-50--steps .step__3::before {
    transform: scaleX(-1) translate(11px, -68px);
    -webkit-transform: scaleX(-1) translate(11px, -68px);
    -ms-transform: scaleX(-1) translate(11px, -68px);
    left: 50%;
  }
  .my-shop .col-50--steps .object .phone img {
    max-width: 100%;
    padding: 0 46px;
  }
  .my-shop .col-50--steps .object .ccc-card img {
    max-width: 100%;
    padding: 0 32px;
  }
  .my-shop .col-50--steps .object .ccc-card,
  .my-shop .col-50--steps .object .phone {
    padding-left: 0;
    left: 0;
    right: 0;
  }
  .my-shop .col-50--steps .download .register p {
    padding: 38px 0 0;
  }
  .my-shop .col-50--steps .register img {
    position: absolute;
    margin: auto;
    top: -78px;
    left: 0;
    right: 0;
  }
  .my-shop .col-50--steps .download__app--left {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 405px) {
  .my-shop .col-50--info-register h2 {
    font-size: 40px;
  }
  .my-shop .col-50--info-register p {
    font-size: 20px;
  }
}
.card-gift {
  position: relative;
  min-height: 960px;
  background: url("../img/gift-card/gift-card-bg.jpg") no-repeat;
  background-size: cover;
  background-position-x: 50%;
}
@media (min-width: 1591px) {
  .card-gift {
    background-position: 50% 50%;
  }
}
.card-gift::before,
.card-gift::after {
  content: '';
  position: absolute;
}
.card-gift::before {
  background: url("../img/gift-card/detal-1.png") no-repeat;
  width: 315px;
  height: 315px;
  bottom: 0;
  left: 0;
}
.card-gift::after {
  background: url("../img/gift-card/detal-2.png") no-repeat;
  width: 180px;
  height: 180px;
  right: 0;
  top: 0;
}
.card-gift-info__title,
.card-gift-info__description,
.card-gift .btn,
.card-gift__card {
  max-width: 100%;
}
.card-gift-info {
  margin: 0 0 0 114px;
  padding: 142px 46vw 0 0;
}
.card-gift-info__title {
  font-size: 44px;
  font-family: ainslie, arial, sans-serif;
  width: 740px;
  margin-bottom: 49px;
  line-height: 50px;
}
.card-gift-info__title--orange {
  color: #ff3300;
}
.card-gift-info__description {
  width: 906px;
  line-height: 21px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  font-family: montserratlight, arial, sans-serif;
}
.card-gift-card {
  position: relative;
  margin: 60px 0 0 250px;
  height: 351px;
  width: 459px;
}
@media (min-width: 1231px) {
  .card-gift-card {
    margin: 120px 0 0 325px;
  }
}
.card-gift-card__text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.card-gift__btn {
  position: absolute;
  width: 242px;
  height: 52px;
  right: 50px;
  bottom: 50px;
}
.card-gift-rules {
  font-size: 17px;
  color: #fff;
  font-family: bebas, arial, sans-serif;
}
.card-gift-rules::after {
  content: '';
  display: table;
  clear: both;
}
.card-gift-rules--ob-1,
.card-gift-rules--ob-2 {
  max-width: 100%;
  float: left;
  padding: 20px 0;
}
.card-gift-rules--ob-1 {
  width: 158px;
  background-color: #000;
  text-align: center;
}
.card-gift-rules--ob-2 {
  width: 84px;
  background-color: #e3460f;
  position: relative;
  padding-left: 21px;
}
.card-gift-rules--ob-2::after {
  content: '';
  background: url("../img/gift-card/icon_download.png") no-repeat;
  width: 14px;
  height: 20px;
  position: absolute;
  left: 52px;
}
@media only screen and (max-width: 1024px) {
  .card-gift-info {
    margin: 0 0 0 50px;
    padding-top: 95px;
  }
  .card-gift-info__title {
    margin-bottom: 34px;
  }
  .card-gift-card {
    width: 340px;
    height: 227px;
    margin: 43px 40px 0;
  }
  .card-gift-card::after {
    bottom: 0;
    width: 214px;
    height: 106px;
    top: 104px;
    right: -93px;
  }
  .card-gift-card__text img {
    width: 340px;
  }
  .card-gift::before,
  .card-gift::after {
    background-size: cover;
  }
  .card-gift::before {
    width: 192px;
    height: 192px;
  }
  .card-gift::after {
    width: 94px;
    height: 94px;
  }
}
@media only screen and (max-width: 768px) {
  .card-gift {
    min-height: 778px;
    background-position-x: 50%;
    background-size: cover;
  }
  .card-gift-info {
    padding: 42px 150px 0 0;
  }
  .card-gift-info__description {
    padding-right: 100px;
  }
  .card-gift::before {
    width: 112px;
    height: 112px;
  }
  .card-gift::after {
    width: 52px;
    height: 52px;
  }
  .card-gift__btn {
    right: 30px;
    bottom: 30px;
  }
}
@media only screen and (max-width: 667px) {
  .card-gift {
    background-position-x: 50%;
  }
  .card-gift-info {
    padding: 42px 50px 0 0;
  }
  .card-gift-info__description {
    padding-right: 130px;
  }
  .card-gift__btn {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (max-width: 570px) {
  .card-gift {
    margin-bottom: 112px;
    min-height: 600px;
    background-position-x: 0;
  }
  .card-gift-info {
    margin: 0;
    padding: 42px 32px 0;
    text-align: center;
  }
  .card-gift-info h3 {
    font-size: 30px;
    line-height: 34px;
  }
  .card-gift-info p {
    padding: 0;
    font-size: 14px;
    line-height: 26px;
  }
  .card-gift-card {
    margin: 35px auto 0;
    width: 270px;
  }
  .card-gift-card__text {
    left: 25px;
  }
  .card-gift-card__text img {
    max-width: 270px;
  }
  .card-gift__btn {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -79px;
  }
}
@media only screen and (max-width: 350px) {
  .card-gift {
    background-size: cover;
  }
}
section.gift-card-at {
  background: url("../img/gift-card-at/gift-card-bg.jpg") no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  min-height: 1030px;
  position: relative;
}
section.gift-card-at::before,
section.gift-card-at::after {
  content: '';
  position: absolute;
}
section.gift-card-at::before {
  background: url("../img/gift-card-at/detal-1.png") no-repeat;
  width: 315px;
  height: 315px;
  bottom: 0;
  left: 0;
}
section.gift-card-at::after {
  background: url("../img/gift-card-at/detal-2.png") no-repeat;
  width: 180px;
  height: 180px;
  right: 0;
  top: 0;
}
section.gift-card-at .gift-card--info h3,
section.gift-card-at .gift-card--info p,
section.gift-card-at .btn,
section.gift-card-at .gift-card__card {
  max-width: 100%;
}
section.gift-card-at p {
  font-family: montserratlight, arial, sans-serif;
}
section.gift-card-at .gift-card--info {
  margin: 0 0 0 114px;
  padding: 142px 400px 0 0;
}
section.gift-card-at .gift-card--info h3 {
  font-size: 40px;
  font-family: ainslie, arial, sans-serif;
  letter-spacing: 4px;
  width: 720px;
  margin-bottom: 49px;
  line-height: 50px;
}
section.gift-card-at .gift-card--info h3 .orange {
  color: #ff3300;
}
section.gift-card-at .gift-card--info p {
  font-size: 16px;
  width: 906px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 21px;
}
section.gift-card-at .gift-card__card {
  background: url('../img/gift-card-at/g-card.png') no-repeat;
  background-size: 100%;
  width: 459px;
  height: 351px;
  margin: 120px 0 0 325px;
  position: relative;
}
section.gift-card-at .gift-card__card::after {
  content: '';
  position: absolute;
  background: url("../img/gift-card-at/tape.png") no-repeat;
  background-size: cover;
  bottom: 17px;
  width: 240px;
  height: 121px;
  right: -94px;
}
section.gift-card-at .gift-card__card .gift-card--text {
  position: absolute;
  top: 61px;
  left: 0;
  right: 0;
  text-align: center;
}
section.gift-card-at .gift-card__card .gift-card--text p {
  color: #fff;
  padding: 28px 10px 0;
  text-transform: uppercase;
  font-size: 18px;
}
section.gift-card-at .btn {
  position: absolute;
  width: 242px;
  height: 52px;
  right: 50px;
  bottom: 50px;
}
section.gift-card-at .rules {
  font-size: 17px;
  color: #fff;
  font-family: bebas, arial, sans-serif;
}
section.gift-card-at .rules::after {
  content: '';
  display: table;
  clear: both;
}
section.gift-card-at .rules--ob-1,
section.gift-card-at .rules--ob-2 {
  max-width: 100%;
  float: left;
  padding: 20px 0;
}
section.gift-card-at .rules--ob-1 {
  width: 158px;
  background-color: #000;
  text-align: center;
}
section.gift-card-at .rules--ob-2 {
  width: 84px;
  background-color: #e3460f;
  position: relative;
  padding-left: 21px;
}
section.gift-card-at .rules--ob-2::after {
  content: '';
  background: url("../img/gift-card/icon_download.png") no-repeat;
  width: 14px;
  height: 20px;
  position: absolute;
  left: 52px;
}
@media only screen and (max-width: 1590px) {
  section.gift-card-at {
    background-position-x: 70%;
  }
}
@media only screen and (max-width: 1230px) {
  section.gift-card-at .gift-card__card {
    margin: 60px 0 0 250px;
  }
}
@media only screen and (max-width: 1024px) {
  section.gift-card-at {
    background: url(../img/gift-card-at/page-bg-1024.jpg) no-repeat;
    background-position-x: 80%;
    background-size: cover;
  }
  section.gift-card-at .gift-card--info {
    margin: 0 0 0 50px;
    padding-top: 55px;
  }
  section.gift-card-at .gift-card--info h3 {
    margin-bottom: 34px;
  }
  section.gift-card-at .gift-card__card {
    width: 264px;
    height: 227px;
    margin: 30px 40px 0;
  }
  section.gift-card-at .gift-card__card::after {
    bottom: 0;
    width: 214px;
    height: 106px;
    top: 104px;
    right: -93px;
  }
  section.gift-card-at .gift-card__card .gift-card--text {
    top: 31px;
  }
  section.gift-card-at .gift-card__card .gift-card--text img {
    width: 131px;
  }
  section.gift-card-at .gift-card__card .gift-card--text p {
    font-size: 11px;
    padding-top: 17px;
  }
  section.gift-card-at::before,
  section.gift-card-at::after {
    background-size: cover;
  }
  section.gift-card-at::before {
    width: 192px;
    height: 192px;
  }
  section.gift-card-at::after {
    width: 94px;
    height: 94px;
  }
}
@media only screen and (max-width: 768px) {
  section.gift-card-at {
    background: url(../img/gift-card-at/page-bg-768.jpg) no-repeat;
    background-position-x: 50%;
    min-height: 900px;
    background-size: cover;
  }
  section.gift-card-at .gift-card--info {
    padding: 42px 150px 0 0;
  }
  section.gift-card-at .gift-card--info p {
    padding-right: 100px;
  }
  section.gift-card-at::before {
    width: 112px;
    height: 112px;
  }
  section.gift-card-at::after {
    width: 52px;
    height: 52px;
  }
  section.gift-card-at .btn {
    right: 30px;
    bottom: 30px;
  }
}
@media only screen and (max-width: 667px) {
  section.gift-card-at {
    background-position-x: 80%;
  }
  section.gift-card-at .gift-card--info {
    padding: 42px 50px 0 0;
  }
  section.gift-card-at .gift-card--info p {
    padding-right: 130px;
  }
  section.gift-card-at .btn {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (max-width: 570px) {
  section.gift-card-at {
    background-position-x: 0;
    min-height: 400px;
    margin-bottom: 112px;
  }
  section.gift-card-at .gift-card--info {
    margin: 0;
    padding: 42px 32px 0;
    text-align: center;
  }
  section.gift-card-at .gift-card--info h3 {
    font-size: 30px;
    line-height: 34px;
  }
  section.gift-card-at .gift-card--info p {
    padding: 0;
    font-size: 14px;
    line-height: 26px;
  }
  section.gift-card-at .gift-card__card {
    margin: 35px auto 0;
  }
  section.gift-card-at .btn {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -79px;
  }
}
@media only screen and (max-width: 350px) {
  section.gift-card-at {
    background: url(../img/gift-card-at/page-bg-320.jpg) no-repeat;
    background-size: cover;
    min-height: 1408px;
  }
}
body.de .gift-card,
body.de .de-info {
  margin-bottom: 30px;
}
body.de .de-info {
  width: 1123px;
  max-width: 100%;
  text-transform: uppercase;
}
body.de .de-info p {
  display: table-cell;
  padding-left: 51px;
  font-size: 15px;
  font-family: bebas, arial, sans-serif;
}
body.de .de-info--black {
  color: #000;
  width: 108px;
}
body.de .de-info--gray {
  color: #828282;
  padding-right: 51px;
}
@media only screen and (max-width: 570px) {
  body.de .de-info p {
    display: block;
    text-align: center;
    padding: 0 20px;
    line-height: 18px;
  }
  body.de .de-info--black {
    margin-bottom: 8px;
    width: 100%;
  }
}
.sc .text-center {
  text-align: center;
}
.sc .c {
  max-width: 1245px;
  width: 100%;
  margin: 0 auto;
}
.sc__header {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 20px 0;
}
.sc__header:before {
  content: '';
  position: relative;
  top: 0;
  left: 0;
  display: block;
  padding-top: 33.333%;
}
.sc__header .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.sc__header .swiper-container .swiper-slide .bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: 100%;
  background-position: 100% 0;
  background-repeat: no-repeat;
}
.sc__header h2 {
  font-family: bebas, arial, sans-serif;
  text-transform: uppercase;
  font-size: 38px;
  line-height: 40px;
  letter-spacing: .2em;
}
.sc__header h3 {
  font-size: 22px;
  letter-spacing: .2em;
  line-height: 26px;
  margin-top: 30px;
  text-transform: uppercase;
  color: #fff;
}
.sc__header p {
  font-family: montserratlight, arial, sans-serif;
  font-size: 14px;
  margin-top: 30px;
  line-height: 20px;
  letter-spacing: .1em;
}
@media (max-width: 1800px) {
  .sc__header-text h3,
  .sc__header-text p {
    margin-top: 20px;
  }
}
@media (max-width: 1600px) {
  .sc__header-text h2 {
    font-size: 28px;
    line-height: 32px;
  }
  .sc__header-text p {
    font-size: 12px;
    line-height: 16px;
  }
  .sc__header-text h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .sc__header-text h3,
  .sc__header-text p {
    margin-top: 10px;
  }
}
@media (max-width: 1366px) {
  .sc__header .sc__header-inner {
    padding: 0 10px;
  }
  .sc__header .swiper-container .swiper-slide .bg {
    background-size: 115%;
    background-position: 100% 50%;
  }
}
@media (max-width: 1200px) {
  .sc__header-text h2 {
    font-size: 25px;
    line-height: 28px;
  }
  .sc__header-text p {
    font-size: 12px;
    line-height: 15px;
  }
  .sc__header-text h3 {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 1024px) {
  .sc__header {
    height: auto;
  }
  .sc__header .swiper-container .swiper-slide .bg {
    background-size: 2600px;
  }
  .sc__header:before {
    display: none;
  }
  .sc__header .sc__header-inner {
    width: 100%;
    position: relative;
    padding: 30px 2%;
  }
}
.sc__header-inner {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  padding: 0 10px 0 7%;
}
.sc__header-icons {
  margin: 40px auto 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  max-width: 520px;
}
.sc__header-icons .icon {
  border: 3px dashed #fff;
  border-radius: 10px;
  padding: 10px;
  max-width: 205px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sc__header-icons .icon p {
  font-family: montserratlight, arial, sans-serif;
  font-size: 13px;
  margin: 30px 0 15px;
  letter-spacing: 0;
  line-height: 20px;
  height: 50px;
}
.sc__header-icons .icon img {
  margin: 30px auto 0;
  max-width: 60px;
  width: 100%;
}
@media (max-width: 1800px) {
  .sc__header-icons {
    margin-top: 20px;
  }
  .sc__header-icons .icon p,
  .sc__header-icons .icon img {
    margin-top: 20px;
  }
}
@media (max-width: 1600px) {
  .sc__header-icons .icon img {
    margin-top: 10px;
  }
  .sc__header-icons .icon p {
    margin: 15px 0 5px;
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 1366px) {
  .sc__header-icons {
    max-width: 440px;
    margin-top: 10px;
  }
  .sc__header-icons .icon {
    padding: 5px 10px;
  }
  .sc__header-icons .icon p {
    height: 40px;
  }
  .sc__header-icons .icon img {
    max-height: 30px;
  }
}
@media (max-width: 580px) {
  .sc__header-icons {
    flex-direction: column;
    align-items: center;
  }
  .sc__header-icons .icon {
    margin-bottom: 20px;
  }
}
.sc .sc__flow {
  position: relative;
  padding: 70px 5%;
}
.sc .sc__flow-slider {
  position: relative;
  margin: 65px 5% 0;
}
.sc .sc__flow .c {
  position: relative;
}
.sc .sc__flow-header {
  text-align: center;
}
.sc .sc__flow-header h2 {
  font-family: bebas, arial, sans-serif;
  text-transform: uppercase;
  font-size: 64px;
  line-height: 66px;
  letter-spacing: .065em;
}
.sc .sc__flow .swiper-slide {
  text-align: center;
}
.sc .sc__flow .swiper-slide .text {
  height: 120px;
  margin-top: 200px;
}
.sc .sc__flow .swiper-slide .text h3 {
  font-size: 30px;
  line-height: 1;
  letter-spacing: .06em;
}
.sc .sc__flow .swiper-slide .text p {
  font-family: montserratlight, arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .01em;
  margin-top: 30px;
  text-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}
.sc .sc__flow .swiper-slide .slide-inner > img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.sc .sc__flow .swiper-progress {
  position: absolute;
  bottom: 230px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  height: 2px;
  background: #eaeaea;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 100;
}
.sc .sc__flow .swiper-progress .swiper-pagination {
  width: 100%;
}
.sc .sc__flow .swiper-progress .swiper-pagination .swiper-pagination-bullet {
  font-family: bebas, arial, sans-serif;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 24px;
  display: block;
  border-radius: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #eaeaea;
  opacity: 1;
  position: absolute;
  top: 0;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-in-out;
}
.sc .sc__flow .swiper-progress .swiper-pagination .swiper-pagination-bullet.active,
.sc .sc__flow .swiper-progress .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
  border-color: #000;
  color: #fff;
}
.sc .sc__flow .swiper-progress .swiper-pagination-progressbar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 2px;
  background: #000;
}
@media (max-width: 1366px) {
  .sc .sc__flow-header h2 {
    font-size: 48px;
    line-height: 52px;
  }
}
@media (max-width: 640px) {
  .sc .sc__flow-header h2 {
    font-size: 32px;
    line-height: 46px;
  }
  .sc .sc__flow .swiper-slide .text {
    margin-top: 40px;
    height: auto;
  }
  .sc .sc__flow .swiper-progress {
    position: relative;
    margin: 40px 0 0 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    transform: none;
  }
}
.sc__showcase {
  position: relative;
}
.sc__showcase .sc__showcase-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  margin-top: 70px;
  text-align: center;
  overflow: hidden;
}
.sc__showcase .sc__showcase-header h2 {
  font-family: bebas, arial, sans-serif;
  font-size: 46px;
  line-height: 52px;
  letter-spacing: .065em;
  color: #fff;
  display: inline-block;
  position: relative;
}
.sc__showcase .sc__showcase-header h2:before,
.sc__showcase .sc__showcase-header h2:after {
  display: block;
  content: '';
  width: 125px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
}
.sc__showcase .sc__showcase-header h2:before {
  left: -30px;
  transform: translate(-100%, 0);
}
.sc__showcase .sc__showcase-header h2:after {
  right: -30px;
  transform: translate(100%, 0);
}
.sc__showcase .swiper-products {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 100%;
}
.sc__showcase .swiper-products .swiper-slide .slide-inner {
  transition: opacity 0.3s ease-in-out;
}
.sc__showcase .swiper-products .swiper-slide.swiper-slide-active .slide-inner {
  opacity: 1;
}
.sc__showcase .swiper-products .slide-inner {
  margin: 0 auto;
  max-width: 440px;
  text-align: center;
}
.sc__showcase .swiper-products .slide-inner h4 {
  margin-top: 20px;
  font-family: bebas, arial, sans-serif;
  color: #fff;
  font-size: 22px;
}
.sc__showcase .swiper-products .slide-inner .price {
  margin-top: 10px;
  display: block;
  font-family: montserratregular, arial, sans-serif;
  font-size: 18px;
  color: #f8541f;
}
.sc__showcase .swiper-products .product-navigation {
  position: relative;
  z-index: 999;
  max-width: 520px;
  margin: 0 auto;
}
.sc__showcase .swiper-products .product-navigation > a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px #cccccc solid;
  cursor: pointer;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.sc__showcase .swiper-products .product-navigation > a > .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  display: block;
  width: 20px;
  height: 20px;
  text-indent: -99999px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-image: url(../img/next-prev-wo.png);
}
.sc__showcase .swiper-products .product-navigation > a.arrow-left,
.sc__showcase .swiper-products .product-navigation > a.arrow-right {
  position: absolute;
  top: 50%;
  margin-top: 0;
}
.sc__showcase .swiper-products .product-navigation > a.arrow-left {
  left: 28px;
}
.sc__showcase .swiper-products .product-navigation > a.arrow-left .icon {
  background-position: 0 -20px;
}
.sc__showcase .swiper-products .product-navigation > a.arrow-right {
  right: 28px;
}
.sc__showcase .swiper-products .product-navigation > a.arrow-right .icon {
  background-position: 0 0;
}
.sc__showcase .swiper-products .product-navigation > a.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.sc__showcase .swiper-products .product-navigation > a:hover {
  background-color: #000;
  border-color: #000;
}
.sc__showcase .swiper-products .product-navigation > a:hover.arrow-left .icon {
  background-position: -20px -20px;
}
.sc__showcase .swiper-products .product-navigation > a:hover.arrow-right .icon {
  background-position: -20px 0;
}
.sc__showcase .swiper-container:not(.swiper-products) img {
  display: block;
  max-width: 100%;
}
@media (max-width: 1366px) {
  .sc__showcase .sc__showcase-header h2 {
    font-size: 42px;
    line-height: 46px;
  }
}
@media (max-width: 1180px) {
  .sc__showcase .swiper-container:not(.swiper-products) .swiper-slide {
    height: 500px;
    position: relative;
  }
  .sc__showcase .swiper-container:not(.swiper-products) .swiper-slide > img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: none;
    max-height: 500px;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .sc__showcase .sc__showcase-header {
    padding: 0 2%;
    margin-top: 40px;
  }
  .sc__showcase .sc__showcase-header h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .sc__showcase .swiper-products {
    transform: translate(-50%, 0%);
  }
  .sc__showcase .swiper-products .product-navigation > a.arrow-left {
    left: 10px;
  }
  .sc__showcase .swiper-products .product-navigation > a.arrow-right {
    right: 10px;
  }
  .sc__showcase .swiper-products .swiper-slide .slide-inner > img {
    max-height: 100px;
    max-width: 150px;
  }
}
.sc__arranger {
  padding: 60px 0;
  position: relative;
}
.sc__arranger-header {
  text-align: center;
  margin-bottom: 60px;
  overflow: hidden;
}
.sc__arranger-header .c {
  padding: 0 2%;
}
.sc__arranger-header h2 {
  font-family: bebas, arial, sans-serif;
  font-size: 46px;
  line-height: 52px;
  letter-spacing: .065em;
  color: #000;
  display: inline-block;
  position: relative;
}
.sc__arranger-header h2:before,
.sc__arranger-header h2:after {
  display: block;
  content: '';
  width: 85px;
  height: 1px;
  background: #e4e4e4;
  position: absolute;
  top: 50%;
}
.sc__arranger-header h2:before {
  left: -50px;
  transform: translate(-100%, 0);
}
.sc__arranger-header h2:after {
  right: -50px;
  transform: translate(100%, 0);
}
.sc__arranger-header p {
  font-family: montserratlight, arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .01em;
  margin-top: 30px;
  text-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}
.sc__arranger .slider-toggler {
  text-align: center;
  margin-top: 50px;
}
.sc__arranger .slider-toggler .btn {
  display: inline-block;
  font-family: bebas, arial, sans-serif;
  font-size: 13px;
  letter-spacing: .4em;
  text-transform: uppercase;
  width: 190px;
  color: #000;
  padding: 15px;
  border: 1px solid #000;
  margin-right: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.sc__arranger .slider-toggler .btn:last-of-type {
  margin-right: 0;
}
.sc__arranger .slider-toggler .btn:hover,
.sc__arranger .slider-toggler .btn.active {
  background: #000;
  color: #fff;
}
.sc__arranger-row {
  display: flex;
  flex-direction: row;
  padding: 0 2%;
}
.sc__arranger-col {
  width: 50%;
}
.sc__arranger-col-header {
  text-align: center;
  padding: 0 75px;
  overflow: hidden;
}
.sc__arranger-col-header h3 {
  font-family: bebas, arial, sans-serif;
  font-size: 30px;
  line-height: 42px;
  letter-spacing: .065em;
  color: #000;
  display: inline-block;
  position: relative;
}
.sc__arranger-col-header h3:before,
.sc__arranger-col-header h3:after {
  display: block;
  content: '';
  width: 85px;
  height: 1px;
  background: #e4e4e4;
  position: absolute;
  top: 50%;
}
.sc__arranger-col-header h3:before {
  left: -50px;
  transform: translate(-100%, 0);
}
.sc__arranger-col-header h3:after {
  right: -50px;
  transform: translate(100%, 0);
}
.sc__arranger-sliders {
  margin-top: 120px;
  padding: 0 50px;
  position: relative;
}
.sc__arranger-sliders .swiper-slide {
  padding-bottom: 90px;
}
.sc__arranger-sliders .swiper-slide .slide-inner {
  padding: 0 5%;
  display: table-cell;
  vertical-align: middle;
  height: 230px;
  transform: translateY(-15%) scale(0.6);
  transition: 0.3s ease-in-out;
  text-align: center;
}
.sc__arranger-sliders .swiper-slide .slide-inner img {
  max-width: 100%;
  max-height: 100%;
  width: 200px;
  height: auto;
}
@media (max-width: 580px) {
  .sc__arranger-sliders .swiper-slide .slide-inner {
    display: block;
  }
  .sc__arranger-sliders .swiper-slide .slide-inner img {
    max-height: 190px;
    max-width: 100%;
    width: auto;
  }
}
.sc__arranger-sliders .swiper-slide .slide-inner h4,
.sc__arranger-sliders .swiper-slide .slide-inner span,
.sc__arranger-sliders .swiper-slide .slide-inner .btn {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.sc__arranger-sliders .swiper-slide .slide-inner h4 {
  margin-top: 25px;
  font-family: bebas, arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}
.sc__arranger-sliders .swiper-slide .slide-inner .price {
  padding-top: 10px;
  display: inline-block;
  font-family: montserratlight, arial, sans-serif;
  color: #f8541f;
  text-transform: uppercase;
}
.sc__arranger-sliders .swiper-slide .slide-inner .colors {
  margin-top: 60px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.sc__arranger-sliders .swiper-slide .slide-inner .colors .label {
  font-size: 12px;
  font-family: montserratlight, arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  vertical-align: middle;
}
.sc__arranger-sliders .swiper-slide .slide-inner .colors .color {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 100%;
  margin: 0 6px;
  vertical-align: middle;
}
.sc__arranger-sliders .swiper-slide .slide-inner .colors .color--red {
  background-color: #870023;
}
.sc__arranger-sliders .swiper-slide .slide-inner .colors .color--white {
  background-color: #eeeeee;
}
.sc__arranger-sliders .swiper-slide .slide-inner .colors .color--black {
  background-color: #261c13;
}
.sc__arranger-sliders .swiper-slide .slide-inner .btn {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
  display: inline-block;
  font-family: bebas, arial, sans-serif;
  font-size: 18px;
  letter-spacing: .4em;
  text-transform: uppercase;
  max-width: 250px;
  width: 100%;
  color: #000;
  padding: 15px;
  border: 1px solid #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.sc__arranger-sliders .swiper-slide .slide-inner .btn:hover {
  background: #000;
  color: #fff;
}
.sc__arranger-sliders .swiper-slide-active .slide-inner {
  transform: scale(1);
}
.sc__arranger-sliders .swiper-slide-active .slide-inner .colors,
.sc__arranger-sliders .swiper-slide-active .slide-inner span,
.sc__arranger-sliders .swiper-slide-active .slide-inner h4,
.sc__arranger-sliders .swiper-slide-active .slide-inner .btn {
  opacity: 1;
  visibility: visible;
}
.sc__arranger-sliders .arranger-product-navigation {
  position: absolute;
  z-index: 99;
  max-width: 620px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
}
.sc__arranger-sliders .arranger-product-navigation > a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px #cccccc solid;
  cursor: pointer;
  margin: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.sc__arranger-sliders .arranger-product-navigation > a > .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  display: block;
  width: 20px;
  height: 20px;
  text-indent: -99999px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-image: url(../img/next-prev.png);
}
.sc__arranger-sliders .arranger-product-navigation > a.arrow-left,
.sc__arranger-sliders .arranger-product-navigation > a.arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
.sc__arranger-sliders .arranger-product-navigation > a.arrow-left {
  left: 0;
}
.sc__arranger-sliders .arranger-product-navigation > a.arrow-left .icon {
  background-position: 0 -20px;
}
.sc__arranger-sliders .arranger-product-navigation > a.arrow-right {
  right: 0;
}
.sc__arranger-sliders .arranger-product-navigation > a.arrow-right .icon {
  background-position: 0 0;
}
.sc__arranger-sliders .arranger-product-navigation > a.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.sc__arranger-sliders .arranger-product-navigation > a:hover {
  background-color: #000;
  border-color: #000;
}
.sc__arranger-sliders .arranger-product-navigation > a:hover.arrow-left .icon {
  background-position: -20px -20px;
}
.sc__arranger-sliders .arranger-product-navigation > a:hover.arrow-right .icon {
  background-position: -20px 0;
}
.sc__arranger-cropper {
  position: relative;
  margin-top: 50px;
  margin-right: 30px;
}
.sc__arranger-cropper:before {
  content: '';
  display: block;
  top: 0;
  left: 0;
  right: 0;
}
.sc__arranger-cropper-inner {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sc__arranger-cropper .cropper {
  min-height: 70px;
}
.sc__arranger-cropper .cropper-img img {
  max-height: 400px;
}
.sc__arranger-cropper .cropper-actions {
  padding: 10px 0;
}
.sc__arranger-cropper .cropper-error {
  padding: 10px;
  font-family: montserratregular, arial, sans-serif;
  text-align: center;
  color: red;
}
.sc__arranger-cropper .btn:not(.btn-primary) {
  display: block;
  font-family: bebas, arial, sans-serif;
  font-size: 17px;
  letter-spacing: .4em;
  cursor: pointer;
  text-transform: uppercase;
  float: right;
  color: #000;
  padding: 15px;
  border: 1px solid #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  transform: translateY(-100%);
}
.sc__arranger-cropper .btn:not(.btn-primary):hover,
.sc__arranger-cropper .btn:not(.btn-primary).active {
  background: #000;
  color: #fff;
}
.sc__arranger-cropper .add-img {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sc__arranger-cropper .add-img .add-pic-btns {
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 10px;
  background-color: #ebebeb;
}
.sc__arranger-cropper .add-img .add-img__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.sc__arranger-cropper .add-img .add-img__content img {
  display: block;
  margin: 0 auto;
}
.sc__arranger-cropper .file-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 10px;
  font-family: montserratlight, arial, sans-serif;
}
.sc__arranger-cropper .file-name img {
  margin-right: 20px;
  max-width: 32px;
}
.sc__arranger-cropper .loading {
  padding: 20px;
  display: inline-block;
  text-align: center;
  font-family: montserratlight, arial, sans-serif;
}
.sc__arranger-cropper .desc {
  font-family: montserratlight, arial, sans-serif;
}
.sc__arranger-cropper label.add-pic-btns {
  cursor: pointer;
}
.sc__arranger-cropper label.add-pic-btns span {
  font-family: montserratlight, arial, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 45px;
  display: inline-block;
  padding: 15px;
  border: 1px solid #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.sc__arranger-cropper label.add-pic-btns span:hover {
  background: #000;
  color: #fff;
}
@media (max-width: 1024px) {
  .sc__arranger .sc__arranger-row {
    flex-direction: column;
  }
  .sc__arranger .sc__arranger-row .sc__arranger-col {
    width: 100%;
  }
  .sc__arranger .sc__arranger-row .sc__arranger-col.sc__arranger-col--slider {
    margin-top: 20px;
  }
  .sc__arranger .sc__arranger-cropper {
    max-width: 500px;
    margin: 50px auto;
  }
  .sc__arranger .sc__arranger-cropper .cropper-container {
    margin: 0 auto;
  }
}
@media (max-width: 580px) {
  .sc__arranger .sc__arranger-col-header {
    padding: 0 5%;
  }
  .sc__arranger .slider-toggler a.btn {
    display: block;
    margin: 0 auto 10px auto;
  }
  .sc__arranger .slider-toggler a.btn:last-of-type {
    margin-right: auto;
  }
}
.sc__popup {
  background: #f6f6f6;
  z-index: 102;
  width: 960px;
  position: relative;
  padding: 20px;
  cursor: default;
}
.sc__popup-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 45px;
  background: url('../img/home/popup-close.png') 50% 50% no-repeat #f8541f;
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.sc__popup-close:hover {
  background-color: #000;
}
.sc__popup-header {
  text-align: center;
  margin-top: 30px;
}
.sc__popup-header strong {
  font-weight: bold;
}
.sc__popup-header p {
  font-family: montserratlight, arial, sans-serif;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: .05em;
}
.sc__popup-header h3 {
  font-size: 30px;
  letter-spacing: .06em;
  font-family: bebas, arial, sans-serif;
  display: inline-block;
  position: relative;
}
.sc__popup-header h3:before,
.sc__popup-header h3:after {
  display: block;
  content: '';
  width: 85px;
  height: 1px;
  background: #e4e4e4;
  position: absolute;
  top: 50%;
}
.sc__popup-header h3:before {
  left: -50px;
  transform: translate(-100%, 0);
}
.sc__popup-header h3:after {
  right: -50px;
  transform: translate(100%, 0);
}
.sc__popup-content {
  width: 660px;
  margin: 0 auto;
}
.sc__popup-content form {
  zoom: 1;
  margin-top: 40px;
}
.sc__popup-content form:before {
  content: '';
  display: block;
}
.sc__popup-content form:after {
  content: '';
  display: table;
  clear: both;
}
.sc__popup-content form .form-row {
  position: relative;
  padding-bottom: 20px;
  overflow: hidden;
}
.sc__popup-content form .form-row:not(.form-row--half) {
  clear: both;
}
.sc__popup-content form .form-row.form-row--half {
  float: left;
  width: 50%;
}
.sc__popup-content form .input-validate-msg {
  width: 320px;
  float: left;
  display: block;
  font-family: montserratlight, arial, sans-serif;
  color: red;
  position: absolute;
  bottom: 10px;
  left: 0;
}
.sc__popup-content form .input-validate-msg:first-of-type {
  margin-right: 20px;
}
.sc__popup-content form input:not([type="checkbox"]) {
  background-color: #f6f6f6;
  float: left;
  font-size: 17px;
  color: #000;
  height: 50px;
  width: 320px;
  border: 1px solid #000;
  padding: 5px;
  text-align: center;
  box-shadow: none;
  font-family: bebas, arial, sans-serif;
  letter-spacing: .4em;
  margin-right: 20px;
}
.sc__popup-content form input:not([type="checkbox"]).ng-valid:not(.ng-untouched) {
  border-color: green;
}
.sc__popup-content form input:not([type="checkbox"]).ng-invalid:not(.ng-untouched) {
  border-color: red;
}
.sc__popup-content form input:not([type="checkbox"])::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
}
.sc__popup-content form input:not([type="checkbox"])::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}
.sc__popup-content form input:not([type="checkbox"]):-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
}
.sc__popup-content form input:not([type="checkbox"]):-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}
.sc__popup-content form input:not([type="checkbox"]):nth-child(2) {
  margin-right: 0;
}
.sc__popup-content form input[type="email"] {
  width: 660px;
  margin-right: 0;
  background-color: #f6f6f6;
}
.sc__popup-content form input[type="submit"] {
  background: #f8541f;
  color: #fff;
  border: none;
  float: none;
  margin: 0 auto 40px auto;
  display: block;
}
.sc__popup-content form .terms {
  float: left;
  margin: 80px 0;
  padding-bottom: 20px;
  position: relative;
}
.sc__popup-content form .terms .agreements {
  margin-top: 15px;
  font-family: montserratlight, arial, sans-serif;
  font-size: 10px;
  line-height: 16px;
}
.sc__popup-content form .terms .agreements.agreements__hide {
  display: none;
}
.sc__popup-content form .terms__item {
  margin-bottom: 15px;
}
.sc__popup-content form .terms__item label {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  width: auto;
  text-align: left;
  position: relative;
  font-family: montserratlight, arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: .05em;
  padding-left: 40px;
}
.sc__popup-content form .terms__item label:before {
  content: '';
  width: 25px;
  height: 25px;
  border: 1px solid #707070;
  background: #f6f6f6;
  position: absolute;
  top: -5px;
  left: 0;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.sc__popup-content form .terms__item label:hover:before {
  background: #f8541f;
  border-color: #f8541f;
  opacity: 0.5;
}
.sc__popup-content form .terms__item label a {
  text-transform: uppercase;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
}
.sc__popup-content form .terms__item label a:hover {
  color: #000;
}
.sc__popup-content form .terms__item input[type="checkbox"] {
  display: none;
}
.sc__popup-content form .terms__item input[type="checkbox"]:checked + label:before {
  background: #f8541f;
  border-color: #f8541f;
}
.sc__popup-content form .terms__item input[type="checkbox"]:checked + label:hover:before {
  opacity: 1;
}
.sc__popup-content .final-image {
  margin-top: 50px;
  position: relative;
  text-align: center;
}
.sc__popup-content .final-image__inner {
  display: flex;
  flex-direction: row;
}
.sc__popup-content .final-image__inner > img,
.sc__popup-content .final-image__inner .img-container {
  max-width: 333px;
  max-height: 333px;
  min-width: 333px;
  min-height: 333px;
}
.sc__popup-content .final-image__inner .img-container {
  position: relative;
  background: #fff;
}
.sc__popup-content .final-image__inner .img-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70%;
}
.sc__popup-content .final-image .icon {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('../img/styling-contest/icon-plus.svg') 50% 50% no-repeat #f8541f;
  border-radius: 100%;
  z-index: 2;
}
.sc__popup-content .final-image .icon:before {
  content: none;
}
.sc__popup-content .btn {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  display: inline-block;
  font-family: bebas, arial, sans-serif;
  font-size: 18px;
  letter-spacing: .4em;
  text-transform: uppercase;
  width: 250px;
  color: #000;
  padding: 15px;
  border: 1px solid #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.sc__popup-content .btn:hover {
  background: #000;
  color: #fff;
}
@media (max-width: 1024px) {
  .sc__popup {
    width: 95%;
  }
  .sc__popup .sc__popup-header {
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .sc__popup .sc__popup-content {
    width: 100%;
  }
  .sc__popup .sc__popup-content .form-row.form-row--half {
    width: 100%;
    float: none;
  }
  .sc__popup .sc__popup-content input[type="text"],
  .sc__popup .sc__popup-content input[type="email"] {
    width: 100%;
    margin-top: 0;
  }
  .sc__popup .sc__popup-content .terms {
    margin-top: 0;
  }
  .sc__popup .final-image__inner {
    flex-direction: column;
  }
  .sc__popup .final-image__inner img,
  .sc__popup .final-image__inner .img-container {
    margin: 0 auto;
  }
}
@media (max-width: 580px) {
  .sc__popup .sc__popup-content .terms {
    margin-bottom: 0;
  }
  .sc__popup .sc__popup-content input[type="submit"] {
    width: 100%;
  }
  .sc__popup .final-image__inner img,
  .sc__popup .final-image__inner .img-container {
    max-width: 250px;
    max-height: 250px;
    min-width: 250px;
    min-height: 250px;
  }
  .sc__popup .final-image__inner .img-container img {
    max-width: 70%;
    max-height: 100%;
    min-width: 0;
    min-height: 0;
  }
}
.sc__popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .sc__popup-overlay {
    align-items: flex-start;
  }
  .sc__popup-overlay .sc__popup {
    top: 40px;
    margin: 0 auto;
  }
}
.sc__gallery {
  background: url('../img/styling-contest/gallery-bg.jpg') 50% 50% / cover no-repeat;
  padding-bottom: 60px;
}
.sc__gallery-header {
  text-align: center;
  padding: 60px 5%;
  overflow: hidden;
}
.sc__gallery-header h2 {
  font-family: bebas, arial, sans-serif;
  font-size: 46px;
  line-height: 52px;
  letter-spacing: .065em;
  color: #000;
  display: inline-block;
  position: relative;
}
.sc__gallery-header h2:before,
.sc__gallery-header h2:after {
  display: block;
  content: '';
  width: 125px;
  height: 1px;
  background: #747474;
  position: absolute;
  top: 50%;
}
.sc__gallery-header h2:before {
  left: -30px;
  transform: translate(-100%, 0);
}
.sc__gallery-header h2:after {
  right: -30px;
  transform: translate(100%, 0);
}
.sc__gallery-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 0 10px 60px 10px;
}
.sc__gallery-list li {
  width: 33.333%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  margin: 0;
}
.sc__gallery-list li.loaded {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.sc__gallery-list li.loaded .item {
  padding-top: 99%;
  margin: 10px 5px 0;
  background-size: 101%;
}
.sc__gallery-list li .item {
  padding-top: 0;
  position: relative;
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.sc__gallery-list li .item .cup-icon {
  position: absolute;
  top: 20px;
  left: 20px;
}
.sc__gallery-list li .item .cup-icon img {
  width: 32px;
  margin: 10px auto;
  display: block;
}
.sc__gallery-list li .item .cup-icon .date {
  color: #fff;
  font-size: 12px;
  font-family: montserratlight, arial, sans-serif;
  text-align: center;
}
.sc__gallery-list li .item.preload-background-image {
  background: #fff;
}
.sc__gallery-list li .item__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sc__gallery-list li .item .thumb {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 120px;
  background: #fff;
  padding: 10px;
  background-position: 50% 50%;
  background-size: 60%;
  background-repeat: no-repeat;
}
.sc__gallery-list li .item .thumb.preload-background-image {
  background: url(../img/loader.svg) 50% 50% #fff no-repeat;
}
.sc__gallery-list li .item .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  opacity: 0;
  visibility: hidden;
}
.sc__gallery-list li .item .hover:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid #fff;
}
.sc__gallery-list li .item .hover a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sc__gallery-list li .item .hover a .icon {
  border-radius: 100%;
  border: 2px solid #fff;
  width: 95px;
  height: 95px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.sc__gallery-list li .item .hover a .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.sc__gallery-list li .item .hover a .icon .on-hover {
  opacity: 0;
  visibility: hidden;
}
.sc__gallery-list li .item .hover a .count {
  padding-top: 10px;
  font-size: 42px;
  color: #fff;
  font-family: bebas, arial, sans-serif;
  letter-spacing: .05em;
}
.sc__gallery-list li .item .hover a:first-of-type {
  margin-right: 40px;
}
.sc__gallery-list li .item .hover a:only-child {
  margin-right: 0;
}
.sc__gallery-list li .item .hover a:hover .icon {
  background: #fff;
}
.sc__gallery-list li .item .hover a:hover .icon .on-hover {
  opacity: 1;
  visibility: visible;
}
.sc__gallery-list li .item:hover .hover {
  opacity: 1;
  visibility: visible;
}
.sc__gallery-foot {
  text-align: center;
  margin-top: 20px;
}
.sc__gallery-foot .btn {
  display: inline-block;
  font-family: bebas, arial, sans-serif;
  font-size: 17px;
  letter-spacing: .4em;
  text-transform: uppercase;
  width: 190px;
  color: #000;
  padding: 15px;
  border: 1px solid #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.sc__gallery-foot .btn:hover,
.sc__gallery-foot .btn.active {
  background: #000;
  color: #fff;
}
@media (max-width: 1024px) {
  .sc__gallery-list {
    margin: 0 10px 0 10px;
  }
  .sc__gallery-list li {
    width: 50%;
  }
  .sc__gallery-list li .item .thumb {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 580px) {
  .sc__gallery-header h2 {
    font-size: 46px;
    line-height: 52px;
  }
  .sc__gallery-list li {
    width: 100%;
  }
}
*::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}
*::--webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}
*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}
.goforsummer {
  overflow: hidden;
}
.goforsummer__header {
  position: relative;
}
.goforsummer__header video {
  max-width: 100%;
}
.goforsummer__header .c {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.goforsummer__header h2 {
  font-family: montserratbold, arial, sans-serif;
  color: #fff;
  font-size: 56px;
  text-transform: uppercase;
}
.goforsummer__header h3 {
  font-family: montserratbold, arial, sans-serif;
  color: #fff;
  font-size: 36px;
  letter-spacing: .07em;
  margin-top: 10px;
  position: relative;
}
.goforsummer__header h3:before,
.goforsummer__header h3:after {
  content: '';
  width: 90px;
  height: 1px;
  background: #fff;
  position: absolute;
}
.goforsummer__header h3:before {
  left: -35px;
  top: 50%;
  -webkit-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-100%, -100%);
  transform: translate(-100%, -100%);
  -webkit-transform: translate(-100%, -100%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  -o-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
  transform: translate(-100%, -100%) translateZ(0) scale(1, 1);
}
.goforsummer__header h3:after {
  right: -35px;
  top: 50%;
  -webkit-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, -100%);
  transform: translate(100%, -100%);
  -webkit-transform: translate(100%, -100%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -o-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, -100%) translateZ(0) scale(1, 1);
  transform: translate(100%, -100%) translateZ(0) scale(1, 1);
}
@media only screen and (max-width: 840px) {
  .goforsummer__header h2 {
    font-size: 46px;
  }
  .goforsummer__header h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 640px) {
  .goforsummer__header h2 {
    font-size: 30px;
  }
  .goforsummer__header h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .goforsummer__header h2 {
    font-size: 24px;
  }
  .goforsummer__header h3 {
    font-size: 16px;
  }
}
.goforsummer .section {
  background: #fff;
}
.goforsummer .section__header {
  padding-top: 80px;
  text-align: center;
  margin-bottom: 75px;
}
.goforsummer .section__header h2 {
  font-family: montserratbold, arial, sans-serif;
  font-size: 38px;
  line-height: 50px;
  color: #000;
  letter-spacing: .025em;
  text-transform: uppercase;
}
@media only screen and (max-width: 480px) {
  .goforsummer .section__header h2 {
    margin-bottom: 20px;
  }
}
.goforsummer .section__header p {
  font-family: montserratlight, arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin-top: 20px;
}
.goforsummer .section__header strong {
  font-family: montserratbold, arial, sans-serif;
}
@media only screen and (max-width: 1367px) {
  .goforsummer .section__header {
    padding: 80px 20px 0;
  }
}
@media only screen and (max-width: 840px) {
  .goforsummer .section__header h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  .goforsummer .section__header p strong {
    display: block;
  }
  .goforsummer .section__header p br {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  .goforsummer .section__header h2 {
    font-size: 20px;
    line-height: 24px;
  }
  .goforsummer .section__header h2 br {
    display: none;
  }
  .goforsummer .section__header p {
    font-size: 13px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 640px) {
  .goforsummer .section__header {
    padding: 31px 20px 0;
    margin-bottom: 5px;
  }
}
.goforsummer .section__content {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .goforsummer .section__content {
    padding-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .goforsummer .section__content {
    padding-bottom: 0;
  }
}
.goforsummer .section--steps {
  background: #f7f7f7;
}
.goforsummer .section--steps .section__content {
  text-align: center;
  padding: 0 5% 80px;
}
.goforsummer .section--steps .steps {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  max-width: 1000px;
  justify-content: space-between;
  align-items: center;
  height: 320px;
}
.goforsummer .section--steps .steps .step {
  position: relative;
  border-radius: 100%;
  border: 2px dashed #f8541f;
  background: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: montserratbold, arial, sans-serif;
  color: #f8541f;
  font-size: 30px;
}
.goforsummer .section--steps .steps .step:not(:last-child):after {
  content: '';
  width: 35vw;
  max-width: 410px;
  height: 2px;
  border-bottom: 2px dashed #f8541f;
  position: absolute;
  -webkit-transform: translate(100%, -1px) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, -1px);
  transform: translate(100%, -1px);
  -webkit-transform: translate(100%, -1px) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(100%, -1px) translateZ(0) scale(1, 1);
  -o-transform: translate(100%, -1px) translateZ(0) scale(1, 1);
  -ms-transform: translate(100%, -1px) translateZ(0) scale(1, 1);
  transform: translate(100%, -1px) translateZ(0) scale(1, 1);
  top: 50%;
  right: 0;
}
.goforsummer .section--steps .steps .step .foot-text {
  display: none;
}
.goforsummer .section--steps .steps .step__image-inner {
  overflow: hidden;
  width: 308px;
  height: 308px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.goforsummer .section--steps .steps .step__image-inner > img {
  max-width: 100%;
}
.goforsummer .section--steps .steps .step__image {
  position: absolute;
  border-radius: 100%;
  border: 2px dashed #959595;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  -webkit-transform: scale(0) translateZ(0) scale(1, 1);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  top: -150%;
  left: -170%;
}
@media (min-width: 640px) {
  .goforsummer .section--steps .steps .step__image {
    top: -163%;
    left: -140%;
  }
}
@media (min-width: 841px) {
  .goforsummer .section--steps .steps .step__image {
    top: -223%;
    left: -230%;
  }
}
.goforsummer .section--steps .steps .step__image:before {
  position: absolute;
  top: 28px;
  left: 22px;
  border: 2px dashed #959595;
  width: 36px;
  height: 36px;
  font-size: 18px;
  color: #f8541f;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: montserratbold, arial, sans-serif;
}
.goforsummer .section--steps .steps .step:first-child .step__image:before {
  content: '1';
}
.goforsummer .section--steps .steps .step:nth-child(2) .step__image:before {
  content: '2';
}
.goforsummer .section--steps .steps .step:last-child .step__image {
  border-color: #f8541f;
}
.goforsummer .section--steps .steps .step:last-child .step__image:before {
  content: '3';
  border-color: #f8541f;
}
.goforsummer .section--steps .steps .step.active .step__image {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1) translateZ(0) scale(1, 1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.goforsummer .section--steps .foot-text {
  font-family: bebas, arial, sans-serif;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 50px;
  min-height: 56px;
}
@media only screen and (max-width: 1367px) {
  .goforsummer .section--steps .steps .step:after {
    max-width: 30vw;
  }
  .goforsummer .section--steps .steps .step:first-of-type .step__image {
    -webkit-transform: scale(0) translateX(30%) translateZ(0) scale(1, 1);
    -moz-transform: scale(0) translateX(30%);
    -o-transform: scale(0) translateX(30%);
    -ms-transform: scale(0) translateX(30%);
    transform: scale(0) translateX(30%);
  }
  .goforsummer .section--steps .steps .step:first-of-type.active .step__image {
    -webkit-transform: scale(1) translateX(30%) translateZ(0) scale(1, 1);
    -moz-transform: scale(1) translateX(30%);
    -o-transform: scale(1) translateX(30%);
    -ms-transform: scale(1) translateX(30%);
    transform: scale(1) translateX(30%);
  }
  .goforsummer .section--steps .steps .step:last-of-type .step__image {
    -webkit-transform: scale(0) translateX(-30%) translateZ(0) scale(1, 1);
    -moz-transform: scale(0) translateX(-30%);
    -o-transform: scale(0) translateX(-30%);
    -ms-transform: scale(0) translateX(-30%);
    transform: scale(0) translateX(-30%);
  }
  .goforsummer .section--steps .steps .step:last-of-type.active .step__image {
    -webkit-transform: scale(1) translateX(-30%) translateZ(0) scale(1, 1);
    -moz-transform: scale(1) translateX(-30%);
    -o-transform: scale(1) translateX(-30%);
    -ms-transform: scale(1) translateX(-30%);
    transform: scale(1) translateX(-30%);
  }
}
@media only screen and (max-width: 840px) {
  .goforsummer .section--steps .steps .step .step__image:before {
    top: 8px;
  }
  .goforsummer .section--steps .steps .step .step__image-inner {
    max-width: 244px;
    height: 244px;
  }
}
@media only screen and (max-width: 640px) {
  .goforsummer .section--steps .steps {
    position: relative;
    height: 300px;
  }
  .goforsummer .section--steps .steps .step {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    opacity: 0;
    visibility: hidden;
  }
  .goforsummer .section--steps .steps .step:before,
  .goforsummer .section--steps .steps .step:after {
    display: none;
  }
  .goforsummer .section--steps .steps .step__image {
    -webkit-transform: translateX(0) scale(0) translateZ(0) scale(1, 1);
    -moz-transform: translateX(0) scale(0);
    -o-transform: translateX(0) scale(0);
    -ms-transform: translateX(0) scale(0);
    transform: translateX(0) scale(0);
  }
  .goforsummer .section--steps .steps .step:first-of-type .step__image,
  .goforsummer .section--steps .steps .step:last-of-type .step__image {
    -webkit-transform: translateX(0) scale(0) translateZ(0) scale(1, 1);
    -moz-transform: translateX(0) scale(0);
    -o-transform: translateX(0) scale(0);
    -ms-transform: translateX(0) scale(0);
    transform: translateX(0) scale(0);
  }
  .goforsummer .section--steps .steps .step.active {
    opacity: 1;
    visibility: visible;
  }
  .goforsummer .section--steps .steps .step.active .step__image {
    -webkit-transform: translateX(0) scale(1) translateZ(0) scale(1, 1);
    -moz-transform: translateX(0) scale(1);
    -o-transform: translateX(0) scale(1);
    -ms-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
  }
  .goforsummer .section--steps .steps .step.active:first-of-type .step__image,
  .goforsummer .section--steps .steps .step.active:last-of-type .step__image {
    -webkit-transform: translateX(0) scale(1) translateZ(0) scale(1, 1);
    -moz-transform: translateX(0) scale(1);
    -o-transform: translateX(0) scale(1);
    -ms-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
  }
}
.goforsummer .section--progress {
  border-bottom: 2px dashed #b7b7b7;
}
.goforsummer .section--progress .section__content {
  padding-bottom: 0;
  margin-top: 82px;
}
@media (min-width: 500px) {
  .goforsummer .section--progress .section__content {
    margin-top: 102px;
  }
}
@media (min-width: 641px) {
  .goforsummer .section--progress .section__content {
    margin-top: 0;
  }
}
.goforsummer .section--progress .progress {
  height: 350px;
  position: relative;
  max-width: 70%;
}
@media only screen and (max-width: 480px) {
  .goforsummer .section--progress .progress {
    height: 157px;
  }
}
@media only screen and (max-width: 640px) {
  .goforsummer .section--progress .progress {
    height: 193px;
  }
}
.goforsummer .section--progress .progress .info {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(50%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  text-align: center;
}
.goforsummer .section--progress .progress .info__container {
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  transition: all 1s ease-in-out;
  padding-left: 200px;
}
@media only screen and (max-width: 640px) {
  .goforsummer .section--progress .progress .info__container {
    padding-left: 120px;
  }
}
.goforsummer .section--progress .progress .info.jsInfoShoe {
  /*.translateX(0);*/
}
.goforsummer .section--progress .progress .info .steps-number {
  font-family: montserratbold, arial, sans-serif;
  display: block;
  text-align: center;
  color: #f8541f;
  font-size: 72px;
  padding: 10px 0;
  white-space: nowrap;
}
.goforsummer .section--progress .progress .info img {
  max-width: 40vw;
}
.goforsummer .section--progress .progress .info p {
  font-family: bebas, arial, sans-serif;
  font-size: 24px;
  letter-spacing: .06em;
}
.goforsummer .section--progress .progress__bar {
  position: absolute;
  height: 8px;
  background: #f8541f;
  width: 0;
  bottom: -3px;
  left: 0;
  transition: 1s ease-in-out;
  z-index: 1;
  padding-left: 200px;
}
.goforsummer .section--progress .progress__bar > .info {
  bottom: -6px;
}
.goforsummer .section--progress .progress__finish {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #f8541f;
}
.goforsummer .section--progress .progress__finish > .info {
  bottom: 20px;
}
@media only screen and (max-width: 1110px) {
  .goforsummer .section--progress .progress {
    max-width: 85%;
  }
}
@media only screen and (max-width: 640px) {
  .goforsummer .section--progress .progress .progress__bar {
    padding-left: 120px;
  }
  .goforsummer .section--progress .progress .progress__bar .info,
  .goforsummer .section--progress .progress .progress__finish .info {
    bottom: 0;
  }
  .goforsummer .section--progress .progress .progress__bar .info p,
  .goforsummer .section--progress .progress .progress__finish .info p {
    font-size: 17px;
    line-height: 22px;
  }
  .goforsummer .section--progress .progress .progress__bar .info .steps-number,
  .goforsummer .section--progress .progress .progress__finish .info .steps-number {
    font-size: 36px;
    line-height: 1;
  }
}
.goforsummer .section--awards {
  background: #f7f7f7;
  padding-bottom: 82px;
}
.goforsummer .section--awards .section__content {
  display: flex;
  justify-content: flex-end;
}
.goforsummer .section--awards .awards {
  width: 85%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.goforsummer .section--awards .awards .award {
  width: 25%;
  position: relative;
}
.goforsummer .section--awards .awards .award:before {
  content: '';
  position: absolute;
  z-index: 1;
}
.goforsummer .section--awards .awards .award__inner {
  display: inline-block;
  position: relative;
  z-index: 2;
  max-width: 100%;
}
.goforsummer .section--awards .awards .award__image img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}
.goforsummer .section--awards .awards .award__sub {
  max-width: 200px;
  margin: 20px auto 0 auto;
}
.goforsummer .section--awards .awards .award__sub sub {
  font-family: montserratlight, arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #7b7b7b;
}
.goforsummer .section--awards .awards .award__text {
  margin-top: 30px;
  text-align: center;
}
.goforsummer .section--awards .awards .award__text h4 {
  font-family: montserratbold, arial, sans-serif;
  text-transform: uppercase;
  color: #f8541f;
  font-size: 28px;
  margin-bottom: 5px;
}
.goforsummer .section--awards .awards .award__text p {
  font-family: bebas, arial, sans-serif;
  text-align: center;
  font-size: 24px;
  line-height: 28px;
}
.goforsummer .section--awards .awards .award:first-child {
  align-self: flex-start;
}
.goforsummer .section--awards .awards .award:first-child:before {
  background: url('../img/goforsummer/cloud-1.png') 0 0 / contain no-repeat;
  width: 311px;
  height: 169px;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
.goforsummer .section--awards .awards .award:nth-child(2) {
  align-self: flex-end;
}
.goforsummer .section--awards .awards .award:nth-child(2):before {
  background: url('../img/goforsummer/cloud-2.png') 0 0 / contain no-repeat;
  width: 311px;
  height: 169px;
  -webkit-transform: translateX(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.goforsummer .section--awards .awards .award:last-child {
  width: 50%;
  align-self: flex-end;
}
.goforsummer .section--awards .awards .award:last-child:before {
  background: url('../img/goforsummer/cloud-3.png') 0 0 / contain no-repeat;
  width: 806px;
  height: 275px;
}
.goforsummer .section--awards .awards .award:last-child .award__text {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-100px, -50px) translateZ(0) scale(1, 1);
  -ms-transform: translate(-100px, -50px);
  transform: translate(-100px, -50px);
  -webkit-transform: translate(-100px, -50px) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-100px, -50px) translateZ(0) scale(1, 1);
  -o-transform: translate(-100px, -50px) translateZ(0) scale(1, 1);
  -ms-transform: translate(-100px, -50px) translateZ(0) scale(1, 1);
  transform: translate(-100px, -50px) translateZ(0) scale(1, 1);
}
@media only screen and (max-width: 1110px) {
  .goforsummer .section--awards .awards {
    width: 100%;
    padding: 0 0 0 5%;
    min-height: 400px;
  }
  .goforsummer .section--awards .awards .award:last-child .award__text {
    -webkit-transform: translate(-50px, -120px) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50px, -120px);
    transform: translate(-50px, -120px);
    -webkit-transform: translate(-50px, -120px) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50px, -120px) translateZ(0) scale(1, 1);
    -o-transform: translate(-50px, -120px) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50px, -120px) translateZ(0) scale(1, 1);
    transform: translate(-50px, -120px) translateZ(0) scale(1, 1);
  }
}
@media only screen and (max-width: 840px) {
  .goforsummer .section--awards .awards {
    flex-wrap: wrap;
    justify-content: center;
  }
  .goforsummer .section--awards .awards .award {
    width: 35%;
  }
  .goforsummer .section--awards .awards .award__text h4 {
    font-size: 22px;
  }
  .goforsummer .section--awards .awards .award__text p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 25px;
  }
  .goforsummer .section--awards .awards .award:last-child {
    width: 80%;
    margin-top: 80px;
  }
  .goforsummer .section--awards .awards .award:last-child .award__text {
    -webkit-transform: translate(20px, -60px) translateZ(0) scale(1, 1);
    -ms-transform: translate(20px, -60px);
    transform: translate(20px, -60px);
    -webkit-transform: translate(20px, -60px) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(20px, -60px) translateZ(0) scale(1, 1);
    -o-transform: translate(20px, -60px) translateZ(0) scale(1, 1);
    -ms-transform: translate(20px, -60px) translateZ(0) scale(1, 1);
    transform: translate(20px, -60px) translateZ(0) scale(1, 1);
  }
  .goforsummer .section--awards .awards .award:last-child .award__sub {
    float: right;
  }
}
@media only screen and (max-width: 640px) {
  .goforsummer .section--awards .awards .award {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .goforsummer .section--awards .awards .award:last-child .award__text {
    position: static;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
  }
  .goforsummer .section--awards .awards .award:last-child .award__sub {
    float: none;
  }
}
.goforsummer .section--sing-in .steps {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
}
.goforsummer .section--sing-in .steps .step {
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.goforsummer .section--sing-in .steps .step:before {
  content: '';
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 100%;
  display: block;
  position: absolute;
  bottom: 60px;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.goforsummer .section--sing-in .steps .step:not(:last-child):after {
  content: '';
  width: 33vw;
  height: 2px;
  border-bottom: 2px dashed #bebebe;
  background: #fff;
  position: absolute;
  -webkit-transform: translateY(-1px) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-backface-visibility: hidden;
  bottom: 64px;
  left: 50%;
}
.goforsummer .section--sing-in .steps .step p {
  text-align: center;
  margin-top: 100px;
  font-size: 24px;
  letter-spacing: .07em;
  padding: 0 20px;
  font-family: bebas, arial, sans-serif;
}
@media only screen and (max-width: 1367px) {
  .goforsummer .section--sing-in .steps {
    padding: 0 5%;
  }
  .goforsummer .section--sing-in .steps .step:after {
    max-width: 34vw;
  }
}
@media only screen and (max-width: 1110px) {
  .goforsummer .section--sing-in .steps .step:after {
    max-width: 32vw;
  }
}
@media only screen and (max-width: 840px) {
  .goforsummer .section--sing-in .steps .step:after {
    max-width: 29vw;
  }
  .goforsummer .section--sing-in .steps .step p {
    margin-bottom: -30px;
  }
}
@media only screen and (max-width: 640px) {
  .goforsummer .section--sing-in .steps {
    flex-direction: column;
  }
  .goforsummer .section--sing-in .steps li.step img,
  .goforsummer .section--sing-in .steps li.step p {
    position: relative;
    z-index: 1;
    background: #fff;
    box-shadow: 0 0 0 7px #fff;
    margin-bottom: 0;
  }
  .goforsummer .section--sing-in .steps li.step:first-of-type:after {
    content: none;
  }
  .goforsummer .section--sing-in .steps li.step:not(:first-of-type):after {
    content: '';
    width: 0;
    border-left: 2px dashed #bebebe;
    height: 100%;
    position: absolute;
    top: -60px;
    left: 50%;
    z-index: 0;
  }
}
.goforsummer .section--sing-in .sing-in-form {
  max-width: 1380px;
  margin: 120px auto;
  padding: 0 20px;
}
@media (min-width: 840px) {
  .goforsummer .section--sing-in .sing-in-form {
    margin: 120px auto 60px;
  }
}
@media (min-width: 1400px) {
  .goforsummer .section--sing-in .sing-in-form {
    margin: 120px auto 130px;
  }
}
.goforsummer .section--sing-in .sing-in-form form {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
}
.goforsummer .section--sing-in .drop {
  width: 50%;
  border: 2px dashed #e8e8e8;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 18px;
}
.goforsummer .section--sing-in .drop__inner {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 420px;
  background: #e8e8e8;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 0;
  color: #5c5c5c;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.goforsummer .section--sing-in .drop__inner.mouse-over {
  box-shadow: 0 0 2px 2px rgba(248, 84, 31, 0.6);
}
.goforsummer .section--sing-in .drop__inner .clear-form {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: #f8541f;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: montserratlight, arial, sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  -webkit-transform: translateX(100%) translateZ(0) scale(1, 1);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.goforsummer .section--sing-in .drop__inner .clear-form:hover {
  background: #000;
  color: #f8541f;
}
.goforsummer .section--sing-in .drop__inner.dropped {
  background-image: url('../img/ok.svg');
  background-size: 60px;
}
.goforsummer .section--sing-in .drop__inner.dropped .clear-form {
  transform: none;
}
.goforsummer .section--sing-in .drop__inner.dropped .jsFileName {
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(-100%);
}
.goforsummer .section--sing-in .drop__inner.dropped .btn,
.goforsummer .section--sing-in .drop__inner.dropped span:not(.jsFileName) {
  opacity: 0;
  visibility: hidden;
}
.goforsummer .section--sing-in .drop__inner label {
  text-align: center;
  cursor: pointer;
  margin-top: 20%;
}
.goforsummer .section--sing-in .drop__inner label span {
  display: block;
  font-size: 30px;
  letter-spacing: .06em;
  color: #5c5c5c;
  font-family: bebas, arial, sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.goforsummer .section--sing-in .drop__inner label .btn {
  font-size: 17px;
  letter-spacing: .4em;
  color: #fff;
  background: #5c5c5c;
  font-family: bebas, arial, sans-serif;
  padding: 12px 25px;
  display: inline-block;
  margin-top: 70px;
  pointer-events: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.goforsummer .section--sing-in .drop__inner input[type="file"] {
  opacity: 0;
}
.goforsummer .section--sing-in .form {
  width: 50%;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.goforsummer .section--sing-in .form p {
  font-family: montserratlight, arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: .05em;
  text-align: center;
}
.goforsummer .section--sing-in .form p.jsAgree {
  font-size: 10px;
  line-height: 20px;
  text-align: left;
  margin: 20px 0;
  color: #939393;
  margin-bottom: 0;
}
.goforsummer .section--sing-in .form .form-row {
  margin-bottom: 28px;
  position: relative;
}
.goforsummer .section--sing-in .form .form-info {
  margin-bottom: 15px;
}
.goforsummer .section--sing-in .form .form-info--strong {
  font-weight: bold;
}
.goforsummer .section--sing-in .form .input {
  border-color: #000;
  text-align: center;
  font-family: bebas, arial, sans-serif;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: .4em;
  box-shadow: none;
  height: 50px;
  padding: 0 15px;
}
.goforsummer .section--sing-in .form .input--half {
  width: calc(50% - 10px);
}
.goforsummer .section--sing-in .form .input--half:first-child {
  margin-right: 17px;
}
.goforsummer .section--sing-in .form .input ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
}
.goforsummer .section--sing-in .form .input ::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}
.goforsummer .section--sing-in .form .input :-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
}
.goforsummer .section--sing-in .form .input :-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}
.goforsummer .section--sing-in .form input[type="checkbox"] {
  display: none;
}
.goforsummer .section--sing-in .form input[type="checkbox"] + label {
  font-size: 12px;
  min-height: 27px;
  letter-spacing: .1em;
  font-family: montserratlight, arial, sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.goforsummer .section--sing-in .form input[type="checkbox"] + label .label-inner {
  max-width: calc(100% - 50px);
}
.goforsummer .section--sing-in .form input[type="checkbox"] + label .label-inner > a {
  text-transform: uppercase;
  text-decoration: underline;
  padding-left: 5px;
  white-space: nowrap;
}
.goforsummer .section--sing-in .form input[type="checkbox"] + label .label-inner span {
  line-height: 18px;
}
.goforsummer .section--sing-in .form input[type="checkbox"] + label:before {
  content: '';
  width: 25px;
  height: 25px;
  display: block;
  float: left;
  border: 1px solid #000;
  margin-right: 25px;
  cursor: pointer;
  background: url('../img/thick_white.png') 50% 50% / contain no-repeat #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.goforsummer .section--sing-in .form input[type="checkbox"]:checked + label:before {
  background-color: #000;
}
.goforsummer .section--sing-in .form input[type="submit"] {
  font-family: bebas, arial, sans-serif;
  font-size: 17px;
  background: #f8541f;
  border: none;
  letter-spacing: .4em;
  color: #fff;
  padding: 15px 35px;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
@media only screen and (max-width: 480px) {
  .goforsummer .section--sing-in .form input[type="submit"] {
    font-size: 14px;
    padding: 15px 15px;
  }
}
.goforsummer .section--sing-in .form input[type="submit"]:hover {
  background: #FFF;
  color: #f8541f;
}
.goforsummer .section--sing-in .form input[type="submit"]:disabled {
  display: none;
}
.goforsummer .section--sing-in .input-validate-msg {
  font-family: montserratlight, arial, sans-serif;
  font-size: 12px;
  color: red;
  position: absolute;
  bottom: -15px;
  left: 0;
}
.goforsummer .section--sing-in .input-validate-msg.input-validate-msg--video {
  bottom: 20px;
  left: 20px;
}
@media only screen and (max-width: 840px) {
  .goforsummer .section--sing-in .sing-in-form {
    margin: 40px 0 0 0;
  }
  .goforsummer .section--sing-in .sing-in-form form {
    flex-direction: column;
  }
  .goforsummer .section--sing-in .sing-in-form .form {
    width: 100%;
    max-width: 640px;
    margin-top: 50px;
    padding-left: 0;
  }
  .goforsummer .section--sing-in .sing-in-form .drop {
    width: 100%;
  }
  .goforsummer .section--sing-in .sing-in-form .drop__inner {
    height: auto;
    padding: 20px;
  }
  .goforsummer .section--sing-in .sing-in-form .drop__inner label {
    margin-top: 20px;
  }
  .goforsummer .section--sing-in .sing-in-form .drop__inner .btn {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 840px) and (min-width: 640px) {
  .goforsummer .section--sing-in .sing-in-form {
    margin: 76px 0 0 0;
  }
}
@media only screen and (max-width: 840px) and (min-width: 841px) {
  .goforsummer .section--sing-in .sing-in-form {
    margin: 50px auto;
  }
}
@media only screen and (max-width: 840px) and (min-width: 1024px) {
  .goforsummer .section--sing-in .sing-in-form {
    margin: 73px auto;
  }
}
@media only screen and (max-width: 840px) and (min-width: 1400px) {
  .goforsummer .section--sing-in .sing-in-form {
    margin: 130px auto;
  }
}
@media only screen and (max-width: 640px) {
  .goforsummer .section--sing-in .sing-in-form .form .form-row:first-of-type {
    margin-bottom: 0;
  }
  .goforsummer .section--sing-in .sing-in-form .form .form-row .input--half {
    width: 100%;
    margin-right: 0;
  }
}
.goforsummer .videos-slider {
  overflow: hidden;
}
.goforsummer .videos-slider .section__header {
  margin-bottom: 0;
  padding: 0;
  height: 210px;
  position: relative;
}
.goforsummer .videos-slider .section__header h2 {
  color: #fff;
  font-size: 60px;
  position: absolute;
  top: 50%;
  width: 100%;
  font-family: montserratbold, arial, sans-serif;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  z-index: 9;
}
.goforsummer .videos-slider .section__header:before,
.goforsummer .videos-slider .section__header:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(calc(-100% - 480px), 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(calc(-100% - 480px), 0);
  transform: translate(calc(-100% - 480px), 0);
  -webkit-transform: translate(calc(-100% - 480px), 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(calc(-100% - 480px), 0) translateZ(0) scale(1, 1);
  -o-transform: translate(calc(-100% - 480px), 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(calc(-100% - 480px), 0) translateZ(0) scale(1, 1);
  transform: translate(calc(-100% - 480px), 0) translateZ(0) scale(1, 1);
  background: url("../img/goforsummer/video-header-img-before.jpg") 50% 50%;
  height: 210px;
  width: 474px;
}
.goforsummer .videos-slider .section__header:after {
  -webkit-transform: translate(calc(100% + 480px), 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(calc(100% + 480px), 0);
  transform: translate(calc(100% + 480px), 0);
  -webkit-transform: translate(calc(100% + 480px), 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(calc(100% + 480px), 0) translateZ(0) scale(1, 1);
  -o-transform: translate(calc(100% + 480px), 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(calc(100% + 480px), 0) translateZ(0) scale(1, 1);
  transform: translate(calc(100% + 480px), 0) translateZ(0) scale(1, 1);
  background: url("../img/goforsummer/video-header-img-after.jpg") 50% 50%;
  right: 50%;
  left: auto;
}
.goforsummer .videos-slider .section__footer {
  height: 208px;
  position: relative;
}
.goforsummer .videos-slider .section__footer:before,
.goforsummer .videos-slider .section__footer:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(calc(-100% - 480px), 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(calc(-100% - 480px), 0);
  transform: translate(calc(-100% - 480px), 0);
  -webkit-transform: translate(calc(-100% - 480px), 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(calc(-100% - 480px), 0) translateZ(0) scale(1, 1);
  -o-transform: translate(calc(-100% - 480px), 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(calc(-100% - 480px), 0) translateZ(0) scale(1, 1);
  transform: translate(calc(-100% - 480px), 0) translateZ(0) scale(1, 1);
  background: url("../img/goforsummer/video-footer-img-before.jpg");
  height: 210px;
  width: 474px;
}
.goforsummer .videos-slider .section__footer:after {
  -webkit-transform: translate(calc(100% + 480px), 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(calc(100% + 480px), 0);
  transform: translate(calc(100% + 480px), 0);
  -webkit-transform: translate(calc(100% + 480px), 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(calc(100% + 480px), 0) translateZ(0) scale(1, 1);
  -o-transform: translate(calc(100% + 480px), 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(calc(100% + 480px), 0) translateZ(0) scale(1, 1);
  transform: translate(calc(100% + 480px), 0) translateZ(0) scale(1, 1);
  background: url("../img/goforsummer/video-footer-img-after.jpg");
  right: 50%;
  left: auto;
}
.goforsummer .videos-slider .section__footer img {
  display: block;
  margin: 0 auto;
}
.goforsummer .videos-slider .swiper-container {
  background: url("../img/loader.svg") 50% 50% no-repeat #000;
  background-size: 100px;
}
.goforsummer .videos-slider .swiper-container.error {
  background: url("../img/goforsummer/placeholder-bg.jpg") 50% 50% no-repeat #000;
}
.goforsummer .videos-slider .swiper-container.error .error-text,
.goforsummer .videos-slider .swiper-container.error .error-image {
  opacity: 1;
  visibility: visible;
}
.goforsummer .videos-slider .swiper-container.error img {
  display: block;
  margin: 0 auto;
}
.goforsummer .videos-slider .swiper-wrapper {
  height: 540px;
}
@media only screen and (max-width: 1110px) {
  .goforsummer .videos-slider .swiper-wrapper {
    height: 386px;
  }
}
@media only screen and (max-width: 840px) {
  .goforsummer .videos-slider .swiper-wrapper {
    height: 340px;
  }
}
@media only screen and (max-width: 640px) {
  .goforsummer .videos-slider .swiper-wrapper {
    height: 180px;
  }
}
.goforsummer .videos-slider .swiper-wrapper .error-text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 42px;
  font-family: bebas, arial, sans-serif;
  color: #fff;
  letter-spacing: .065em;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease 0.6s;
  -moz-transition: all 0.3s ease 0.6s;
  -o-transition: all 0.3s ease 0.6s;
  -ms-transition: all 0.3s ease 0.6s;
  transition: all 0.3s ease 0.6s;
  -o-transform: translate(0px);
  opacity: 0;
  visibility: hidden;
}
.goforsummer .videos-slider .swiper-wrapper .error-text strong {
  display: block;
  font-size: 130px;
}
.goforsummer .videos-slider .swiper-wrapper .error-image {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.goforsummer .videos-slider .swiper-slide {
  width: 960px;
  position: relative;
  overflow: hidden;
}
.goforsummer .videos-slider .swiper-slide .play-button {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/goforsummer/play_button.png') 50% 50% no-repeat;
  z-index: 3;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 640px) {
  .goforsummer .videos-slider .swiper-slide .play-button {
    background-size: contain;
  }
}
.goforsummer .videos-slider .swiper-slide .buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-content: center;
  flex-direction: row;
}
@media only screen and (max-width: 640px) {
  .goforsummer .videos-slider .swiper-slide .buttons {
    opacity: 0;
    visibility: hidden;
  }
}
.goforsummer .videos-slider .swiper-slide .buttons > a,
.goforsummer .videos-slider .swiper-slide .buttons > span {
  display: flex;
  align-content: center;
  justify-content: center;
  height: 42px;
  min-width: 42px;
  line-height: 42px;
}
.goforsummer .videos-slider .swiper-slide .buttons .share {
  color: #fff;
  background: url('../img/icon-share.svg') center center / 24px no-repeat #0260c0;
}
.goforsummer .videos-slider .swiper-slide .buttons .like-add {
  color: #f8541f;
  background: url('../img/icon-like.svg') center center / 20px no-repeat #f8541f;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.goforsummer .videos-slider .swiper-slide .buttons .like-add:hover {
  background-size: 24px;
}
.goforsummer .videos-slider .swiper-slide .buttons .like-add.disabled {
  cursor: default;
  background-color: rgba(248, 84, 31, 0.5);
  background-size: 20px;
}
.goforsummer .videos-slider .swiper-slide .buttons .like-add.disabled:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
.goforsummer .videos-slider .swiper-slide .buttons .like-add .tooltip {
  position: absolute;
  opacity: 0;
  top: 57px;
  left: 0;
  padding: 10px;
  visibility: hidden;
  background: #fff;
  color: #000;
  width: 200px;
  font-size: 12px;
  line-height: 18px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
  font-family: montserratlight, arial, sans-serif;
}
.goforsummer .videos-slider .swiper-slide .buttons .like-add .tooltip:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  top: -10px;
  left: 15px;
}
.goforsummer .videos-slider .swiper-slide .buttons .likes {
  background: #f8541f;
  color: #FFF;
  font-family: montserratbold, arial, sans-serif;
  padding: 0 15px;
  font-size: 14px;
  letter-spacing: .02em;
  display: flex;
  align-content: center;
  justify-content: center;
}
.goforsummer .videos-slider .swiper-slide video {
  display: block;
  height: 542px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
.goforsummer .videos-slider .swiper-slide .winner {
  display: none;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 5;
}
.goforsummer .videos-slider .swiper-slide .winner > img {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto;
}
.goforsummer .videos-slider .swiper-slide .winner .date {
  display: block;
  color: #fff;
  text-align: center;
  font-family: montserratregular, arial, sans-serif;
  padding-top: 15px;
  letter-spacing: .1em;
}
@media only screen and (max-width: 640px) {
  .goforsummer .videos-slider .swiper-slide .winner {
    top: 15px;
    right: 15px;
  }
  .goforsummer .videos-slider .swiper-slide .winner > img {
    width: 30px;
    height: 30px;
  }
}
.goforsummer .videos-slider .swiper-slide.swiper-slide-active .play-button {
  opacity: 1;
  visibility: visible;
}
.goforsummer .videos-slider .swiper-slide.swiper-slide-active video {
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  .goforsummer .videos-slider .swiper-slide.swiper-slide-active .buttons {
    opacity: 1;
    visibility: visible;
  }
}
.goforsummer .videos-slider .swiper-slide.video-playing .play-button {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0) translateZ(0) scale(1, 1);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
@media only screen and (max-width: 1110px) {
  .goforsummer .videos-slider .swiper-slide {
    width: 686px;
  }
  .goforsummer .videos-slider .swiper-slide video {
    height: 386px;
  }
}
@media only screen and (max-width: 840px) {
  .goforsummer .videos-slider .swiper-slide {
    width: 600px;
    height: 340px;
  }
  .goforsummer .videos-slider .swiper-slide video {
    height: 340px;
  }
}
@media only screen and (max-width: 640px) {
  .goforsummer .videos-slider .swiper-slide {
    width: 320px;
    height: 181px;
  }
  .goforsummer .videos-slider .swiper-slide video {
    height: 181px;
  }
}
.goforsummer .videos-slider [data-winner="true"] .winner {
  display: block;
}
.goforsummer .videos-slider .jsTooltipText {
  display: none;
}
@media only screen and (max-width: 1110px) {
  .goforsummer .videos-slider .section__header,
  .goforsummer .videos-slider .section__footer {
    height: 150px;
  }
  .goforsummer .videos-slider .section__header:before,
  .goforsummer .videos-slider .section__footer:before {
    height: 150px;
    width: 342px;
    -webkit-transform: translate(calc(-100% - 342px), 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(calc(-100% - 342px), 0);
    transform: translate(calc(-100% - 342px), 0);
    -webkit-transform: translate(calc(-100% - 342px), 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(calc(-100% - 342px), 0) translateZ(0) scale(1, 1);
    -o-transform: translate(calc(-100% - 342px), 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(calc(-100% - 342px), 0) translateZ(0) scale(1, 1);
    transform: translate(calc(-100% - 342px), 0) translateZ(0) scale(1, 1);
    background-position: 100% 0;
  }
  .goforsummer .videos-slider .section__header:after,
  .goforsummer .videos-slider .section__footer:after {
    height: 150px;
    width: 342px;
    -webkit-transform: translate(calc(100% + 342px), 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(calc(100% + 342px), 0);
    transform: translate(calc(100% + 342px), 0);
    -webkit-transform: translate(calc(100% + 342px), 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(calc(100% + 342px), 0) translateZ(0) scale(1, 1);
    -o-transform: translate(calc(100% + 342px), 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(calc(100% + 342px), 0) translateZ(0) scale(1, 1);
    transform: translate(calc(100% + 342px), 0) translateZ(0) scale(1, 1);
    background-position: 0 0;
  }
  .goforsummer .videos-slider .section__header img,
  .goforsummer .videos-slider .section__footer img {
    width: 686px;
  }
}
@media only screen and (max-width: 840px) {
  .goforsummer .videos-slider .section__header,
  .goforsummer .videos-slider .section__footer {
    height: 130px;
  }
  .goforsummer .videos-slider .section__header h2,
  .goforsummer .videos-slider .section__footer h2 {
    font-size: 48px;
  }
  .goforsummer .videos-slider .section__header:before,
  .goforsummer .videos-slider .section__footer:before {
    height: 130px;
    width: 300px;
    -webkit-transform: translate(calc(-100% - 300px), 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(calc(-100% - 300px), 0);
    transform: translate(calc(-100% - 300px), 0);
    -webkit-transform: translate(calc(-100% - 300px), 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(calc(-100% - 300px), 0) translateZ(0) scale(1, 1);
    -o-transform: translate(calc(-100% - 300px), 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(calc(-100% - 300px), 0) translateZ(0) scale(1, 1);
    transform: translate(calc(-100% - 300px), 0) translateZ(0) scale(1, 1);
    background-position: 100% 0;
  }
  .goforsummer .videos-slider .section__header:after,
  .goforsummer .videos-slider .section__footer:after {
    height: 130px;
    width: 300px;
    -webkit-transform: translate(calc(100% + 300px), 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(calc(100% + 300px), 0);
    transform: translate(calc(100% + 300px), 0);
    -webkit-transform: translate(calc(100% + 300px), 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(calc(100% + 300px), 0) translateZ(0) scale(1, 1);
    -o-transform: translate(calc(100% + 300px), 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(calc(100% + 300px), 0) translateZ(0) scale(1, 1);
    transform: translate(calc(100% + 300px), 0) translateZ(0) scale(1, 1);
    background-position: 0 0;
  }
  .goforsummer .videos-slider .section__header img,
  .goforsummer .videos-slider .section__footer img {
    width: 600px;
  }
}
@media only screen and (max-width: 640px) {
  .goforsummer .videos-slider .section__header,
  .goforsummer .videos-slider .section__footer {
    height: 100px;
  }
  .goforsummer .videos-slider .section__header h2,
  .goforsummer .videos-slider .section__footer h2 {
    font-size: 48px;
  }
  .goforsummer .videos-slider .section__header:before,
  .goforsummer .videos-slider .section__footer:before {
    height: 100px;
    width: 231px;
    -webkit-transform: translate(calc(-100% - 229px), 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(calc(-100% - 229px), 0);
    transform: translate(calc(-100% - 229px), 0);
    -webkit-transform: translate(calc(-100% - 229px), 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(calc(-100% - 229px), 0) translateZ(0) scale(1, 1);
    -o-transform: translate(calc(-100% - 229px), 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(calc(-100% - 229px), 0) translateZ(0) scale(1, 1);
    transform: translate(calc(-100% - 229px), 0) translateZ(0) scale(1, 1);
    background-position: 100% 0;
  }
  .goforsummer .videos-slider .section__header:after,
  .goforsummer .videos-slider .section__footer:after {
    height: 100px;
    width: 231px;
    -webkit-transform: translate(calc(100% + 229px), 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(calc(100% + 229px), 0);
    transform: translate(calc(100% + 229px), 0);
    -webkit-transform: translate(calc(100% + 229px), 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(calc(100% + 229px), 0) translateZ(0) scale(1, 1);
    -o-transform: translate(calc(100% + 229px), 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(calc(100% + 229px), 0) translateZ(0) scale(1, 1);
    transform: translate(calc(100% + 229px), 0) translateZ(0) scale(1, 1);
    background-position: 0 0;
  }
  .goforsummer .videos-slider .section__header img,
  .goforsummer .videos-slider .section__footer img {
    width: auto;
    height: 100px;
  }
}
@media only screen and (max-width: 480px) {
  .goforsummer .videos-slider h2 {
    font-size: 38px;
    line-height: 40px;
  }
}
.contact-banner .contact-header__banner-image {
  height: 244px;
  background-repeat: no-repeat;
}
@media (min-width: 321px) {
  .contact-banner .contact-header__banner-image {
    height: 327px;
  }
}
@media (min-width: 769px) {
  .contact-banner .contact-header__banner-image {
    height: 249px;
  }
}
@media (min-width: 1025px) {
  .contact-banner .contact-header__banner-image {
    height: 317px;
  }
}
.contact-banner .contact-header__title {
  font-size: 40px;
  color: #fff;
  letter-spacing: 9px;
  line-height: 49px;
}
@media (min-width: 768px) {
  .contact-banner .contact-header__title {
    font-size: 70px;
    line-height: 80px;
    letter-spacing: 17px;
  }
}
@media (min-width: 1500px) {
  .contact-banner .contact-header__title {
    font-size: 60px;
    line-height: 74px;
    letter-spacing: 13px;
  }
}
.contact-container {
  padding: 46px 0 26px;
}
@media (min-width: 1024px) {
  .contact-container {
    padding: 56px 0 30px;
  }
}
@media (min-width: 1200px) {
  .contact-container {
    padding: 91px 0 64px;
  }
}
.contact-container::after {
  content: '';
  display: table;
  clear: both;
}
.contact-header {
  margin-bottom: 19px;
}
@media (min-width: 768px) {
  .contact-header {
    margin-bottom: 40px;
  }
}
.contact-header__title {
  font-size: 25px;
  letter-spacing: 6px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-header__title {
    font-size: 40px;
    letter-spacing: 8px;
  }
}
.contact-header__title--orange {
  color: #fc5119;
}
.contact-article {
  font-family: montserratlight, arial, sans-serif;
}
.contact-article__p {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 22px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-article__p {
    font-size: 15px;
    letter-spacing: 3px;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .contact-article__p {
    letter-spacing: 4px;
  }
}
.contact-article__p--bottom {
  padding-bottom: 23px;
}
@media (min-width: 768px) {
  .contact-article__p--bottom {
    padding-bottom: 30px;
  }
}
.contact-article__p--center {
  text-align: center;
}
.contact-list--upper-roman {
  list-style-type: upper-roman;
}
.contact-list--decimal {
  list-style-type: decimal;
}
.contact-list--disc {
  list-style-type: disc;
}
.faq .contact-header__banner-image {
  background-image: url("../img/contact/faq/header-320.jpg");
}
@media (min-width: 321px) {
  .faq .contact-header__banner-image {
    background-image: url("../img/contact/faq/header-768.jpg");
    height: 248px;
  }
}
@media (min-width: 769px) {
  .faq .contact-header__banner-image {
    background-image: url("../img/contact/faq/header-1024.jpg");
  }
}
@media (min-width: 1025px) {
  .faq .contact-header__banner-image {
    background-image: url("../img/contact/faq/header.jpg");
    height: 317px;
  }
}
.faq-container {
  width: 1268px;
  max-width: 100%;
  margin: 0 auto;
}
.faq-list {
  padding: 30px;
}
@media (min-width: 1024px) {
  .faq-list {
    padding: 30px 10px;
  }
}
@media (min-width: 1500px) {
  .faq-list {
    padding: 100px 10px;
  }
}
.faq-item {
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
}
.faq-item:last-of-type {
  margin-bottom: 0;
}
.faq-question-header {
  background-color: #f4f4f4;
  padding: 15px;
  transition: background-color 0.3s;
  cursor: pointer;
  position: relative;
}
@media (min-width: 768px) {
  .faq-question-header {
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  .faq-question-header {
    padding: 30px;
  }
}
@media (min-width: 1500px) {
  .faq-question-header {
    padding: 32px 49px 30px;
  }
}
.faq-question-header__title {
  font-size: 16px;
  font-family: bebas, arial, sans-serif;
  letter-spacing: 4px;
  line-height: 16px;
  display: inline-block;
  position: relative;
  padding-right: 30px;
}
@media (min-width: 768px) {
  .faq-question-header__title {
    font-size: 21px;
  }
}
@media (min-width: 1500px) {
  .faq-question-header__title {
    font-size: 25px;
  }
}
.faq-question-header__title::before {
  content: '';
  position: absolute;
  background-image: url("../img/contact/faq/qe.png");
  background-repeat: no-repeat;
  height: 23px;
  width: 29px;
  left: -5px;
  top: -4px;
  transition: background-image 0.3s;
}
@media (min-width: 768px) {
  .faq-question-header__title::before {
    left: -10px;
    top: -10px;
  }
}
@media (min-width: 1024px) {
  .faq-question-header__title::before {
    left: -2px;
    top: -17px;
  }
}
@media (min-width: 1500px) {
  .faq-question-header__title::before {
    left: -21px;
    top: -18px;
  }
}
.faq-question-unwind {
  font-size: 17px;
  font-family: bebas, arial, sans-serif;
  letter-spacing: 4px;
  padding-right: 30px;
  color: #777676;
  text-transform: uppercase;
  position: absolute;
  top: 40%;
  right: 15px;
}
@media (min-width: 768px) {
  .faq-question-unwind {
    right: 20px;
  }
}
@media (min-width: 1024px) {
  .faq-question-unwind {
    right: 30px;
  }
}
@media (min-width: 1500px) {
  .faq-question-unwind {
    right: 49px;
  }
}
.faq-question-unwind::after {
  content: '';
  position: absolute;
  background-image: url("../img/contact/faq/more.png");
  background-repeat: no-repeat;
  transition: all 0.3s;
  height: 8px;
  width: 14px;
  right: 0;
  top: 1px;
}
@media (min-width: 1024px) {
  .faq-question-unwind::after {
    top: 4px;
  }
}
.faq-question-unwind--active .faq-question-unwind__show,
.faq-question-unwind--active .faq-question-unwind__hide {
  display: none;
}
@media (min-width: 1024px) {
  .faq-question-unwind--active .faq-question-unwind__show {
    display: inline-block;
  }
}
.faq-question-unwind__hide {
  display: none;
}
.faq-question__answer {
  padding: 30px 15px;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 23px;
  font-family: montserratlight, arial, sans-serif;
}
@media (min-width: 768px) {
  .faq-question__answer {
    font-size: 15px;
    padding: 40px 30px;
  }
}
@media (min-width: 1500px) {
  .faq-question__answer {
    padding: 50px;
  }
}
.faq-question__answer--hidden {
  display: none;
}
.jsFaqActive .faq-question-header {
  background-color: #fd5019;
}
.jsFaqActive .faq-question-header,
.jsFaqActive .faq-question-header__title,
.jsFaqActive .faq-question-unwind {
  color: #fff;
  transition: all 0.3s;
}
.jsFaqActive .faq-question-unwind::after {
  background-image: url("../img/contact/faq/more-active.png");
  transform: rotate(180deg);
}
.jsFaqActive .faq-question-header__title::before {
  background-image: url("../img/contact/faq/qe-active.png");
}
.jsFaqActive .faq-question-unwind__show {
  display: none;
}
@media (min-width: 1024px) {
  .jsFaqActive .faq-question-unwind__hide {
    display: block;
  }
}
.photostack {
  background: #ddd;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.js .photostack {
  height: 580px;
}
.photostack-start {
  cursor: pointer;
}
/* Wrapper and figures */
/* The size of this wrapper can be smaller if the items should not be scattered across the whole container */
.photostack > div {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.photostack figure {
  width: 320px;
  height: 360px;
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 40px;
  text-align: center;
  margin: 5px;
}
.js .photostack figure {
  position: absolute;
  display: block;
  margin: 0;
}
.photostack figcaption h2 {
  margin: 20px 0 0 0;
  color: #a7a0a2;
  font-size: 16px;
}
.photostack-img {
  outline: none;
  display: block;
  width: 240px;
  height: 240px;
  background: #f9f9f9;
}
.photostack-back {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  color: #a7a0a2;
  padding: 50px 40px;
  text-align: left;
  font-size: 22px;
  line-height: 1.25;
  z-index: 1;
}
.photostack-back p {
  margin: 0;
}
.photostack-back p span {
  text-decoration: line-through;
}
/* Navigation dots */
.photostack nav {
  position: absolute;
  width: 100%;
  bottom: 30px;
  z-index: 90;
  text-align: center;
  left: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.photostack-start nav {
  opacity: 0;
}
.photostack nav span {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: #aaa;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.6s ease-in-out, background 0.3s;
  transition: transform 0.6s ease-in-out, background 0.3s;
  -webkit-transform: scale(0.48);
  transform: scale(0.48);
}
.photostack nav span:last-child {
  margin-right: 0;
}
.photostack nav span::after {
  content: "\e600";
  font-family: 'icons';
  font-size: 80%;
  speak: none;
  display: inline-block;
  vertical-align: top;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 30px;
  color: #fff;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.photostack nav span.current {
  background: #888;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.photostack nav span.current.flip {
  -webkit-transform: scale(1) rotateY(-180deg) translateZ(-1px);
  transform: scale(1) rotateY(-180deg) translateZ(-1px);
  background: #555;
}
.photostack nav span.flippable::after {
  opacity: 1;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
/* Overlays */
/* Initial overlay on photostack container */
.js .photostack::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
  transition: opacity 0.3s, visibility 0s 0.3s;
}
.js .photostack-start::before {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
/* Button on photostack container */
.js .photostack::after {
  content: 'View Gallery';
  font-weight: 400;
  position: absolute;
  border: 3px solid #fff;
  text-align: center;
  white-space: nowrap;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  padding: 10px 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 101;
}
.js .photostack::before,
.js .photostack::after {
  opacity: 0;
  visibility: hidden;
}
.js .photostack-start::before,
.js .photostack-start:hover::after,
.touch .photostack-start::after {
  opacity: 1;
  visibility: visible;
}
/* Overlay on figure */
.photostack figure::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: visible;
  opacity: 1;
  background: rgba(0, 0, 0, 0.05);
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
/* Hide figure overlay when it becomes current */
figure.photostack-current::after {
  -webkit-transition: opacity 0.6s, visibility 0s 0.6s;
  transition: opacity 0.6s, visibility 0s 0.6s;
  opacity: 0;
  visibility: hidden;
}
/* Special classes for transitions and perspective */
.photostack-transition figure {
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
}
.photostack-perspective {
  -webkit-perspective: 1800px;
  perspective: 1800px;
}
.photostack-perspective > div,
.photostack-perspective figure {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.photostack-perspective figure div {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.photostack-perspective figure.photostack-flip {
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}
.csstransformspreserve3d figure.photostack-flip .photostack-back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  display: block;
}
.no-csstransformspreserve3d figure.photostack-showback .photostack-back {
  display: block;
}
/* The no-JS fallback look does not need to be boring ;) */
.no-js .photostack figure {
  box-shadow: -2px 2px 0 rgba(0, 0, 0, 0.05);
}
.no-js .photostack figure::after {
  display: none;
}
.no-js .photostack figure:nth-child(3n) {
  -webkit-transform: translateX(-10%) rotate(5deg);
  transform: translateX(-10%) rotate(5deg);
}
.no-js .photostack figure:nth-child(3n-2) {
  -webkit-transform: translateY(10%) rotate(-3deg);
  transform: translateY(10%) rotate(-3deg);
}
/* Some custom styles for the demo */
/* Since we don't have back sides for the first photo stack, we don't want the current dot to become too big */
#photostack-1 nav span.current {
  background: #888;
  -webkit-transform: scale(0.61);
  transform: scale(0.61);
}
.youngsters {
  font-family: 'finlek';
}
.youngsters__dotted {
  display: inline-block;
  margin-left: -2.5vw;
  font-family: "gordita";
  font-size: 6.7vw;
}
.youngsters__button {
  display: inline-block;
  margin-top: 15px;
  padding: 0 40px;
  transform: rotate(-1deg);
  font-size: 40px;
  line-height: 0.86;
  color: #000;
  border: 5px solid #000;
  border-radius: 10px;
  transition: all 0.3s;
  overflow: hidden;
}
@media (min-width: 768px) {
  .youngsters__button {
    margin-top: 2.5vw;
    padding: 0 3.07vw;
    font-size: 2.6vw;
  }
}
.youngsters__button:hover {
  color: #fff;
  background-color: #000;
}
.youngsters__button--white {
  padding: 0;
  width: 100%;
  max-width: 167px;
  font-size: 26px;
  text-align: center;
  border-color: #fff;
  color: #fff;
  transform: rotate(0);
  border-width: 3px;
}
@media (min-width: 700px) {
  .youngsters__button--white {
    margin-top: 0.5vw;
    padding: 5px 1.8vw;
    width: auto;
    max-width: 100%;
    font-size: 1.9vw;
    line-height: 1.2vw;
    border-width: 0.2vw;
  }
}
.youngsters__button--white:hover {
  color: #000;
  background-color: #fff;
}
.youngsters__title {
  margin-bottom: 6.5vw;
  padding: 0 20px;
  font-size: 50px;
  line-height: 1;
  text-align: center;
}
@media (min-width: 700px) {
  .youngsters__title {
    font-size: 6.6vw;
  }
}
@media (min-width: 700px) {
  .youngsters__title--smb {
    margin-bottom: 3.6vw;
    font-size: 5.1vw;
  }
}
.youngsters-polaroid__title {
  position: absolute;
  top: 14px;
  right: 20px;
  left: 20px;
  color: #fff;
  text-align: center;
  z-index: 9;
  font-size: 30px;
}
@media (min-width: 700px) {
  .youngsters-polaroid__title {
    top: 2.3vw;
    font-size: 3.8vw;
  }
}
.youngsters-polaroid__section {
  background-image: url('../img/youngsters/polaroid/polaroid-bg.jpg');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.youngsters-polaroid__section.photostack {
  height: 320px;
}
@media (min-width: 700px) {
  .youngsters-polaroid__section.photostack {
    height: 44.65vw;
  }
}
.youngsters-polaroid__section.photostack-perspective figure.backfaceOff,
.youngsters-polaroid__section.photostack-perspective figure.backfaceOff div {
  backface-visibility: visible;
}
.youngsters-polaroid__section .backfaceOff .photostack-img img {
  box-shadow: none;
  opacity: 0;
}
.youngsters-polaroid figure,
.youngsters-polaroid .photostack-img,
.youngsters-polaroid .photostack-back {
  background: none;
  padding: 0;
}
.youngsters-polaroid figure,
.youngsters-polaroid__img {
  width: 148px;
  height: 200px;
}
@media (min-width: 700px) {
  .youngsters-polaroid figure,
  .youngsters-polaroid__img {
    width: 21.25vw;
    height: 28.2vw;
  }
}
.youngsters-polaroid figure.youngsters-polaroid__vertical,
.youngsters-polaroid .youngsters-polaroid__vertical .youngsters-polaroid__img {
  width: 171px;
  height: 127px;
}
@media (min-width: 700px) {
  .youngsters-polaroid figure.youngsters-polaroid__vertical,
  .youngsters-polaroid .youngsters-polaroid__vertical .youngsters-polaroid__img {
    width: 24.5vw;
    height: 18.25vw;
  }
}
.youngsters-polaroid__img img {
  width: 100%;
  border: 4px solid #fff;
}
@media (min-width: 700px) {
  .youngsters-polaroid__img img {
    border-width: 0.55vw;
    box-shadow: 3px 3px 8px #000000ab;
  }
}
.youngsters-polaroid nav {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 15px;
}
@media (min-width: 700px) {
  .youngsters-polaroid nav {
    bottom: 3vw;
  }
}
.youngsters-polaroid nav span {
  margin: 0 30px 0 0;
  width: 13px;
  height: 13px;
  background: #fff;
  box-shadow: 0 4px 5px 1px rgba(0, 0, 0, 0.5);
  transform: scale(1);
  transition: height 0.3s, width 0.3s;
}
@media (min-width: 700px) {
  .youngsters-polaroid nav span {
    margin: 0 40px 0 0;
  }
}
@media (min-width: 1500px) {
  .youngsters-polaroid nav span {
    margin: 0 46px 0 0;
    width: 16px;
    height: 16px;
  }
}
.youngsters-polaroid nav span:last-of-type {
  margin-right: 0;
}
.youngsters-polaroid nav span.current {
  height: 20px;
  width: 20px;
  background: #c81212;
}
@media (min-width: 700px) {
  .youngsters-polaroid nav span.current {
    height: 23px;
    width: 23px;
  }
}
@media (min-width: 1500px) {
  .youngsters-polaroid nav span.current {
    height: 26px;
    width: 26px;
  }
}
.youngsters-polaroid nav span.current::after {
  content: '';
  opacity: 0;
  visibility: hidden;
}
.youngsters-polaroid__reverse {
  display: none;
}
.youngsters-polaroid .photostack-current {
  z-index: 11;
}
.youngsters-polaroid .photostack-current .youngsters-polaroid__reverse {
  display: block;
  position: absolute;
  bottom: -0.6vw;
  right: 0;
  transform: translate(50%, 50%);
  background-image: url('../img/youngsters/polaroid/reverse.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 29px;
  z-index: 100;
  cursor: pointer;
}
@media (min-width: 700px) {
  .youngsters-polaroid .photostack-current .youngsters-polaroid__reverse {
    width: 3.5vw;
    height: 3.3vw;
  }
}
.youngsters-polaroid__vertical .youngsters-polaroid__price {
  height: 132px;
}
@media (min-width: 700px) {
  .youngsters-polaroid__vertical .youngsters-polaroid__price {
    height: auto;
  }
}
.youngsters-polaroid__price {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  height: 197px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 700px) {
  .youngsters-polaroid__price {
    display: inline-block;
    transform: rotate(-3deg) translate(0, 0);
    padding: 0;
    height: auto;
    width: auto;
    text-align: right;
    background-color: rgba(0, 0, 0, 0);
  }
}
.youngsters-polaroid__price p {
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 40px;
}
@media (min-width: 700px) {
  .youngsters-polaroid__price p {
    text-align: right;
    font-size: 3.8vw;
  }
}
.youngsters-polaroid__price p.cz,
.youngsters-polaroid__price p.sk,
.youngsters-polaroid__price p.ro {
  font-size: 30px;
}
.youngsters-polaroid__price p.hu {
  font-size: 25px;
}
.youngsters-polaroid__price img {
  border: none;
  box-shadow: none;
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:first-of-type .youngsters-polaroid__price {
    top: auto;
    bottom: 1.6vw;
    right: 1.6vw;
    left: auto;
  }
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:first-of-type .youngsters-polaroid__price p {
    font-size: 3vw;
  }
  .youngsters-polaroid figure:first-of-type .youngsters-polaroid__price p.cz,
  .youngsters-polaroid figure:first-of-type .youngsters-polaroid__price p.ro {
    font-size: 2.7vw;
  }
  .youngsters-polaroid figure:first-of-type .youngsters-polaroid__price p.hu {
    font-size: 2.3vw;
  }
}
.youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow {
  display: none;
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow {
    display: block;
    position: absolute;
    width: 3.2vw;
    transform: rotateX(-179deg) rotate(170deg);
  }
}
.youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow:first-of-type {
  top: 0;
  left: -4.7vw;
  width: 3.5vw;
  transform: rotate(185deg);
}
.youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow:first-of-type.pl {
  top: 1.5vw;
  left: -3.5vw;
  width: 3vw;
}
.youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow:first-of-type.hu {
  top: 1vw;
  left: -2.7vw;
  transform: rotate(175deg);
  width: 3vw;
}
.youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow:first-of-type.ro {
  transform: rotate(175deg);
}
.youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow:first-of-type.cz,
.youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow:first-of-type.sk,
.youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow:first-of-type.ro {
  top: 1vw;
  left: -3.7vw;
  width: 3vw;
}
.youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow:first-of-type.sk {
  top: 1.2vw;
}
.youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow:last-of-type {
  top: -2.5vw;
  left: 2.3vw;
  transform: rotateX(-179deg) rotate(20deg);
}
.youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow:last-of-type.hu {
  left: 4.3vw;
}
.youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow:last-of-type.cz,
.youngsters-polaroid figure:first-of-type .youngsters-polaroid__price .arrow:last-of-type.ro {
  left: 4.3vw;
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:nth-of-type(2) .youngsters-polaroid__price {
    top: auto;
    bottom: 1.2vw;
    right: 1.8vw;
    left: auto;
  }
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:nth-of-type(2) .youngsters-polaroid__price p {
    font-size: 3vw;
  }
  .youngsters-polaroid figure:nth-of-type(2) .youngsters-polaroid__price p.hu {
    font-size: 2vw;
  }
  .youngsters-polaroid figure:nth-of-type(2) .youngsters-polaroid__price p.cz,
  .youngsters-polaroid figure:nth-of-type(2) .youngsters-polaroid__price p.ro {
    font-size: 2.5vw;
  }
}
.youngsters-polaroid figure:nth-of-type(2) .youngsters-polaroid__price .arrow {
  display: none;
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:nth-of-type(2) .youngsters-polaroid__price .arrow {
    display: block;
    position: absolute;
    top: 1vw;
    left: -3.7vw;
    width: 3.2vw;
    transform: rotateX(-179deg) rotate(170deg);
  }
  .youngsters-polaroid figure:nth-of-type(2) .youngsters-polaroid__price .arrow.pl,
  .youngsters-polaroid figure:nth-of-type(2) .youngsters-polaroid__price .arrow.sk {
    left: -3.4vw;
    width: 2.8vw;
  }
  .youngsters-polaroid figure:nth-of-type(2) .youngsters-polaroid__price .arrow.hu {
    top: 0.5vw;
    left: -3.5vw;
    width: 2.8vw;
  }
  .youngsters-polaroid figure:nth-of-type(2) .youngsters-polaroid__price .arrow.cz {
    left: -3.4vw;
    width: 2.7vw;
  }
  .youngsters-polaroid figure:nth-of-type(2) .youngsters-polaroid__price .arrow.ro {
    left: -3.2vw;
    width: 2.7vw;
  }
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:nth-of-type(3) .youngsters-polaroid__price {
    top: auto;
    bottom: 2.2vw;
    right: 1.8vw;
    left: auto;
  }
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:nth-of-type(3) .youngsters-polaroid__price p.hu,
  .youngsters-polaroid figure:nth-of-type(3) .youngsters-polaroid__price p.cz {
    font-size: 3vw;
  }
  .youngsters-polaroid figure:nth-of-type(3) .youngsters-polaroid__price p.ro {
    font-size: 3.4vw;
  }
}
.youngsters-polaroid figure:nth-of-type(3) .youngsters-polaroid__price .arrow {
  display: none;
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:nth-of-type(3) .youngsters-polaroid__price .arrow {
    display: block;
    position: absolute;
    top: -0.5vw;
    left: -2.8vw;
    width: 3.5vw;
    transform: rotate(-165deg);
  }
  .youngsters-polaroid figure:nth-of-type(3) .youngsters-polaroid__price .arrow.pl {
    left: -4vw;
  }
  .youngsters-polaroid figure:nth-of-type(3) .youngsters-polaroid__price .arrow.hu {
    top: -1vw;
    left: -3vw;
    transform: rotate(-135deg);
  }
  .youngsters-polaroid figure:nth-of-type(3) .youngsters-polaroid__price .arrow.cz {
    left: -4vw;
  }
  .youngsters-polaroid figure:nth-of-type(3) .youngsters-polaroid__price .arrow.sk {
    left: -3.5vw;
    transform: rotate(-145deg);
  }
  .youngsters-polaroid figure:nth-of-type(3) .youngsters-polaroid__price .arrow.ro {
    left: -3.3vw;
    width: 3.3vw;
  }
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:nth-of-type(4) .youngsters-polaroid__price {
    bottom: 0.65vw;
    left: 2.4vw;
    top: auto;
  }
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:nth-of-type(4) .youngsters-polaroid__price p.hu {
    font-size: 2.5vw;
  }
  .youngsters-polaroid figure:nth-of-type(4) .youngsters-polaroid__price p.cz,
  .youngsters-polaroid figure:nth-of-type(4) .youngsters-polaroid__price p.sk,
  .youngsters-polaroid figure:nth-of-type(4) .youngsters-polaroid__price p.ro {
    font-size: 3vw;
  }
}
.youngsters-polaroid figure:nth-of-type(4) .youngsters-polaroid__price .arrow {
  display: none;
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:nth-of-type(4) .youngsters-polaroid__price .arrow {
    display: block;
    position: absolute;
    top: 1.5vw;
    right: -3.85vw;
    width: 3.5vw;
    height: 1.8vw;
    transform: rotateX(-179deg) rotate(-30deg);
  }
  .youngsters-polaroid figure:nth-of-type(4) .youngsters-polaroid__price .arrow.sk {
    top: 1.7vw;
  }
  .youngsters-polaroid figure:nth-of-type(4) .youngsters-polaroid__price .arrow.pl {
    top: 2.5vw;
  }
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price {
    top: 1.7vw;
    left: auto;
    right: 1.8vw;
  }
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price .youngsters__button {
    margin-right: 0.8vw;
  }
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price p {
    font-size: 3vw;
  }
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price p.hu {
    font-size: 2vw;
  }
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price p.cz,
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price p.sk,
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price p.ro {
    font-size: 2.5vw;
  }
}
.youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price .arrow {
  display: none;
}
@media (min-width: 700px) {
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price .arrow {
    display: block;
    position: absolute;
    top: 1.5vw;
    left: -2.95vw;
    width: 4vw;
    height: 2.45vw;
    transform: rotateY(-179deg) rotate(-10deg);
  }
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price .arrow.cz,
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price .arrow.pl,
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price .arrow.hu,
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price .arrow.ro {
    top: 1vw;
    left: -3vw;
    transform: rotateY(-179deg) rotate(0);
    width: 3vw;
  }
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price .arrow.hu {
    top: 0.5vw;
    left: -3.5vw;
  }
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price .arrow.ro {
    top: 0.5vw;
    width: 2.7vw;
  }
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price .arrow.cz {
    left: -3.5vw;
  }
  .youngsters-polaroid figure:nth-of-type(5) .youngsters-polaroid__price .arrow.sk {
    top: 1vw;
    width: 3vw;
    left: -1.95vw;
    transform: rotateY(-179deg) rotate(10deg);
  }
}
.youngsters-style {
  position: relative;
  padding: 4.2vw 0 8.4vw 0;
}
.youngsters-style::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url('../img/youngsters/more-bg.jpg');
  background-position: 50% 50%;
  opacity: 0.1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .youngsters-style__puma {
    transform: translateX(1vw);
  }
}
.youngsters-style__list {
  position: relative;
  padding: 0 20px;
  width: 1285px;
  max-width: 100%;
  margin: 0 auto;
}
.youngsters-style__item {
  position: relative;
  display: block;
  margin-bottom: 80px;
  text-align: center;
}
@media (min-width: 768px) {
  .youngsters-style__item {
    display: flex;
    margin-bottom: 100px;
  }
}
.youngsters-style__item:hover .youngsters-style__image img {
  transform: scale(1.1);
}
.youngsters-style__item:hover .youngsters-arrows__arrow {
  transform: rotate(-27deg);
}
.youngsters-style__item:hover .youngsters-arrows__arrow:first-of-type {
  transform: rotate(-207deg) scaleY(1);
}
.youngsters-style__item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .youngsters-style__item--reverse {
    flex-direction: row-reverse;
  }
}
.youngsters-style__half {
  width: 550px;
  max-width: 100%;
  overflow: hidden;
  display: inline-block;
}
@media (min-width: 768px) {
  .youngsters-style__half {
    display: block;
    width: 50%;
  }
}
.youngsters-style__image img {
  width: 100%;
  transition: all 0.3s;
}
.youngsters-style__more {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .youngsters-style__more {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 0;
  }
}
.youngsters-style__more img {
  display: block;
  margin: 0 auto 30px;
  padding: 0 40px;
  width: 325px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .youngsters-style__more img {
    margin-bottom: 0;
    padding: 0;
    width: 20vw;
  }
}
@media (min-width: 1250px) {
  .youngsters-style__more img {
    width: 16.95vw;
  }
}
.youngsters-arrows {
  display: none;
}
@media (min-width: 768px) {
  .youngsters-arrows {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.youngsters-arrows--reverse {
  transform: translate(-50%, -50%) scaleX(-1);
}
.youngsters-arrows__arrow {
  display: block;
  width: 10.4vw;
  transform: rotate(-37deg);
  transition: all 0.3s;
}
@media (min-width: 1250px) {
  .youngsters-arrows__arrow {
    width: 165px;
  }
}
.youngsters-arrows__arrow:first-of-type {
  margin-bottom: 12px;
  transform: rotate(-217deg) scaleY(1);
}
.youngsters-video {
  position: relative;
  height: 55.55vw;
}
.youngsters-video .video-js.vjs-fluid {
  padding-top: 55.55vw;
}
@media (max-width: 700px) {
  .youngsters-video .video-js.vjs-fluid {
    height: auto;
  }
}
.youngsters-video .video-js .vjs-poster {
  background-image: url("../img/youngsters/video-poster.jpg") !important;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.youngsters-video .video-js .vjs-poster.vjs-hidden {
  display: block !important;
}
.youngsters-video .vjs-big-play-button {
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 0;
  margin-left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.youngsters-video__play {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 73.1vw;
  background: none;
  z-index: 10;
  pointer-events: none;
  transition: all 0.3s;
}
@media (min-width: 500px) {
  .youngsters-video__play {
    width: 53.1vw;
  }
}
@media (min-width: 768px) {
  .youngsters-video__play {
    width: 43.1vw;
  }
}
@media (min-width: 1080px) {
  .youngsters-video__play {
    width: 33.1vw;
  }
}
.youngsters-video .vjs-has-started ~ .youngsters-video__play,
.youngsters-video .vjs-has-started .vjs-poster.vjs-hidden {
  opacity: 0 !important;
}
.youngsters-instagram {
  position: relative;
  padding: 5.3vw 20px 5.6vw;
}
.youngsters-instagram::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url('../img/youngsters/more-bg.jpg');
  background-position: 50% 50%;
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}
.youngsters-instagram__container {
  font-family: 'montserratregular';
  position: relative;
  margin: 0 auto;
  padding: 30px 20px 20px;
  width: 1245px;
  max-width: 100%;
  height: 805px;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #f8f8f8;
  color: #444444;
}
@media (min-width: 1025px) {
  .youngsters-instagram__container {
    padding: 30px 0 0 20px;
  }
}
.youngsters-instagram-description {
  display: flex;
  flex-direction: column;
}
.youngsters-instagram-description h5 {
  margin-bottom: 15px;
  font-size: 22px;
}
@media (min-width: 600px) {
  .youngsters-instagram-description h5 {
    margin-bottom: 23px;
    font-size: 32px;
  }
}
.youngsters-instagram-description__link {
  margin-top: 10px;
}
@media (min-width: 600px) {
  .youngsters-instagram-description__link {
    margin-top: 17px;
  }
}
.youngsters-instagram-description__link a {
  color: #0000ee;
}
.youngsters-instagram__info {
  display: flex;
}
.youngsters-instagram__info p {
  margin-right: 15px;
  line-height: 17px;
}
@media (min-width: 600px) {
  .youngsters-instagram__info p {
    margin-right: 25px;
  }
}
.youngsters-instagram__info p:last-of-type {
  margin-right: 0;
}
.youngsters-instagram__info p strong {
  font-weight: 600;
}
.youngsters-instagram__logo {
  width: 77px;
  border-radius: 100%;
  margin-right: 25px;
  margin-bottom: 30px;
}
@media (min-width: 450px) {
  .youngsters-instagram__logo {
    margin-bottom: 0;
  }
}
@media (min-width: 600px) {
  .youngsters-instagram__logo {
    width: 125px;
  }
}
.youngsters-instagram__header {
  margin-bottom: 35px;
}
@media (min-width: 450px) {
  .youngsters-instagram__header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}
@media (min-width: 600px) {
  .youngsters-instagram__header {
    margin-bottom: 45px;
  }
}
.youngsters-instagram__item {
  display: inline-block;
  width: 50%;
}
.youngsters-instagram__item img {
  width: 100%;
}
.youngsters-instagram__link {
  display: block;
  margin-top: 20px;
  text-align: center;
  line-height: 1;
  color: #000;
  font-size: 30px;
}
@media (min-width: 700px) {
  .youngsters-instagram__link {
    font-size: 2.85vw;
    margin-top: 1.7vw;
  }
}
/* BEGIN returns */
.returns .contact-header__banner-image {
  background-image: url("../img/contact/zwroty-i-wymiana/header-320.jpg");
  height: 247px;
  background-repeat: no-repeat;
}
@media (min-width: 321px) {
  .returns .contact-header__banner-image {
    background-image: url("../img/contact/zwroty-i-wymiana/header-768.jpg");
  }
}
@media (min-width: 769px) {
  .returns .contact-header__banner-image {
    background-image: url("../img/contact/zwroty-i-wymiana/header-1024.jpg");
  }
}
@media (min-width: 1025px) {
  .returns .contact-header__banner-image {
    background-image: url("../img/contact/zwroty-i-wymiana/header.jpg");
    height: 317px;
  }
}
.returns .contact-article img {
  height: 70px;
}
.returns .shopping__container--50 {
  width: 100%;
  float: left;
  padding: 0 30px 28px;
}
@media (min-width: 768px) {
  .returns .shopping__container--50 {
    padding: 0 40px 28px;
  }
}
@media (min-width: 1024px) {
  .returns .shopping__container--50 {
    padding: 0 166px 28px;
  }
}
@media (min-width: 1200px) {
  .returns .shopping__container--50 {
    width: 50%;
    padding: 0 35px;
  }
}
@media (min-width: 1500px) {
  .returns .shopping__container--50 {
    padding: 0 117px;
  }
}
.returns .shopping__container--50:last-of-type {
  padding-bottom: 0;
}
.returns .shopping__container--at {
  float: none;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .returns .shopping__container--at {
    padding: 0 20px;
  }
}
.returns .info__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 30px 44px;
}
@media (min-width: 768px) {
  .returns .info__container {
    padding-bottom: 0;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}
.returns .info-item {
  width: 215px;
  text-align: center;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .returns .info-item {
    width: 289px;
    margin: 0 25px 60px;
    padding-bottom: 0;
  }
}
.returns .info-item__p {
  padding-top: 19px;
  text-align: center;
}
/* END returns */
/* BEGIN reclamation */
.reclamation .contact-header__banner-image {
  background-image: url("../img/contact/reklamacje/header-320.jpg");
}
@media (min-width: 321px) {
  .reclamation .contact-header__banner-image {
    background-image: url("../img/contact/reklamacje/header-768.jpg");
  }
}
@media (min-width: 769px) {
  .reclamation .contact-header__banner-image {
    background-image: url("../img/contact/reklamacje/header-1024.jpg");
  }
}
@media (min-width: 1025px) {
  .reclamation .contact-header__banner-image {
    background-image: url("../img/contact/reklamacje/header.jpg");
  }
}
.reclamation-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 1300px) {
  .reclamation-container {
    flex-direction: row;
    padding-bottom: 96px;
  }
}
.reclamation__item {
  padding: 0 30px 47px 30px;
}
@media (min-width: 1024px) {
  .reclamation__item {
    padding: 0 166px 47px 166px;
  }
}
@media (min-width: 1300px) {
  .reclamation__item {
    padding: 0 40px 47px 40px;
  }
}
@media (min-width: 1300px) {
  .reclamation__item--big {
    width: 780px;
    max-width: 100%;
  }
}
.reclamation__item--small {
  padding: 0 0 47px 0;
}
@media (min-width: 1300px) {
  .reclamation__item--small {
    width: 20%;
    padding: 80px 0 0 0;
  }
}
@media (min-width: 1500px) {
  .reclamation__item--small {
    width: 16%;
  }
}
.reclamation__item--center {
  text-align: center;
}
.reclamation-info__container {
  padding: 29px 30px 4px;
  border-top: 2px solid #ebebeb;
  font-family: montserratlight, arial, sans-serif;
  line-height: 20px;
}
@media (min-width: 768px) {
  .reclamation-info__container {
    padding: 59px 22px 32px;
  }
}
@media (min-width: 1024px) {
  .reclamation-info__container {
    margin: 0 115px;
  }
}
@media (min-width: 1300px) {
  .reclamation-info__container {
    padding: 98px 212px 73px;
  }
}
.reclamation-info__title {
  font-size: 15px;
  text-align: center;
  padding: 0 0 30px;
}
.reclamation-info__list {
  font-size: 13px;
  letter-spacing: 2px;
}
.reclamation-item {
  padding-bottom: 20px;
  word-wrap: break-word;
}
.reclamation-item__p {
  padding-bottom: 25px;
}
.reclamation-more-info {
  padding-left: 30px;
}
.reclamation-more-info__item {
  padding-bottom: 20px;
}
.reclamation-more-info__item:last-of-type {
  padding-bottom: 0;
}
/* END reclamation */
/* BEGIN shopping online */
@media (max-width: 768px) {
  .shopping-online .contact-header__banner-image {
    background-image: url("../img/contact/zakupy-online/header-768.jpg");
    background-position-x: 70%;
    height: 248px;
  }
}
@media (max-width: 321px) {
  .shopping-online .contact-header__banner-image {
    background-image: url("../img/contact/zakupy-online/header-320.jpg");
  }
}
@media (min-width: 769px) {
  .shopping-online__banner {
    display: none;
  }
}
.shopping-online__container:after {
  content: '';
  display: table;
  clear: both;
}
.shopping-online__obj {
  text-align: center;
}
.shopping-online__obj--50 {
  overflow: hidden;
}
@media (min-width: 769px) {
  .shopping-online__obj--50 {
    width: 50%;
    float: left;
  }
}
.shopping-header__title {
  display: none;
}
@media (min-width: 769px) {
  .shopping-header__title {
    display: block;
    font-size: 40px;
    padding-top: 53px;
    letter-spacing: 6px;
  }
}
@media (min-width: 1024px) {
  .shopping-header__title {
    font-size: 50px;
    letter-spacing: 10px;
    line-height: 66px;
  }
}
@media (min-width: 1300px) {
  .shopping-header__title {
    font-size: 60px;
    padding-top: 90px;
    letter-spacing: 12px;
  }
}
.shopping-article {
  font-family: montserratlight, arial, sans-serif;
}
.shopping-article__title {
  font-size: 15px;
  padding: 27px 45px 25px;
  letter-spacing: 2px;
  line-height: 21px;
}
@media (min-width: 600px) {
  .shopping-article__title {
    padding: 55px 45px 60px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .shopping-article__title {
    padding: 50px 45px 57px;
  }
}
@media (min-width: 1024px) {
  .shopping-article__title {
    padding-bottom: 53px;
  }
}
@media (min-width: 1300px) {
  .shopping-article__title {
    padding: 84px 45px 44px;
  }
}
.shopping-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 600px) {
  .shopping-info {
    flex-direction: row;
  }
}
@media (min-width: 769px) {
  .shopping-info {
    flex-direction: column;
  }
}
@media (min-width: 1300px) {
  .shopping-info {
    flex-direction: row;
  }
}
.shopping-info__item {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 3px;
}
@media (min-width: 600px) {
  .shopping-info__item {
    padding: 0 25px;
  }
}
@media (min-width: 1024px) {
  .shopping-info__item {
    padding: 0 20px;
  }
}
@media (min-width: 1300px) {
  .shopping-info__item {
    padding: 0 40px;
  }
}
@media (min-width: 1480px) {
  .shopping-info__item {
    padding: 0 60px;
  }
}
@media (min-width: 1600px) {
  .shopping-info__item {
    padding: 0 70px;
  }
}
.shopping-info__item--small {
  color: #818181;
  padding: 30px 0;
}
@media (min-width: 600px) {
  .shopping-info__item--small {
    padding: 86px 0 0;
  }
}
@media (min-width: 769px) {
  .shopping-info__item--small {
    padding: 37px 0;
  }
}
@media (min-width: 1300px) {
  .shopping-info__item--small {
    padding: 86px 0 0;
  }
}
.shopping-info__image {
  padding-bottom: 23px;
}
.shopping-info__p {
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .shopping-info__p {
    padding-bottom: 14px;
  }
}
@media (min-width: 1300px) {
  .shopping-info__p {
    padding-bottom: 17px;
  }
}
.shopping-info__number {
  font-size: 30px;
}
.shopping-info__btn {
  border: 1px solid #cccccc;
  font-family: bebas, arial, sans-serif;
  color: #000;
  font-size: 21px;
  padding: 24px 12px;
  display: inline-block;
  transition: all 0.4s;
  letter-spacing: 4px;
  box-sizing: border-box;
  margin: 28px 0 30px;
}
@media (min-width: 600px) {
  .shopping-info__btn {
    margin: 56px 0 60px;
  }
}
@media (min-width: 768px) {
  .shopping-info__btn {
    margin-top: 58px;
    padding: 24px 30px;
  }
}
@media (min-width: 1500px) {
  .shopping-info__btn {
    margin-top: 100px;
  }
}
.shopping-info__btn:hover {
  background-color: #cccccc;
}
@media (max-width: 768px) {
  .shopping-photo {
    display: none;
  }
}
@media (min-width: 1024px) {
  .shopping-photo__img {
    transform: translateX(-17%);
  }
}
@media (min-width: 1300px) {
  .shopping-photo__img {
    transform: translateX(-11%);
  }
}
@media (min-width: 1500px) {
  .shopping-photo__img {
    transform: translateX(0);
  }
}
.shopping-photo__img--min-1024 {
  display: none;
}
@media (min-width: 1024px) {
  .shopping-photo__img--min-1024 {
    display: block;
  }
}
.shopping-photo__img--max-1024 {
  display: block;
}
@media (min-width: 1024px) {
  .shopping-photo__img--max-1024 {
    display: none;
  }
}
/* END shopping online */
/* BEGIN shoe care */
.shoe-care .top_banner.top_banner--collection .banner__text {
  position: static;
  transform: translate(0, 0);
  max-width: 100%;
  color: #fff;
  padding: 0 5%;
}
@media (min-width: 768px) {
  .shoe-care .top_banner.top_banner--collection .banner__text {
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  .shoe-care .top_banner.top_banner--collection .banner__text {
    padding: 0 40px;
  }
}
@media (min-width: 1300px) {
  .shoe-care .top_banner.top_banner--collection .banner__text {
    padding: 0 80px;
  }
}
@media (min-width: 1600px) {
  .shoe-care .top_banner.top_banner--collection .banner__text {
    padding: 0 165px;
  }
}
.shoe-care .contact-article__p {
  letter-spacing: 2px;
}
.shoe-care-header__banner-image {
  background-image: url("../img/contact/pielegnacja-obuwia/320/header-320.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 321px) {
  .shoe-care-header__banner-image {
    background-image: url("../img/contact/pielegnacja-obuwia/768/header-768.jpg");
  }
}
@media (min-width: 769px) {
  .shoe-care-header__banner-image {
    background-image: url("../img/contact/pielegnacja-obuwia/1024/header-1024.jpg");
  }
}
@media (min-width: 1025px) {
  .shoe-care-header__banner-image {
    background-image: url("../img/contact/pielegnacja-obuwia/1920/header-1920.jpg");
  }
}
.shoe-care-banner__title {
  padding: 20px 0 15px;
}
@media (min-width: 768px) {
  .shoe-care-banner__title {
    padding: 34px 0 29px;
  }
}
@media (min-width: 1024px) {
  .shoe-care-banner__title {
    padding: 44px 0 39px;
  }
}
@media (min-width: 1300px) {
  .shoe-care-banner__title {
    padding: 85px 0 80px;
  }
}
.shoe-care__container {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .shoe-care__container {
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  .shoe-care__container {
    padding: 0 40px;
  }
}
@media (min-width: 1300px) {
  .shoe-care__container {
    padding: 0 80px;
  }
}
@media (min-width: 1600px) {
  .shoe-care__container {
    padding: 0 165px;
  }
}
@media (min-width: 768px) {
  .shoe-care__article--column {
    column-count: 2;
    -webkit-column-count: 2;
    column-gap: 18px;
    -webkit-column-gap: 18px;
  }
}
@media (min-width: 1024px) {
  .shoe-care__article--column {
    column-gap: 45px;
    -webkit-column-gap: 45px;
  }
}
@media (min-width: 1300px) {
  .shoe-care__article--column {
    column-gap: 150px;
    -webkit-column-gap: 150px;
  }
}
@media (min-width: 1600px) {
  .shoe-care__article--column {
    column-gap: 324px;
    -webkit-column-gap: 324px;
  }
}
.shoe-care__article__p {
  text-align: justify;
  display: inline-block;
}
.shoe-care__article__p--bottom {
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .shoe-care__article__p--bottom {
    padding-bottom: 42px;
  }
}
@media (min-width: 1024px) {
  .shoe-care__article__p--bottom {
    padding-bottom: 54px;
  }
}
@media (min-width: 1300px) {
  .shoe-care__article__p--bottom {
    padding-bottom: 45px;
  }
}
.shoe-care__btn {
  font-family: bebas, arial, sans-serif;
  font-size: 21px;
  letter-spacing: 4px;
  padding: 27px 45px;
  box-sizing: border-box;
  border: 1px solid #fff;
  display: inline-block;
  color: #fff;
  transition: all 0.4s;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .shoe-care__btn {
    padding: 27px 53px;
    margin-bottom: 49px;
  }
}
@media (min-width: 1024px) {
  .shoe-care__btn {
    margin-bottom: 60px;
  }
}
@media (min-width: 1300px) {
  .shoe-care__btn {
    margin-bottom: 100px;
  }
}
.shoe-care__btn:hover {
  background-color: #fff;
  color: #000;
}
.shoe-care .description-header {
  padding: 32px 0 26px;
}
@media (min-width: 768px) {
  .shoe-care .description-header {
    padding: 40px 0 35px;
  }
}
@media (min-width: 1024px) {
  .shoe-care .description-header {
    padding: 50px 0 45px;
  }
}
@media (min-width: 1300px) {
  .shoe-care .description-header {
    padding: 87px 0 81px;
  }
}
.shoe-care .description-header__title {
  text-align: center;
  font-size: 30px;
  letter-spacing: 7px;
  line-height: 30px;
}
@media (min-width: 768px) {
  .shoe-care .description-header__title {
    font-size: 40px;
    line-height: 47px;
  }
}
@media (min-width: 1300px) {
  .shoe-care .description-header__title {
    font-size: 60px;
    line-height: 67px;
  }
}
.shoe-care .description-header--desktop {
  display: none;
}
@media (min-width: 1300px) {
  .shoe-care .description-header--desktop {
    display: block;
  }
}
.shoe-care .description-article::after {
  content: '';
  display: table;
  clear: both;
}
@media (min-width: 768px) {
  .shoe-care .description-article__p {
    width: 50%;
    float: left;
    padding-right: 10px;
    padding-bottom: 44px;
  }
}
@media (min-width: 1024px) {
  .shoe-care .description-article__p {
    padding-right: 25px;
    padding-bottom: 55px;
  }
}
@media (min-width: 1300px) {
  .shoe-care .description-article__p {
    padding-right: 77px;
    padding-bottom: 95px;
  }
}
@media (min-width: 1600px) {
  .shoe-care .description-article__p {
    padding-right: 163px;
  }
}
@media (min-width: 768px) {
  .shoe-care .description-article__p:last-of-type {
    padding-right: 0;
    padding-left: 10px;
  }
}
@media (min-width: 1024px) {
  .shoe-care .description-article__p:last-of-type {
    padding-left: 25px;
  }
}
@media (min-width: 1300px) {
  .shoe-care .description-article__p:last-of-type {
    padding-left: 77px;
  }
}
@media (min-width: 1600px) {
  .shoe-care .description-article__p:last-of-type {
    padding-left: 163px;
  }
}
.shoe-care .description-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1300px) {
  .shoe-care .description-list {
    padding-bottom: 45px;
  }
}
.shoe-care .description-item {
  padding: 0 5px 22px;
  text-align: center;
  max-width: 190px;
}
@media (min-width: 768px) {
  .shoe-care .description-item {
    padding: 0 35px 25px;
  }
}
.shoe-care .description-item__link {
  color: #000;
  display: block;
}
.shoe-care .description-item__link:hover .description-item__cover::before,
.shoe-care .description-item__link:hover .description-item__cover::after {
  opacity: 1;
}
.shoe-care .description-item__cover {
  position: relative;
}
.shoe-care .description-item__cover::before,
.shoe-care .description-item__cover::after {
  content: '';
  opacity: 0;
  position: absolute;
  transition: all 0.3s;
}
.shoe-care .description-item__cover::before {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  z-index: 8;
  background-color: rgba(0, 0, 0, 0.5);
}
.shoe-care .description-item__cover::after {
  width: 24px;
  height: 14px;
  top: 53px;
  left: 40%;
  background-image: url('../img/contact/pielegnacja-obuwia/arrow-bottom.png');
  z-index: 9;
  animation: bounce 2s infinite;
}
.shoe-care .description-item__type-skin {
  font-size: 13px;
  line-height: 20px;
  padding-top: 8px;
}
@media (min-width: 768px) {
  .shoe-care .description-item__type-skin {
    padding-top: 25px;
  }
}
@media (min-width: 1300px) {
  .shoe-care .type-skin__item {
    display: flex;
  }
}
.shoe-care .type-skin__item::after {
  content: '';
  display: table;
  clear: both;
}
@media (min-width: 1300px) {
  .shoe-care .type-skin__item--reverse-desktop {
    flex-direction: row-reverse;
  }
}
.shoe-care .type-skin__bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  min-height: 174px;
}
@media (min-width: 321px) {
  .shoe-care .type-skin__bg {
    min-height: 215px;
  }
}
@media (min-width: 1300px) {
  .shoe-care .type-skin__bg {
    max-height: 890px;
  }
}
.shoe-care .type-skin__bg--skora-gladka {
  background-image: url('../img/contact/pielegnacja-obuwia/320/skora-gladka-320.jpg');
}
@media (min-width: 321px) {
  .shoe-care .type-skin__bg--skora-gladka {
    background-image: url('../img/contact/pielegnacja-obuwia/768/skora-gladka-768.jpg');
  }
}
@media (min-width: 769px) {
  .shoe-care .type-skin__bg--skora-gladka {
    background-image: url('../img/contact/pielegnacja-obuwia/1024/skora-gladka-1024.jpg');
  }
}
@media (min-width: 1300px) {
  .shoe-care .type-skin__bg--skora-gladka {
    background-image: url('../img/contact/pielegnacja-obuwia/1920/skora-gladka-1920.jpg');
  }
}
.shoe-care .type-skin__bg--nubuk-i-welur {
  background-image: url('../img/contact/pielegnacja-obuwia/320/nubuk-welur-320.jpg');
}
@media (min-width: 321px) {
  .shoe-care .type-skin__bg--nubuk-i-welur {
    background-image: url('../img/contact/pielegnacja-obuwia/768/nubuk-welur-768.jpg');
  }
}
@media (min-width: 769px) {
  .shoe-care .type-skin__bg--nubuk-i-welur {
    background-image: url('../img/contact/pielegnacja-obuwia/1024/nubuk-welur-1024.jpg');
  }
}
@media (min-width: 1300px) {
  .shoe-care .type-skin__bg--nubuk-i-welur {
    background-image: url('../img/contact/pielegnacja-obuwia/1920/nubuk-welur-1920.jpg');
  }
}
.shoe-care .type-skin__bg--skory-lakierowane {
  background-image: url('../img/contact/pielegnacja-obuwia/320/lakierowane-320.jpg');
}
@media (min-width: 321px) {
  .shoe-care .type-skin__bg--skory-lakierowane {
    background-image: url('../img/contact/pielegnacja-obuwia/768/lakierowane-768.jpg');
  }
}
@media (min-width: 769px) {
  .shoe-care .type-skin__bg--skory-lakierowane {
    background-image: url('../img/contact/pielegnacja-obuwia/1024/lakierowane-1024.jpg');
  }
}
@media (min-width: 1300px) {
  .shoe-care .type-skin__bg--skory-lakierowane {
    background-image: url('../img/contact/pielegnacja-obuwia/1920/lakierowane-1920.jpg');
  }
}
.shoe-care .type-skin__bg--skory-nappa-i-brush {
  background-image: url('../img/contact/pielegnacja-obuwia/320/nappa-brush-320.jpg');
}
@media (min-width: 321px) {
  .shoe-care .type-skin__bg--skory-nappa-i-brush {
    background-image: url('../img/contact/pielegnacja-obuwia/768/nappa-brush-768.jpg');
  }
}
@media (min-width: 769px) {
  .shoe-care .type-skin__bg--skory-nappa-i-brush {
    background-image: url('../img/contact/pielegnacja-obuwia/1024/nappa-brush-1024.jpg');
  }
}
@media (min-width: 1300px) {
  .shoe-care .type-skin__bg--skory-nappa-i-brush {
    background-image: url('../img/contact/pielegnacja-obuwia/1920/nappa-brush-1920.jpg');
  }
}
.shoe-care .type-skin__bg--materialy-syntetyczne {
  background-image: url('../img/contact/pielegnacja-obuwia/320/syntetyczne-320.jpg');
}
@media (min-width: 321px) {
  .shoe-care .type-skin__bg--materialy-syntetyczne {
    background-image: url('../img/contact/pielegnacja-obuwia/768/syntetyczne-768.jpg');
  }
}
@media (min-width: 769px) {
  .shoe-care .type-skin__bg--materialy-syntetyczne {
    background-image: url('../img/contact/pielegnacja-obuwia/1024/syntetyczne-1024.jpg');
  }
}
@media (min-width: 1300px) {
  .shoe-care .type-skin__bg--materialy-syntetyczne {
    background-image: url('../img/contact/pielegnacja-obuwia/1920/syntetyczne-1920.jpg');
  }
}
.shoe-care .type-skin__bg--materialy-tekstylne {
  background-image: url('../img/contact/pielegnacja-obuwia/320/tekstylne-320.jpg');
}
@media (min-width: 321px) {
  .shoe-care .type-skin__bg--materialy-tekstylne {
    background-image: url('../img/contact/pielegnacja-obuwia/768/tekstylne-768.jpg');
  }
}
@media (min-width: 769px) {
  .shoe-care .type-skin__bg--materialy-tekstylne {
    background-image: url('../img/contact/pielegnacja-obuwia/1024/tekstylne-1024.jpg');
  }
}
@media (min-width: 1300px) {
  .shoe-care .type-skin__bg--materialy-tekstylne {
    background-image: url('../img/contact/pielegnacja-obuwia/1920/tekstylne-1920.jpg');
  }
}
.shoe-care .type-skin__header {
  position: relative;
  margin-bottom: 23px;
}
@media (min-width: 768px) {
  .shoe-care .type-skin__header {
    margin-top: 25px;
  }
}
@media (min-width: 1024px) {
  .shoe-care .type-skin__header {
    margin-bottom: 54px;
  }
}
@media (min-width: 1300px) {
  .shoe-care .type-skin__header {
    margin: 0;
    width: 50%;
    float: left;
  }
}
.shoe-care .type-skin__title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  color: #fff;
  font-size: 31px;
  font-family: bebas, arial, sans-serif;
  letter-spacing: 7px;
  text-align: center;
  padding: 0 45px;
}
@media (min-width: 768px) {
  .shoe-care .type-skin__title {
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  .shoe-care .type-skin__title {
    letter-spacing: 11px;
  }
}
@media (min-width: 1300px) {
  .shoe-care .type-skin__title {
    display: none;
  }
}
@media (min-width: 1300px) {
  .shoe-care .type-skin__article {
    width: 50%;
    float: left;
  }
}
.shoe-care .type-skin__p:last-of-type {
  padding-bottom: 68px;
}
@media (min-width: 768px) {
  .shoe-care .type-skin__p:last-of-type {
    padding-bottom: 43px;
  }
}
@media (min-width: 768px) {
  .shoe-care .type-skin__p:last-of-type {
    padding-bottom: 105px;
  }
}
/* BEGIN animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* END animation */
/* END shoe care */
/** STYLES RWD */
@media only screen and (min-width: 0px) {
  #content {
    padding-top: 82px;
  }
  #header #logo {
    height: 82px;
  }
  #header #logo img {
    height: 82px;
  }
  #header #top-nav {
    background: #000;
    height: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  #header #top-nav.on {
    height: auto;
  }
  #header #top-nav > ul {
    zoom: 1;
  }
  #header #top-nav > ul:before {
    content: '';
    display: block;
  }
  #header #top-nav > ul:after {
    content: '';
    display: table;
    clear: both;
  }
  #header #top-nav > ul > li {
    float: none;
    height: auto;
    width: 100%;
    position: relative;
  }
  #header #top-nav > ul > li > a {
    display: block;
    padding: 15px 0 15px 15px;
    width: 100%;
    height: auto;
    position: static;
    border-right: 0;
  }
  #header #top-nav > ul > li > a h3,
  #header #top-nav > ul > li > a span {
    color: #FFF;
  }
  #header #top-nav > ul > li > a h3 {
    font-size: 24px;
    letter-spacing: 3px;
  }
  #header #top-nav > ul > li > a span {
    font-size: 8px;
    text-transform: uppercase;
    font-family: montserratlight, arial, sans-serif;
  }
  #header #top-nav > ul > li > a:hover h3,
  #header #top-nav > ul > li > a:hover span {
    color: #ff3300;
  }
  #header #top-nav > ul > li:last-child {
    width: 200px;
  }
  #header #top-nav > ul > li:last-child a {
    border-right: 0;
  }
  #header .toggleTopMenu {
    padding: 67px 30px 0 30px;
  }
  #header .toggleTopMenu.on {
    -webkit-transform: rotate(180deg) translateZ(0) scale(1, 1);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    background: #f2f2f2;
  }
  #header .triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #000000 transparent transparent transparent;
    padding: 0;
  }
  #header #nav-main {
    position: relative;
    width: 100%;
    text-align: left;
    height: 82px;
    font-size: 0;
    display: block !important;
    padding-left: 180px;
  }
  #header #nav-main > ul {
    display: inline-block;
  }
  #header #nav-main > ul > li {
    display: inline-block;
    height: 82px;
    vertical-align: top;
    /**	SUBNAV */
  }
  #header #nav-main > ul > li > a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 12px;
    text-decoration: none;
  }
  #header #nav-main > ul > li > a > span {
    display: block;
    padding: 32px 18px 0;
    letter-spacing: 1px;
    color: #000;
    font-size: 20px;
    text-transform: uppercase;
    font-family: bebas, arial, sans-serif;
    -webkit-transition: color 0.3s ease 0s;
    -moz-transition: color 0.3s ease 0s;
    -o-transition: color 0.3s ease 0s;
    -ms-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #header #nav-main > ul > li > a > span.active {
    color: #f8541f;
  }
  #header #nav-main > ul > li > a > span > span {
    color: #f8541f;
  }
  #header #nav-main > ul > li > a > span.finlek {
    font-family: 'finlek';
    text-transform: capitalize;
    font-size: 24px;
    padding-top: 28px;
  }
  #header #nav-main > ul > li .sub-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 83px;
    width: 100%;
  }
  #header #nav-main > ul > li .sub-nav h2 {
    font-size: 20px;
  }
  #header #nav-main > ul > li .sub-nav a {
    font-size: 14px;
  }
  #header #nav-main > ul > li.nav-salons,
  #header #nav-main > ul > li.nav-langs {
    display: none;
  }
  #header #nav-main > ul > li .sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    background: #FFF;
    padding: 0 90px;
    overflow: hidden;
    display: block !important;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -o-transform: translate(0px);
    zoom: 1;
  }
  #header #nav-main > ul > li .sub-nav:before {
    content: '';
    display: block;
  }
  #header #nav-main > ul > li .sub-nav:after {
    content: '';
    display: table;
    clear: both;
  }
  #header #nav-main > ul > li .sub-nav:after {
    content: '';
    height: 75px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(#f2f2f2, #ffffff);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #header #nav-main > ul > li .sub-nav.scroll {
    overflow-y: scroll;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left {
    width: 650px;
    float: left;
    z-index: 1;
    position: relative;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col {
    width: 170px;
    display: inline-block;
    vertical-align: top;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col:first-child > ul {
    border-left: 0;
    padding: 10px 20px 10px 0;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col:first-child > h2 {
    font-family: bebas, arial, sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0 0 25px 0;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col > h2 {
    font-family: bebas, arial, sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0 0 25px 20px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col > ul {
    border-left: 1px solid #dedede;
    padding: 10px 20px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col > ul > li {
    display: block;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col > ul > li.item {
    font-family: montserratbold, arial, sans-serif;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col > ul > li.item:last-child {
    margin-bottom: 0;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col > ul > li.item--light {
    font-family: montserratultra_light, arial, sans-serif;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col > ul > li .sub-item {
    font-family: montserratultra_light, arial, sans-serif;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col > ul > li .sub-item:last-child {
    margin-bottom: 0;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col > ul > li a {
    font-size: 15px;
    color: #666666;
    line-height: 18px;
    padding-bottom: 1vh;
    display: block;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col > ul > li a:hover {
    color: #f8541f;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col.col--2 {
    width: 300px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col.col--2 > ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col.col--last {
    padding-top: 43px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col.col--last a {
    color: #f8541f;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right {
    float: left;
    z-index: 1;
    position: relative;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul {
    zoom: 1;
    margin-top: 40px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul:before {
    content: '';
    display: block;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul:after {
    content: '';
    display: table;
    clear: both;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li {
    float: left;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li.contest-boxes {
    float: none;
    display: block;
    margin-bottom: 30px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li.contest-boxes:last-child {
    margin-bottom: 0;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li > a {
    display: block;
    width: 252px;
    height: 250px;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li > a span {
    position: absolute;
    bottom: 20px;
    white-space: nowrap;
    padding: 15px 25px;
    font-family: bebas, arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateZ(0) scale(1, 1);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #000;
    border: 1px solid #000;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li > a:hover span {
    background: #000;
    color: #FFF;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki {
    background: url("../img/subnav/submenu_lasocki.jpg") 50% 50%;
    background-size: 100%;
    border: 1px solid #e3e3e3;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.at {
    background-image: url("../img/subnav/lasocki_at.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.ro {
    background-image: url("../img/subnav/lasocki_rum.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.bg {
    background-image: url("../img/subnav/submenu_lasocki_bul.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.cz {
    background-image: url("../img/subnav/submenu_lasocki_cz.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.de {
    background-image: url("../img/subnav/submenu_lasocki_de.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.hr {
    background-image: url("../img/subnav/submenu_lasocki_chr.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.hu {
    background-image: url("../img/subnav/submenu_lasocki_hu.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.lv {
    background-image: url("../img/subnav/submenu_lasocki_lot.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.ru {
    background-image: url("../img/subnav/submenu_lasocki_ru.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.si {
    background-image: url("../img/subnav/submenu_lasocki_svn.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.sk {
    background-image: url("../img/subnav/submenu_lasocki_svk.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.tr {
    background-image: url("../img/subnav/submenu_lasocki_tr.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.ua {
    background-image: url("../img/subnav/submenu_lasocki_ukr.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .lasocki.en {
    background-image: url("../img/subnav/submenu_lasocki_en.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi {
    background: url("../img/subnav/submenu_sprandi.jpg") 50% 50%;
    background-size: 100%;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi span {
    color: #FFF;
    border-color: #FFF;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi:hover span {
    color: #000;
    background: #FFF;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.at {
    background-image: url("../img/subnav/sprandi_at.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.ro {
    background-image: url("../img/subnav/sprandi_rum.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.bg {
    background-image: url("../img/subnav/submenu_sprandi_bul.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.cz {
    background-image: url("../img/subnav/submenu_sprandi_cz.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.de {
    background-image: url("../img/subnav/submenu_sprandi_de.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.hr {
    background-image: url("../img/subnav/submenu_sprandi_chr.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.hu {
    background-image: url("../img/subnav/submenu_sprandi_hu.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.lv {
    background-image: url("../img/subnav/submenu_sprandi_lot.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.ru {
    background-image: url("../img/subnav/submenu_sprandi_ru.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.si {
    background-image: url("../img/subnav/submenu_sprandi_svn.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.sk {
    background-image: url("../img/subnav/submenu_sprandi_svk.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.tr {
    background-image: url("../img/subnav/submenu_sprandi_tr.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.ua {
    background-image: url("../img/subnav/submenu_sprandi_ukr.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .sprandi.en {
    background-image: url("../img/subnav/submenu_sprandi_en.jpg");
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung {
    background-image: url("../img/home/header-box-fun.jpg");
    width: 524px;
    height: 250px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung-contest {
    background-image: url("../img/home/header-box-fun-2.jpg");
    width: 524px;
    height: 250px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung,
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung-contest {
    padding: 30px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung h4,
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung-contest h4 {
    font-family: ainslie, arial, sans-serif;
    color: #FFF;
    font-size: 24px;
    line-height: 28px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung > span,
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung-contest > span {
    color: #FFF;
    border-color: #FFF;
    left: 30px;
    -webkit-transform: translateX(0) translateZ(0) scale(1, 1);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung > span > img,
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung-contest > span > img {
    max-height: 15px;
    display: inline-block;
    vertical-align: middle;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung:hover span,
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung-contest:hover span {
    background: #000;
    border-color: #000;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li:first-child {
    margin-right: 20px;
  }
  #header #nav-main > ul > li .sub-nav > ul {
    margin: 0 auto;
  }
  #header #nav-main > ul > li .sub-nav > ul > li {
    display: block;
    float: left;
  }
  #header #nav-main > ul > li .sub-nav > ul > li > a {
    display: block;
    position: relative;
  }
  #header #nav-main > ul > li .sub-nav > ul > li > a strong {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 10;
    font-size: 30px;
    color: #FFF;
    margin-top: -10px;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 4px;
    font-family: bebas, arial, sans-serif;
  }
  #header #nav-main > ul > li .sub-nav > ul > li > a img {
    width: 100%;
    display: block;
  }
  #header #nav-main > ul > li .sub-nav > ul > li > a img.color {
    position: absolute;
    top: 0px;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #header #nav-main > ul > li .sub-nav > ul > li > a:hover img.color {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
  }
  #header #nav-main > ul > li .sub-nav.sub-6 > ul {
    max-width: 1600px;
  }
  #header #nav-main > ul > li .sub-nav.sub-6 > ul > li {
    width: 16.66666%;
  }
  #header #nav-main > ul > li .sub-nav.sub-5 > ul {
    max-width: 1600px;
  }
  #header #nav-main > ul > li .sub-nav.sub-5 > ul > li {
    width: 20%;
  }
  #header #nav-main > ul > li .sub-nav.sub-4 > ul {
    max-width: 1280px;
  }
  #header #nav-main > ul > li .sub-nav.sub-4 > ul > li {
    width: 25%;
  }
  #header #nav-main > ul > li .sub-nav.sub-3 > ul {
    max-width: 960px;
  }
  #header #nav-main > ul > li .sub-nav.sub-3 > ul > li {
    width: 33.33333%;
  }
  #header #nav-main > ul > li .sub-nav.sub-2 > ul {
    max-width: 640px;
  }
  #header #nav-main > ul > li .sub-nav.sub-2 > ul > li {
    width: 50%;
  }
  #header #nav-main > ul > li .sub-nav.sub-1 > ul {
    max-width: 320px;
  }
  #header #nav-main > ul > li .sub-nav.sub-1 > ul > li {
    width: 100%;
  }
  #header #nav-main > ul > li.hover > a {
    background: #f2f2f2;
  }
  #header #nav-main > ul > li.hover > a > span {
    color: #f8541f;
  }
  #header #nav-main > ul > li.hover .sub-nav {
    max-height: calc(100vh - 117px);
    height: 100vh;
    padding: 35px 90px;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
  }
  #header #nav-main > ul > li.orange a span {
    color: #f8541f;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1024px) {
  #header .triangle {
    border-width: 7px 4px 0 4px;
  }
}
@media only screen and (min-width: 0px) and (min-width: 1080px) {
  #header #nav-main > ul > li > a > span.finlek {
    font-size: 28px;
    padding-top: 46px;
  }
}
@media only screen and (min-width: 0px) and (min-width: 1670px) {
  #header #nav-main > ul > li > a > span.finlek {
    padding-top: 48px;
  }
}
@media only screen and (min-width: 0px) and (min-width: 1790px) {
  #header #nav-main > ul > li > a > span.finlek {
    font-size: 32px;
    padding-top: 44px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1400px) {
  #header #nav-main > ul > li .sub-nav .sub-nav__left {
    width: 580px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col {
    width: 150px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col.col--2 {
    width: 280px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1400px) and (max-height: 800px) {
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col > ul > li a {
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1400px) and (max-height: 700px) {
  #header #nav-main > ul > li .sub-nav .sub-nav__left .col > ul > li a {
    padding-bottom: 5px;
  }
}
@media only screen and (min-width: 0px) and (max-height: 750px) {
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung,
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung-contest {
    height: 200px;
    width: 450px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung h4,
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung-contest h4 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1024px) and (max-height: 600px) {
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung,
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li .kidsandyoung-contest {
    display: none;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1400px) {
  #header #nav-main > ul > li .sub-nav {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1400px) {
  #header #nav-main > ul > li.hover .sub-nav {
    padding: 35px 40px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1024px) {
  #header #nav-main > ul > li.hover .sub-nav {
    max-height: calc(100vh - 82px);
  }
}
#only-mobile-menu .hasFatMenu .col.col--last ul {
  display: block;
}
#only-mobile-menu .hasFatMenu .col.col--last ul a {
  padding-left: 24px;
  color: #f05628;
}
@media only screen and (max-width: 914px) {
  .ru #nav-social {
    display: none;
  }
  .ru #header.open-menu #nav-right #nav-second-items {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    top: 62px;
    background-color: #fff;
    text-align: right;
  }
  .ru #header.open-menu #nav-right #nav-second-items > ul > li {
    float: none;
  }
  .ru #header.open-menu #nav-right #nav-second-items > ul > li a {
    height: 50px;
  }
  .ru #header.open-menu #nav-right #nav-second-items > ul > li a span {
    padding-top: 10px;
  }
  .ru #header {
    position: relative;
    height: auto;
    /*#nav-right {
          display: none;
      }*/
  }
  .ru #header #btn-burger-menu {
    display: block;
    margin: 0 0 0 auto;
    width: 80px;
    height: 82px;
    background: transparent url(../img/ico-burger.png) no-repeat 50% 50%;
    background-size: 26px auto;
  }
  .ru #header #top-nav {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
    -webkit-transform: translateY(-100%) translateZ(0) scale(1, 1);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-backface-visibility: hidden;
    position: absolute;
    z-index: 105;
    height: auto;
    fill: #FFF;
  }
  .ru #header #top-nav.on {
    -webkit-transform: translateY(0) translateZ(0) scale(1, 1);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-backface-visibility: hidden;
  }
  .ru #header #top-nav.on .top-nav__close {
    opacity: 1;
  }
  .ru #header #top-nav > ul {
    width: 90%;
  }
  .ru #header #top-nav .top-nav__close {
    width: 20px;
    height: 20px;
    position: absolute;
    z-index: 105;
    right: 20px;
    top: 20px;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -o-transform: translate(0px);
  }
  .ru #header #nav-right #nav-second > ul > li.lang > a {
    height: 82px;
  }
  .ru #header #nav-right #nav-second > ul > li.lang > a span {
    padding-top: 32px;
  }
  .ru #header #nav-main > ul {
    display: block;
  }
  .ru #header #nav-main > ul > li {
    display: none;
    border-bottom: 1px #eee solid;
  }
  .ru #header #nav-main > ul > li.menu-top-toggle {
    display: inline-block;
  }
  .ru #header #nav-main > ul > li > a {
    display: block;
    padding: 20px 25px;
    text-transform: uppercase;
    color: #000;
    font-size: 14px;
    font-family: montserratregular, arial, sans-serif;
    -webkit-transition: background-color 0.3s ease 0s;
    -moz-transition: background-color 0.3s ease 0s;
    -o-transition: background-color 0.3s ease 0s;
    -ms-transition: background-color 0.3s ease 0s;
    transition: background-color 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  .ru #header #nav-main > ul > li > a:hover {
    background-color: #f8f8f8;
    color: #f8541f;
  }
  .ru #header #nav-main > ul > li .toggleTopMenu {
    width: 42px;
    padding: 46px 18px 0 18px;
  }
  .ru #header #nav-main > ul > li .toggleTopMenu.on {
    -webkit-transform: rotate(180deg) translateZ(0) scale(1, 1);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    padding: 36px 18px 0 18px;
    background: #f2f2f2;
  }
  .ru #header #nav-main > ul > li .sub-nav {
    background-color: #f8f8f8;
  }
  .ru #header #nav-main > ul > li .sub-nav > ul {
    display: block;
  }
  .ru #header #nav-main > ul > li .sub-nav > ul > li {
    display: block;
    border-top: 1px #eee solid;
  }
  .ru #header #nav-main > ul > li .sub-nav > ul > li > a {
    display: block;
    padding: 20px 40px;
  }
  .ru #header #nav-main > ul > li .sub-nav > ul > li > a > img {
    display: none;
  }
  .ru #header #nav-main > ul > li .sub-nav > ul > li > a > strong {
    text-transform: uppercase;
    color: #000;
    font-size: 12px;
    font-family: montserratregular, arial, sans-serif;
  }
  .ru #header #nav-main > ul > li.active > a {
    color: #f8541f;
    background-color: #f8f8f8;
  }
  .ru #header #nav-main > ul > li:last-of-type {
    border-bottom: 0 !important;
  }
  .ru #content {
    top: 0;
    padding-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  #header #nav-main ul {
    padding-left: 33px;
  }
}
@media only screen and (min-width: 768px) {
  body.top-nav-visible {
    padding-top: 0;
  }
  #header {
    height: 82px;
  }
  #header #logo {
    height: 82px;
  }
  #header #logo img {
    height: 82px;
  }
  #header #btn-burger-menu {
    height: 117px;
  }
  #header #top-nav {
    background: #000;
    height: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 105;
    width: 100%;
  }
  #header #top-nav.on {
    height: 150px;
  }
  #header #top-nav.on > ul > li {
    opacity: 1;
    -webkit-transform: translateY(0) translateZ(0) scale(1, 1);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-backface-visibility: hidden;
  }
  #header #top-nav.on .top-nav__close {
    opacity: 1;
    -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, -50%) translateZ(0) scale(1, 1);
    -o-transform: translate(0, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, -50%) translateZ(0) scale(1, 1);
    transform: translate(0, -50%) translateZ(0) scale(1, 1);
  }
  #header #top-nav .top-nav__close {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 60px;
    top: 50%;
    opacity: 0;
    -webkit-transform: translate(40px, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(40px, -50%);
    transform: translate(40px, -50%);
    -webkit-transform: translate(40px, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(40px, -50%) translateZ(0) scale(1, 1);
    -o-transform: translate(40px, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(40px, -50%) translateZ(0) scale(1, 1);
    transform: translate(40px, -50%) translateZ(0) scale(1, 1);
    -webkit-transition: all 0.3s ease-in-out 0.8s;
    -moz-transition: all 0.3s ease-in-out 0.8s;
    -o-transition: all 0.3s ease-in-out 0.8s;
    -ms-transition: all 0.3s ease-in-out 0.8s;
    transition: all 0.3s ease-in-out 0.8s;
    -o-transform: translate(0px);
  }
  #header #top-nav .top-nav__close svg {
    display: block;
  }
  #header #top-nav .top-nav__close svg polygon {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
    fill: #FFF;
  }
  #header #top-nav .top-nav__close:hover svg polygon {
    fill: #f8541f;
  }
  #header #top-nav > ul {
    zoom: 1;
  }
  #header #top-nav > ul:before {
    content: '';
    display: block;
  }
  #header #top-nav > ul:after {
    content: '';
    display: table;
    clear: both;
  }
  #header #top-nav > ul > li {
    float: left;
    height: 150px;
    width: 33%;
    position: relative;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0.2s;
    -moz-transition: all 0.3s ease-in-out 0.2s;
    -o-transition: all 0.3s ease-in-out 0.2s;
    -ms-transition: all 0.3s ease-in-out 0.2s;
    transition: all 0.3s ease-in-out 0.2s;
    -o-transform: translate(0px);
    transform: translateY(-30px);
  }
  #header #top-nav > ul > li > a {
    padding: 25px 0 0 25px;
    width: 100%;
    height: 100px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, -50%) translateZ(0) scale(1, 1);
    -o-transform: translate(0, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, -50%) translateZ(0) scale(1, 1);
    transform: translate(0, -50%) translateZ(0) scale(1, 1);
    border-right: 1px solid #2c2c2c;
  }
  #header #top-nav > ul > li > a h3,
  #header #top-nav > ul > li > a span {
    color: #FFF;
  }
  #header #top-nav > ul > li > a h3 {
    font-size: 24px;
    letter-spacing: 3px;
  }
  #header #top-nav > ul > li > a span {
    font-size: 8px;
    text-transform: uppercase;
    font-family: montserratlight, arial, sans-serif;
  }
  #header #top-nav > ul > li > a:hover h3,
  #header #top-nav > ul > li > a:hover span {
    color: #ff3300;
  }
  #header #top-nav > ul > li:last-child {
    width: 200px;
  }
  #header #top-nav > ul > li:last-child a {
    border-right: 0;
  }
  #header #top-nav > ul > li:nth-child(2) {
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    -ms-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
  #header #top-nav > ul > li:nth-child(3) {
    -webkit-transition-delay: 0.6s;
    -moz-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    -ms-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }
  #header #nav-main {
    padding-left: 210px;
    height: 82px;
  }
  #header #nav-main > ul > li {
    height: 82px;
  }
  #header #nav-main > ul > li > a > span {
    font-size: 28px;
    padding: 47px 20px 0;
  }
  body.ru #header #nav-main > ul > li > a > span {
    font-size: 22px;
    padding: 47px 10px 0;
  }
  #header #nav-right {
    right: 30px;
  }
  #header #nav-right #nav-social > ul > li > a {
    height: 117px;
    width: 34px;
  }
  #header #nav-right #nav-second > ul > li > a > span,
  #header #nav-right #nav-second-items > ul > li > a > span {
    font-size: 22px;
    padding: 50px 20px 0;
    letter-spacing: .6px;
  }
  body.ru #header #nav-right #nav-second > ul > li > a > span,
  body.ru #header #nav-right #nav-second-items > ul > li > a > span {
    font-size: 18px;
    letter-spacing: 0;
  }
}
@media (min-width: 768px) and (max-width: 1079px) {
  header#header #state-change-container {
    top: 82px;
  }
  header#header nav#nav-main > ul > li > a > span {
    padding: 30px 10px 0;
  }
  header#header nav#nav-main > ul > li > a.toggleTopMenu {
    padding: 45px 15px 0;
  }
  header#header nav#nav-main > ul > li.kidsAndYoung > a > span {
    padding-top: 27px;
  }
  header#header #btn-burger-menu {
    height: 82px;
  }
  header#header div#nav-right #nav-second > ul > li.inst a,
  header#header div#nav-right #nav-social > ul > li.inst a {
    background-size: 18px;
  }
  header#header div#nav-right #nav-second > ul > li.yt a,
  header#header div#nav-right #nav-social > ul > li.yt a {
    background-size: 17px;
  }
  header#header div#nav-right #nav-second > ul > li.fb a,
  header#header div#nav-right #nav-social > ul > li.fb a {
    background-size: 14px;
  }
  header#header div#nav-right #nav-second > ul > li > a,
  header#header div#nav-right #nav-social > ul > li > a {
    height: 82px;
  }
  header#header div#nav-right #nav-second > ul > li.lang > a > span {
    padding-top: 30px;
  }
  header#header.open-menu #nav-right #nav-second-items {
    top: 82px;
  }
}
@media (min-width: 1080px) {
  #content {
    padding-top: 117px;
  }
  #header {
    height: 117px;
  }
  #header #logo {
    height: 117px;
  }
  #header #logo img {
    height: 117px;
  }
  #header #nav-main {
    padding-left: 300px;
    height: 117px;
  }
  #header #nav-main > ul > li {
    height: 117px;
  }
  #header #nav-main > ul > li a span > img {
    margin-top: -4px;
  }
}
@media only screen and (max-width: 1199px) {
  #header #nav-main > ul > li .sub-nav .sub-nav__right {
    display: none;
  }
}
@media (max-width: 1450px) and (min-width: 1200px) {
  #header #nav-main > ul > li > a span {
    padding: 32px 15px 0;
  }
  #header #nav-main .sub-nav .sub-nav__left .col h2 {
    margin-bottom: 10px !important;
  }
  #header #nav-right #nav-second-items > ul > li > a span {
    padding: 33px 10px 0;
  }
}
@media only screen and (max-width: 1880px) {
  #header #nav-main > ul > li > a span {
    padding: 49px 25px 0;
  }
  #header #nav-right #nav-second-items > ul > li > a span {
    padding: 51px 10px 0;
  }
}
@media only screen and (max-width: 1790px) {
  #header #nav-main > ul > li > a span {
    padding: 49px 15px 0;
    font-size: 24px;
  }
  #header #nav-main > ul > li > a span > img {
    margin-top: -7px;
  }
  #header #nav-right #nav-second-items > ul > li > a span {
    padding: 49px 10px 0;
  }
}
@media only screen and (max-width: 1670px) {
  #header .toggleTopMenu {
    padding: 65px 30px 0 30px;
  }
  #header #nav-main > ul > li > a span {
    padding: 47px 15px 0;
    font-size: 24px;
  }
  #header #nav-right #nav-second-items > ul {
    padding-right: 10px;
  }
  #header #nav-right #nav-second-items > ul > li > a span {
    padding: 50px 5px 0;
    font-size: 18px;
  }
  #header #nav-right #nav-second > ul > li.lang a span {
    padding-left: 0;
    padding-top: 47px;
  }
  #header #nav-right #nav-social > ul > li a {
    width: 30px;
  }
}
@media only screen and (max-width: 1530px) {
  #header #nav-main.open > ul > li.nav-salons,
  #header #nav-main.open > ul > li.nav-langs {
    background: #FFF;
    display: block;
    border: 1px solid #eee;
    margin-top: -1px;
  }
  #header #nav-right {
    right: 0;
  }
  #header #nav-right #nav-second-items {
    display: none;
    position: absolute;
    right: 0;
    width: 200px;
    top: 117px;
    background-color: #fff;
    text-align: right;
  }
  #header #nav-right #nav-second-items > ul > li {
    float: none;
  }
  #header #nav-right #nav-second-items > ul > li a {
    height: 50px;
  }
  #header #nav-right #nav-second-items > ul > li a span {
    padding-top: 10px;
  }
  #header.open-menu #nav-right #nav-second-items {
    display: block;
  }
}
@media only screen and (min-width: 1531px) {
  #header #btn-burger-menu {
    display: none;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li > a {
    width: 252px;
    height: 250px;
    padding: 25px 0 0 50px;
  }
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li > a h3 {
    font-size: 24px;
    letter-spacing: 3px;
  }
  #header #nav-right {
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  #header #nav-main > ul > li .sub-nav .sub-nav__right > ul > li > a {
    width: 202px;
    height: 200px;
  }
}
@media only screen and (max-width: 1079px) {
  header#header > nav#nav-main > ul > li > a > span {
    font-size: 20px;
  }
  body.ru header#header > nav#nav-main > ul > li > a > span {
    font-size: 20px;
    padding: 30px 15px 0;
  }
}
@media only screen and (max-width: 875px) {
  #nav-social {
    display: none;
  }
  #header.open-menu #nav-right #nav-second-items {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    top: 62px;
    background-color: #fff;
    text-align: right;
  }
  #header.open-menu #nav-right #nav-second-items > ul > li {
    float: none;
  }
  #header.open-menu #nav-right #nav-second-items > ul > li a {
    height: 50px;
  }
  #header.open-menu #nav-right #nav-second-items > ul > li a span {
    padding-top: 10px;
  }
  #header {
    position: relative;
    height: auto;
    /*#nav-right {
        display: none;
    }*/
  }
  #header #btn-burger-menu {
    display: block;
    margin: 0 0 0 auto;
    width: 80px;
    height: 82px;
    background: transparent url(../img/ico-burger.png) no-repeat 50% 50%;
    background-size: 26px auto;
  }
  #header #top-nav {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
    -webkit-transform: translateY(-100%) translateZ(0) scale(1, 1);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-backface-visibility: hidden;
    position: absolute;
    z-index: 105;
    height: auto;
    fill: #FFF;
  }
  #header #top-nav.on {
    -webkit-transform: translateY(0) translateZ(0) scale(1, 1);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-backface-visibility: hidden;
  }
  #header #top-nav.on .top-nav__close {
    opacity: 1;
  }
  #header #top-nav > ul {
    width: 90%;
  }
  #header #top-nav .top-nav__close {
    width: 20px;
    height: 20px;
    position: absolute;
    z-index: 105;
    right: 20px;
    top: 20px;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -o-transform: translate(0px);
  }
  #header #nav-right #nav-second > ul > li.lang > a {
    height: 82px;
  }
  #header #nav-right #nav-second > ul > li.lang > a span {
    padding-top: 32px;
  }
  #header #nav-main > ul {
    display: block;
  }
  #header #nav-main > ul > li {
    display: none;
    border-bottom: 1px #eee solid;
  }
  #header #nav-main > ul > li.menu-top-toggle {
    display: inline-block;
  }
  #header #nav-main > ul > li > a {
    display: block;
    padding: 20px 25px;
    text-transform: uppercase;
    color: #000;
    font-size: 14px;
    font-family: montserratregular, arial, sans-serif;
    -webkit-transition: background-color 0.3s ease 0s;
    -moz-transition: background-color 0.3s ease 0s;
    -o-transition: background-color 0.3s ease 0s;
    -ms-transition: background-color 0.3s ease 0s;
    transition: background-color 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #header #nav-main > ul > li > a:hover {
    background-color: #f8f8f8;
    color: #f8541f;
  }
  #header #nav-main > ul > li .toggleTopMenu {
    width: 42px;
    padding: 46px 18px 0 18px;
  }
  #header #nav-main > ul > li .toggleTopMenu.on {
    -webkit-transform: rotate(180deg) translateZ(0) scale(1, 1);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    padding: 36px 18px 0 18px;
    background: #f2f2f2;
  }
  #header #nav-main > ul > li .sub-nav {
    background-color: #f8f8f8;
  }
  #header #nav-main > ul > li .sub-nav > ul {
    display: block;
  }
  #header #nav-main > ul > li .sub-nav > ul > li {
    display: block;
    border-top: 1px #eee solid;
  }
  #header #nav-main > ul > li .sub-nav > ul > li > a {
    display: block;
    padding: 20px 40px;
  }
  #header #nav-main > ul > li .sub-nav > ul > li > a > img {
    display: none;
  }
  #header #nav-main > ul > li .sub-nav > ul > li > a > strong {
    text-transform: uppercase;
    color: #000;
    font-size: 12px;
    font-family: montserratregular, arial, sans-serif;
  }
  #header #nav-main > ul > li.active > a {
    color: #f8541f;
    background-color: #f8f8f8;
  }
  #header #nav-main > ul > li:last-of-type {
    border-bottom: 0 !important;
  }
  #content {
    top: 0;
    padding-top: 0;
  }
}
@media (max-width: 841px) {
  #header #nav-main {
    display: none;
  }
}
@media (max-width: 1280px) {
  #footer .footer-c {
    padding-bottom: 60px;
  }
  #footer #footer-caption {
    margin-top: 30px;
  }
  #footer #footer-caption .copy {
    font-size: 12px;
  }
  #footer #footer-caption #nav-social > ul > li.inst a,
  #footer #footer-caption #nav-social > ul > li.yt a,
  #footer #footer-caption #nav-social > ul > li.fb a {
    background-size: contain;
    width: 20px;
    height: 22px;
  }
  #footer #top_footer .c {
    padding-top: 60px;
  }
  #footer #top_footer .col p {
    font-size: 12px;
    line-height: 16px;
  }
  #footer .foot-menu {
    display: inline-block;
    max-width: 951px;
    width: 100%;
  }
  #footer .foot-menu .col h3 {
    font-size: 22px;
  }
  #footer .foot-menu .col ul li a {
    font-size: 12px;
  }
  #footer .bg--gray {
    padding-top: 35px;
  }
}
@media (max-width: 990px) {
  #footer .foot-menu .col {
    width: 20%;
    margin-bottom: 40px;
  }
  #footer .foot-menu .col.col--kontakt {
    float: left;
    padding-top: 0;
    width: 20%;
  }
  #footer .foot-menu .col.col--firma {
    width: 20%;
  }
  #footer .foot-menu .col.col--cats {
    width: 80%;
    max-width: none;
  }
  #footer .foot-menu .col.col--cats ul {
    max-width: 33.333%;
  }
}
@media (max-width: 580px) {
  #footer > .footer-c {
    display: none;
  }
  #footer .foot-menu {
    display: block;
  }
  #footer .foot-menu .toggleSubMenu {
    position: absolute;
    display: block;
    top: -10px;
    right: -15px;
    height: 48px;
    width: 50px;
    line-height: 1px;
    font-size: 1px;
    padding: 18px 12px 0 12px;
    text-align: center;
    z-index: 1;
  }
  #footer .foot-menu .open-submenuMob > .toggleSubMenu .triangle {
    position: absolute;
    border-top-color: #000;
    -webkit-transform: rotate(180deg) translateZ(0) scale(1, 1);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  #footer .foot-menu .col {
    position: relative;
    width: 100% !important;
    float: none;
    margin-bottom: 0;
  }
  #footer .foot-menu .col h3 {
    margin-bottom: 10px;
    font-size: 35px;
    background: url("../img/foot-arrow.png") 100% 50% no-repeat;
  }
  #footer .foot-menu .col ul {
    padding-left: 24px;
    max-width: none;
    display: none;
  }
  #footer .foot-menu .col ul li a {
    font-size: 14px;
  }
  #footer .foot-menu .col.col--cats {
    max-width: 100%;
  }
  #footer .foot-menu .col.col--cats ul {
    max-width: 100%;
  }
  #footer .foot-menu .col.col--kontakt h3 {
    background-image: none!important;
  }
  #footer .foot-menu .col.open-submenuMob h3 {
    background: url("../img/foot-arrow-active.png") 100% 50% no-repeat;
  }
  #footer .foot-menu .col.open-submenuMob ul {
    margin: 20px 0;
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  #header #logo,
  .ru #header #logo {
    width: 180px;
    overflow: hidden;
  }
  #header #logo img,
  .ru #header #logo img {
    margin-left: -18px;
  }
  #header #nav-main,
  .ru #header #nav-main {
    padding-left: 194px;
  }
  #header #nav-main > ul > li.menu-top-toggle,
  .ru #header #nav-main > ul > li.menu-top-toggle {
    display: none;
  }
  #grid-top #shops .ratio-wrap .ratio form h3 {
    font-size: 40px;
  }
  #grid-top #shops .ratio-wrap .ratio .row-big,
  #grid-top #shops .ratio-wrap .ratio .row {
    width: 100%;
  }
}
body.cz .but-s {
  display: none !important;
}
@media only screen and (max-width: 1200px) {
  #grid-top #new,
  #grid-top #ccc,
  #grid-top #sale_tile {
    width: 50%;
  }
}
@media only screen and (min-width: 1401px) and (max-width: 1630px) {
  #grid-top #shops h3 {
    margin-top: 20px;
    font-size: 58px;
    margin-bottom: 20px;
  }
  #grid-top #shops a {
    margin-top: 20px;
  }
  #grid-top #shops p {
    margin-bottom: 20px;
    padding: 0 40px;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1400px) {
  #grid-top #ccc .tile div.ratio-wrap div.ratio a span.box-inner strong {
    font-size: 40px;
    line-height: 46px;
  }
  #grid-top #ccc .tile div.ratio-wrap div.ratio a span.box-inner span {
    padding-top: 10px;
  }
  #grid-top #shops h3 {
    margin: 20px 0;
    font-size: 36px;
  }
  #grid-top #shops .row {
    padding-top: 15px;
  }
  #grid-top #shops select,
  #grid-top #shops #submitForm {
    height: 50px;
    font-size: 16px;
  }
  #grid-top #shops a {
    font-size: 16px;
    margin-top: 20px;
  }
  #grid-top #shops a > img {
    width: 20px;
    height: 20px;
  }
  #grid-top #shops p {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  #grid-top #shops {
    width: 100%;
    margin-top: 0;
  }
  #grid-top #shops .col50 select {
    width: 95%;
    height: 50px;
    font-size: 14px;
  }
  #grid-top #shops h3 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  #grid-top #shops div.ratio-wrap {
    height: 250px;
  }
  #grid-top #shops form > a {
    padding-top: 60px;
    font-size: 14px;
  }
  #grid-top #shops form > a > img {
    width: 16px;
    height: 16px;
    margin-right: 0;
  }
  #grid-top #shops .ratio .row {
    padding-top: 0;
  }
  #grid-top #shops .ratio #submitForm {
    height: 50px;
    font-size: 18px;
    letter-spacing: .5em;
    width: 95%;
  }
}
@media (max-width: 1200px) {
  #trends {
    padding: 0 0 30px 0;
  }
  #trends h2 {
    font-size: 40px;
  }
  #grid-top #shops .ratio-wrap {
    padding-bottom: 0 !important;
    height: 200px;
  }
  #grid-top #shops .row-big {
    width: 66%;
    float: left;
  }
  #grid-top #shops .row-big .row {
    width: 50%;
  }
  #grid-top #shops .row {
    width: 33%;
    float: left;
  }
  #grid-top #shops #submitForm,
  #grid-top #shops select {
    width: 90%;
  }
  #grid-top #shops a {
    padding-top: 70px;
  }
}
@media (max-width: 1200px) {
  #grid-middle > div .ratio-wrap .ratio a .content h3 {
    font-size: 50px;
  }
  #grid-middle > div .ratio-wrap .ratio a .content p {
    font-size: 14px;
    letter-spacing: .35em;
  }
  #grid-middle div#kids .ratio-wrap .ratio a .content h3 {
    font-size: 38px;
  }
  #grid-middle div#kids .ratio-wrap .ratio a .content p {
    font-size: 11px;
    padding-top: 0;
  }
  #grid-middle div#lasocki .ratio-wrap .ratio a .content img {
    max-width: 170px;
  }
  #grid-middle div#eobuwie .ratio-wrap .ratio a .content p {
    font-size: 18px;
    letter-spacing: .1em;
    line-height: 22px;
    padding: 0 5px;
  }
  #grid-middle div#eobuwie .ratio-wrap .ratio a .content p > img {
    max-width: 50%;
    margin: 10px auto;
  }
  #grid-middle div#club .ratio-wrap .ratio a .content img {
    max-width: 210px;
  }
  #grid-middle div#she div.ratio-wrap {
    padding-bottom: 100%;
  }
  #grid-middle div#he div.ratio-wrap {
    padding-bottom: 100%;
  }
  #grid-middle div#club {
    width: 100%;
  }
}
@media (max-width: 990px) {
  #grid-middle div#eobuwie div.ratio-wrap div.ratio a .content p {
    font-size: 18px;
    line-height: 24px;
  }
  #grid-middle div#eobuwie div.ratio-wrap div.ratio a .content p span {
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media (max-width: 480px) {
  #grid-middle div#eobuwie div.ratio-wrap div.ratio a .content p {
    font-size: 18px;
    line-height: 24px;
  }
  #grid-middle div#eobuwie div.ratio-wrap div.ratio a .content p span {
    font-size: 20px;
    letter-spacing: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  #campain .cover .center ul li {
    margin: 10px;
  }
  #campain .cover .center ul li a {
    padding: 25px;
    font-size: 22px;
  }
}
@media only screen and (max-width: 1200px) {
  #campain {
    height: 360px;
  }
  #campain .cover .center h3 {
    font-size: 60px;
    letter-spacing: .2em;
    padding-bottom: 40px;
  }
  #campain .cover .center ul {
    max-width: 95%;
  }
  #campain .cover .center ul li {
    margin: 10px;
  }
  #campain .cover .center ul li a {
    font-size: 18px;
    letter-spacing: .3em;
    padding: 15px 18px;
  }
  #campain .cover:hover h3 {
    letter-spacing: 12px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1200px) {
  #grid-bottom {
    zoom: 1;
  }
  #grid-bottom:before {
    content: '';
    display: block;
  }
  #grid-bottom:after {
    content: '';
    display: table;
    clear: both;
  }
  #grid-bottom #video {
    width: 50%;
  }
  #grid-bottom #news {
    width: 50%;
  }
  #grid-bottom #no-news {
    width: 50%;
  }
  #grid-bottom #banners {
    width: 100%;
  }
  #grid-bottom #banners div.ratio-wrap {
    padding-bottom: 25%;
  }
  #grid-bottom #banners h3 {
    margin-top: 30%;
    padding: 0 25px;
  }
  #grid-bottom #banners #bags {
    width: 50%;
    height: 100%;
    padding-bottom: 0px;
    padding-right: 15px;
    float: left;
  }
  #grid-bottom #banners #shoes {
    width: 50%;
    height: 100%;
    padding-top: 0px;
    padding-left: 15px;
    float: left;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1200px) {
  #grid-bottom {
    zoom: 1;
  }
  #grid-bottom:before {
    content: '';
    display: block;
  }
  #grid-bottom:after {
    content: '';
    display: table;
    clear: both;
  }
  #grid-bottom #video {
    width: 50%;
  }
  #grid-bottom #news {
    width: 50%;
  }
  #grid-bottom #banners {
    width: 100%;
  }
  #grid-bottom #banners div.ratio-wrap {
    padding-bottom: 25%;
  }
  #grid-bottom #banners h3 {
    margin-top: 30%;
    padding: 0 25px;
  }
  #grid-bottom #banners #bags {
    width: 50%;
    height: 100%;
    padding-bottom: 0px;
    padding-right: 15px;
    float: left;
  }
  #grid-bottom #banners #shoes {
    width: 50%;
    height: 100%;
    padding-top: 0px;
    padding-left: 15px;
    float: left;
  }
}
@media (max-width: 1200px) {
  #grid-bottom #inspiration-1 .ratio-wrap .ratio a .box-cover .box-inner strong,
  #grid-bottom-2 #inspiration-1 .ratio-wrap .ratio a .box-cover .box-inner strong,
  #grid-bottom-3 #inspiration-1 .ratio-wrap .ratio a .box-cover .box-inner strong,
  #grid-bottom #inspiration-3 .ratio-wrap .ratio a .box-cover .box-inner strong,
  #grid-bottom-2 #inspiration-3 .ratio-wrap .ratio a .box-cover .box-inner strong,
  #grid-bottom-3 #inspiration-3 .ratio-wrap .ratio a .box-cover .box-inner strong,
  #grid-bottom #inspiration-5 .ratio-wrap .ratio a .box-cover .box-inner strong,
  #grid-bottom-2 #inspiration-5 .ratio-wrap .ratio a .box-cover .box-inner strong,
  #grid-bottom-3 #inspiration-5 .ratio-wrap .ratio a .box-cover .box-inner strong,
  #grid-bottom #inspiration-8 .ratio-wrap .ratio a .box-cover .box-inner strong,
  #grid-bottom-2 #inspiration-8 .ratio-wrap .ratio a .box-cover .box-inner strong,
  #grid-bottom-3 #inspiration-8 .ratio-wrap .ratio a .box-cover .box-inner strong {
    font-size: 31px;
    line-height: 36px;
    letter-spacing: .2em;
  }
  #grid-bottom #inspiration-1 .ratio-wrap .ratio a .box-cover .box-inner span,
  #grid-bottom-2 #inspiration-1 .ratio-wrap .ratio a .box-cover .box-inner span,
  #grid-bottom-3 #inspiration-1 .ratio-wrap .ratio a .box-cover .box-inner span,
  #grid-bottom #inspiration-3 .ratio-wrap .ratio a .box-cover .box-inner span,
  #grid-bottom-2 #inspiration-3 .ratio-wrap .ratio a .box-cover .box-inner span,
  #grid-bottom-3 #inspiration-3 .ratio-wrap .ratio a .box-cover .box-inner span,
  #grid-bottom #inspiration-5 .ratio-wrap .ratio a .box-cover .box-inner span,
  #grid-bottom-2 #inspiration-5 .ratio-wrap .ratio a .box-cover .box-inner span,
  #grid-bottom-3 #inspiration-5 .ratio-wrap .ratio a .box-cover .box-inner span,
  #grid-bottom #inspiration-8 .ratio-wrap .ratio a .box-cover .box-inner span,
  #grid-bottom-2 #inspiration-8 .ratio-wrap .ratio a .box-cover .box-inner span,
  #grid-bottom-3 #inspiration-8 .ratio-wrap .ratio a .box-cover .box-inner span {
    font-size: 12px;
    letter-spacing: .35em;
  }
  #grid-bottom #inspiration-2 div a span,
  #grid-bottom-2 #inspiration-2 div a span,
  #grid-bottom-3 #inspiration-2 div a span,
  #grid-bottom #inspiration-4 div a span,
  #grid-bottom-2 #inspiration-4 div a span,
  #grid-bottom-3 #inspiration-4 div a span,
  #grid-bottom #inspiration-6 div a span,
  #grid-bottom-2 #inspiration-6 div a span,
  #grid-bottom-3 #inspiration-6 div a span,
  #grid-bottom #inspiration-7 div a span,
  #grid-bottom-2 #inspiration-7 div a span,
  #grid-bottom-3 #inspiration-7 div a span,
  #grid-bottom #inspiration-9 div a span,
  #grid-bottom-2 #inspiration-9 div a span,
  #grid-bottom-3 #inspiration-9 div a span,
  #grid-bottom #inspiration-10 div a span,
  #grid-bottom-2 #inspiration-10 div a span,
  #grid-bottom-3 #inspiration-10 div a span {
    font-size: 12px;
    letter-spacing: .35em;
  }
  #grid-bottom #inspiration-2 div a,
  #grid-bottom-2 #inspiration-2 div a,
  #grid-bottom-3 #inspiration-2 div a,
  #grid-bottom #inspiration-6 div a,
  #grid-bottom-2 #inspiration-6 div a,
  #grid-bottom-3 #inspiration-6 div a {
    background-size: 40%;
  }
}
@media only screen and (max-width: 1023px) {
  #shops .cf:after {
    content: " ";
    /* Older browser do not support empty content */
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
  }
  #grid-top .tile-box .ratio-wrap .ratio a strong {
    font-size: 56px;
    letter-spacing: .2em;
    line-height: 54px;
  }
  #grid-top .tile-box .ratio-wrap .ratio a span {
    padding-top: 15px;
    font-size: 16px;
    letter-spacing: .35em;
  }
  #grid-top #ccc.tile-box .tile .ratio-wrap .ratio > a strong {
    font-size: 36px;
    letter-spacing: .2em;
    line-height: 42px;
  }
  #grid-top #ccc.tile-box .tile .ratio-wrap .ratio > a span {
    padding-top: 15px;
    font-size: 14px;
    letter-spacing: .35em;
  }
  #shops {
    margin-top: 40px;
  }
  #shops .ratio-wrap {
    height: 250px;
  }
  /*#grid-bottom #inspiration-3, #grid-bottom-2 #inspiration-3 {
      display: none;
  }*/
  #campain {
    background-attachment: scroll;
  }
  #campain .cover .center ul {
    max-width: 840px;
  }
  #campain .cover .center ul li {
    margin: 10px 5px;
  }
  #campain .cover .center ul li a {
    font-size: 18px;
    letter-spacing: .3em;
  }
}
@media only screen and (max-width: 990px) {
  #campain .cover .center ul li {
    margin: 10px;
  }
  #campain .cover .center ul li a {
    font-size: 16px;
    letter-spacing: .2em;
  }
}
@media only screen and (max-width: 768px) {
  #grid-top {
    padding: 10px;
  }
  #grid-top #new .ratio-wrap .ratio a {
    background-position: center top;
  }
  #grid-top #new .ratio-wrap .ratio a strong {
    font-size: 42px;
    line-height: 48px;
  }
  #grid-top #new .ratio-wrap .ratio a span {
    font-size: 12px;
  }
  #grid-top #ccc.tile-box .tile .ratio-wrap .ratio a {
    background-position: center top;
  }
  #grid-top #ccc.tile-box .tile .ratio-wrap .ratio a strong {
    font-size: 36px;
    line-height: 42px;
  }
  #grid-top #ccc.tile-box .tile .ratio-wrap .ratio a span {
    font-size: 12px;
    padding-top: 5px;
  }
  #grid-top #shops div.ratio-wrap {
    height: 200px;
  }
  #grid-top #shops h3 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  #grid-top #shops .row {
    width: 33.333%;
  }
  #grid-top #shops .row .row:first-child {
    padding-top: 0;
  }
  #grid-top #shops .row select {
    height: 35px;
    width: 96%;
    font-size: 11px;
    letter-spacing: .1em;
    padding: 0 10px;
    line-height: 35px;
  }
  #grid-top #shops .row-big {
    width: 66.666%;
  }
  #grid-top #shops .row-big .col50 {
    width: 50%;
  }
  #grid-top #shops .ratio #submitForm {
    height: 35px;
    width: 96%;
    font-size: 14px;
  }
  #grid-top #shops .ratio form > a {
    padding-top: 10px;
    font-size: 10px;
  }
  #grid-top #shops .ratio form > a img {
    width: 12px;
    height: 12px;
    margin-right: 0;
  }
  #grid-top #shops a {
    display: inline-block;
    margin-top: 10px;
    padding-top: 0;
  }
  #trends {
    padding-bottom: 15px;
  }
  #trends h2 {
    font-size: 30px;
  }
  #trends h2:before {
    left: 0;
    transform: translate(-50%, -100%);
    margin-left: -30px;
  }
  #trends h2:after {
    right: 0;
    transform: translate(50%, -100%);
    margin-right: -30px;
  }
  #grid-middle > div .ratio-wrap .ratio a .content h3 {
    font-size: 42px;
    line-height: 48px;
  }
  #grid-middle > div .ratio-wrap .ratio a .content p {
    font-size: 12px;
  }
  #grid-middle #left {
    position: relative;
  }
  #grid-middle div#lasocki div.ratio-wrap,
  #grid-middle div#club div.ratio-wrap {
    padding-bottom: 50%;
  }
  #grid-middle div#lasocki div.ratio-wrap .ratio a,
  #grid-middle div#club div.ratio-wrap .ratio a {
    background-size: cover;
  }
  #grid-middle div#kids {
    width: 100%;
  }
  #grid-middle div#kids div.ratio-wrap {
    padding-bottom: 155%;
  }
  #grid-middle div#eobuwie,
  #grid-middle div#bags-vertical {
    width: 100%;
    -webkit-transform: translate(100%, 0%) translateZ(0) scale(1, 1);
    -ms-transform: translate(100%, 0%);
    transform: translate(100%, 0%);
    -webkit-transform: translate(100%, 0%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(100%, 0%) translateZ(0) scale(1, 1);
    -o-transform: translate(100%, 0%) translateZ(0) scale(1, 1);
    -ms-transform: translate(100%, 0%) translateZ(0) scale(1, 1);
    transform: translate(100%, 0%) translateZ(0) scale(1, 1);
    position: absolute;
    right: 0;
    bottom: 0;
  }
  #grid-middle div#eobuwie div.ratio-wrap,
  #grid-middle div#bags-vertical div.ratio-wrap {
    padding-bottom: 55%;
  }
  #grid-middle div#eobuwie div.ratio-wrap div.ratio a.preload-background-image-loaded,
  #grid-middle div#bags-vertical div.ratio-wrap div.ratio a.preload-background-image-loaded {
    background-position: 50% 0;
  }
  #grid-middle div#eobuwie div.ratio-wrap div.ratio a div.content > p,
  #grid-middle div#bags-vertical div.ratio-wrap div.ratio a div.content > p {
    font-size: 20px;
    line-height: 24px;
  }
  #grid-middle div#eobuwie div.ratio-wrap div.ratio a div.content > p br,
  #grid-middle div#bags-vertical div.ratio-wrap div.ratio a div.content > p br {
    display: none;
  }
  #grid-middle div#eobuwie div.ratio-wrap div.ratio a div.content > p img,
  #grid-middle div#bags-vertical div.ratio-wrap div.ratio a div.content > p img {
    display: block;
    max-width: 70px;
    margin: 5px auto;
  }
  #grid-middle div#eobuwie div.ratio-wrap div.ratio a div.content .logo,
  #grid-middle div#bags-vertical div.ratio-wrap div.ratio a div.content .logo {
    max-width: 150px;
  }
  #grid-middle div#bags-vertical div.ratio-wrap div.ratio a div.content > p {
    font-size: 11px;
    line-height: 14px;
  }
  #grid-bottom #inspiration-1,
  #grid-bottom-2 #inspiration-1 {
    width: 75%;
  }
  #grid-bottom #inspiration-7,
  #grid-bottom-2 #inspiration-7 {
    float: right;
  }
  #grid-bottom #inspiration-4,
  #grid-bottom-2 #inspiration-4 {
    display: none;
  }
  #grid-bottom #inspiration-2,
  #grid-bottom-2 #inspiration-2,
  #grid-bottom #inspiration-3,
  #grid-bottom-2 #inspiration-3,
  #grid-bottom #inspiration-8,
  #grid-bottom-2 #inspiration-8,
  #grid-bottom #inspiration-9,
  #grid-bottom-2 #inspiration-9,
  #grid-bottom #inspiration-10,
  #grid-bottom-2 #inspiration-10 {
    width: 25%;
    margin: 0;
  }
  #grid-bottom,
  #grid-bottom-2,
  #grid-bottom-3 {
    width: 100%;
    padding: 0 10px;
  }
  #grid-bottom > div .ratio-wrap .ratio a .box-inner strong,
  #grid-bottom-2 > div .ratio-wrap .ratio a .box-inner strong,
  #grid-bottom-3 > div .ratio-wrap .ratio a .box-inner strong {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 4px;
  }
  #grid-bottom > div .ratio-wrap .ratio a .box-inner span,
  #grid-bottom-2 > div .ratio-wrap .ratio a .box-inner span,
  #grid-bottom-3 > div .ratio-wrap .ratio a .box-inner span {
    font-size: 12px;
  }
  #grid-bottom #inspiration-1,
  #grid-bottom-2 #inspiration-1 {
    width: 75%;
  }
  #grid-bottom #inspiration-1 .ratio-wrap,
  #grid-bottom-2 #inspiration-1 .ratio-wrap {
    padding-bottom: 65.8%;
  }
  #grid-bottom #inspiration-1 .ratio-wrap .ratio a,
  #grid-bottom-2 #inspiration-1 .ratio-wrap .ratio a {
    background-size: cover;
  }
  #grid-bottom #inspiration-4,
  #grid-bottom-2 #inspiration-4 {
    display: block;
    width: 25%;
  }
  #grid-bottom #inspiration-2,
  #grid-bottom-2 #inspiration-2 {
    width: 25%;
  }
  #grid-bottom #inspiration-3,
  #grid-bottom-2 #inspiration-3 {
    width: 50%;
    float: left;
  }
  #grid-bottom #inspiration-5,
  #grid-bottom-2 #inspiration-5 {
    display: block;
    width: 50%;
  }
  #grid-bottom #inspiration-6,
  #grid-bottom-2 #inspiration-6,
  #grid-bottom-3 #inspiration-6,
  #grid-bottom #inspiration-7,
  #grid-bottom-2 #inspiration-7,
  #grid-bottom-3 #inspiration-7,
  #grid-bottom #inspiration-9,
  #grid-bottom-2 #inspiration-9,
  #grid-bottom-3 #inspiration-9,
  #grid-bottom #inspiration-10,
  #grid-bottom-2 #inspiration-10,
  #grid-bottom-3 #inspiration-10 {
    width: 25%;
    float: left;
  }
  #grid-bottom #inspiration-8,
  #grid-bottom-2 #inspiration-8,
  #grid-bottom-3 #inspiration-8 {
    width: 50%;
    margin: 0;
    float: right;
  }
  #campain {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 300px;
  }
  #campain .cover .center {
    padding: 0 10px;
  }
  #campain .cover .center h3 {
    font-size: 45px;
    line-height: 48px;
    padding-bottom: 20px;
  }
  #campain .cover .center ul {
    max-width: 100%;
  }
  #campain .cover .center ul li {
    margin: 5px;
  }
  #campain .cover .center ul li a {
    font-size: 14px;
    padding: 15px 10px;
    letter-spacing: .2em;
  }
  #campain .cover .center img {
    max-width: 100px;
  }
}
@media (max-width: 680px) {
  #grid-top div#new .ratio-wrap .ratio a .box-inner strong,
  #grid-top div#ccc .ratio-wrap .ratio a .box-inner strong {
    font-size: 28px;
    letter-spacing: 6px;
  }
  #grid-top #ccc .tile div.ratio-wrap div.ratio a span.box-inner strong {
    font-size: 26px;
    line-height: 22px;
  }
  #grid-middle div#left div.ratio-wrap div.ratio a div.content h3,
  #grid-middle div#right div.ratio-wrap div.ratio a div.content h3 {
    font-size: 28px;
    letter-spacing: 6px;
  }
  #grid-middle div#left div#eobuwie div.ratio-wrap div.ratio a div.content p,
  #grid-middle div#right div#eobuwie div.ratio-wrap div.ratio a div.content p {
    font-size: 18px;
    line-height: 22px;
  }
  #grid-middle div#left div#eobuwie div.ratio-wrap div.ratio a div.content p img,
  #grid-middle div#right div#eobuwie div.ratio-wrap div.ratio a div.content p img {
    max-width: 50px;
  }
  #grid-middle div#left div#eobuwie div.ratio-wrap div.ratio a div.content img.logo,
  #grid-middle div#right div#eobuwie div.ratio-wrap div.ratio a div.content img.logo {
    max-width: 110px;
  }
}
@media (max-width: 550px) {
  #grid-top #ccc .tile div.ratio-wrap div.ratio a span.box-inner strong {
    font-size: 18px;
  }
  #campain {
    height: auto;
    margin: 15px 0 0 0;
  }
  #campain .cover .center {
    position: static;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
    padding: 25px 0;
  }
  #campain .cover .center h3 {
    letter-spacing: 6px;
    font-size: 43px;
  }
  #campain .cover .center ul {
    display: inline-block;
    padding: 0 10px;
  }
  #campain .cover .center ul li {
    width: 80%;
    margin: 5px auto;
  }
  #campain .cover .center ul li a {
    padding: 12px 10px;
    letter-spacing: 3px;
  }
}
@media (max-width: 480px) {
  #wrap-home #owl-ratio {
    padding-bottom: 0;
    height: 320px;
    margin-bottom: 50px;
  }
  #grid-top {
    padding: 0;
  }
  #grid-top #ccc {
    width: 100%;
  }
  #grid-top #ccc .tile {
    padding-bottom: 0;
  }
  #grid-top #ccc .tile div.ratio-wrap div.ratio a span.box-inner strong {
    font-size: 42px;
    line-height: 38px;
    letter-spacing: 6px;
  }
  #grid-top div#new,
  #grid-top div#sale {
    width: 100%;
    padding-bottom: 0;
  }
  #grid-top div#new div.ratio-wrap div.ratio a,
  #grid-top div#sale div.ratio-wrap div.ratio a {
    background-position: center top;
  }
  #grid-top div#new div.ratio-wrap div.ratio a span.box-inner strong,
  #grid-top div#sale div.ratio-wrap div.ratio a span.box-inner strong {
    font-size: 42px;
    letter-spacing: 6px;
    line-height: 42px;
  }
  #grid-top #shops {
    margin: 40px 0 80px 0;
  }
  #grid-top #shops div.ratio-wrap {
    height: auto;
  }
  #grid-top #shops div.ratio-wrap .ratio {
    position: static;
  }
  #grid-top #shops div.ratio-wrap .ratio form {
    position: static;
    -webkit-transform: translateY(0) translateZ(0) scale(1, 1);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-backface-visibility: hidden;
  }
  #grid-top #shops div.ratio-wrap .ratio form h3 {
    margin-bottom: 40px;
  }
  #grid-top #shops div.row-big div.col50 {
    width: 100%;
  }
  #grid-top #shops div.row-big div.col50 select {
    width: 80%;
    margin-bottom: 20px;
  }
  #grid-top #shops div.row #submitForm {
    width: 80%;
    margin-top: 0;
    font-size: 14px;
    letter-spacing: 6px;
  }
  #trends {
    padding-bottom: 30px;
  }
  #trends h2 {
    font-size: 40px;
    padding: 0 20px;
  }
  #trends h2:after {
    display: none;
  }
  #trends h2:before {
    left: 50%;
    top: -40px;
    margin-left: 0;
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  }
  #grid-middle div#left div.ratio-wrap div.ratio a div.content h3,
  #grid-middle div#right div.ratio-wrap div.ratio a div.content h3 {
    font-size: 42px;
  }
  #ternds h2 {
    padding: 20px 0 0 0;
    line-height: 48px;
  }
  #ternds h2:before {
    top: -20px;
    -webkit-transform: translate(-50%, - 100%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, - 100%);
    transform: translate(-50%, - 100%);
    -webkit-transform: translate(-50%, - 100%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, - 100%) translateZ(0) scale(1, 1);
    -o-transform: translate(-50%, - 100%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, - 100%) translateZ(0) scale(1, 1);
    transform: translate(-50%, - 100%) translateZ(0) scale(1, 1);
    margin-left: 0;
    left: 50%;
  }
  #ternds h2:after {
    display: none;
  }
  #campain .cover .center ul li {
    width: 100%;
  }
  #campain .cover .center ul li a {
    letter-spacing: 2px;
  }
  #grid-middle {
    padding: 0;
  }
  #grid-middle #left,
  #grid-middle #right {
    width: 100%;
  }
  #grid-middle #left div.ratio-wrap div.ratio,
  #grid-middle #right div.ratio-wrap div.ratio {
    padding: 10px 10px 0 10px;
  }
  #grid-middle #left div.ratio-wrap div.ratio a .content p,
  #grid-middle #right div.ratio-wrap div.ratio a .content p {
    padding: 15px 20px 0;
  }
  #grid-middle #left #eobuwie,
  #grid-middle #right #eobuwie {
    width: 100%;
    position: static;
    -webkit-transform: none translateZ(0) scale(1, 1);
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
  }
  #grid-middle #left #eobuwie .ratio-wrap .ratio a,
  #grid-middle #right #eobuwie .ratio-wrap .ratio a {
    background-position: top center;
  }
  #inspiration-grid {
    padding: 10px;
    zoom: 1;
  }
  #inspiration-grid:before {
    content: '';
    display: block;
  }
  #inspiration-grid:after {
    content: '';
    display: table;
    clear: both;
  }
  #grid-bottom #inspiration-1,
  #grid-bottom-2 #inspiration-1,
  #grid-bottom-3 #inspiration-1,
  #grid-bottom #inspiration-3,
  #grid-bottom-2 #inspiration-3,
  #grid-bottom-3 #inspiration-3,
  #grid-bottom #inspiration-4,
  #grid-bottom-2 #inspiration-4,
  #grid-bottom-3 #inspiration-4,
  #grid-bottom #inspiration-5,
  #grid-bottom-2 #inspiration-5,
  #grid-bottom-3 #inspiration-5,
  #grid-bottom #inspiration-7,
  #grid-bottom-2 #inspiration-7,
  #grid-bottom-3 #inspiration-7,
  #grid-bottom #inspiration-8,
  #grid-bottom-2 #inspiration-8,
  #grid-bottom-3 #inspiration-8,
  #grid-bottom #inspiration-10,
  #grid-bottom-2 #inspiration-10,
  #grid-bottom-3 #inspiration-10 {
    display: none;
  }
  #grid-bottom,
  #grid-bottom-2,
  #grid-bottom-3 {
    float: left;
    width: 33.333%;
    padding: 0;
  }
  #grid-bottom #inspiration-2 .ratio-wrap .ratio a,
  #grid-bottom-2 #inspiration-2 .ratio-wrap .ratio a,
  #grid-bottom-3 #inspiration-2 .ratio-wrap .ratio a {
    background-size: 40px;
  }
  #grid-bottom #inspiration-2,
  #grid-bottom-2 #inspiration-2,
  #grid-bottom-3 #inspiration-2,
  #grid-bottom #inspiration-6,
  #grid-bottom-2 #inspiration-6,
  #grid-bottom-3 #inspiration-6,
  #grid-bottom #inspiration-9,
  #grid-bottom-2 #inspiration-9,
  #grid-bottom-3 #inspiration-9 {
    width: 100%;
    padding: 10px;
  }
  #grid-bottom #inspiration-2 .ratio-wrap .ratio a .box-cover .box-inner img,
  #grid-bottom-2 #inspiration-2 .ratio-wrap .ratio a .box-cover .box-inner img,
  #grid-bottom-3 #inspiration-2 .ratio-wrap .ratio a .box-cover .box-inner img,
  #grid-bottom #inspiration-6 .ratio-wrap .ratio a .box-cover .box-inner img,
  #grid-bottom-2 #inspiration-6 .ratio-wrap .ratio a .box-cover .box-inner img,
  #grid-bottom-3 #inspiration-6 .ratio-wrap .ratio a .box-cover .box-inner img,
  #grid-bottom #inspiration-9 .ratio-wrap .ratio a .box-cover .box-inner img,
  #grid-bottom-2 #inspiration-9 .ratio-wrap .ratio a .box-cover .box-inner img,
  #grid-bottom-3 #inspiration-9 .ratio-wrap .ratio a .box-cover .box-inner img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 35px;
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  }
  #footer {
    float: left;
    width: 100%;
  }
  #footer .bg--gray {
    padding-top: 45px;
  }
}
@media (max-width: 380px) {
  #grid-bottom-3 #inspiration-9 a {
    background-size: 60px;
  }
  #grid-top #ccc .tile div.ratio-wrap div.ratio a span.box-inner strong {
    font-size: 32px;
    letter-spacing: 5px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1200px) {
  #owl-ratio #home-slider {
    min-height: 1px;
  }
  #owl-ratio #home-slider .slide section {
    max-width: 300px;
    margin-top: -120px;
  }
  #owl-ratio #home-slider .slide section a {
    width: 100%;
  }
  #owl-ratio #home-slider .slide img {
    display: inline;
  }
  #owl-ratio #home-slider .slide p {
    color: #FFF;
    padding: 30px 0;
  }
  #owl-ratio #home-slider .tomato {
    background-color: tomato;
  }
}
@media only screen and (max-width: 1000px) {
  #wrap-home .owl-pagination .owl-page span {
    width: 14px;
    height: 14px;
  }
  #wrap-home .owl-pagination .owl-page.active span {
    width: 22px;
    height: 22px;
  }
}
@media only screen and (max-width: 990px) {
  #owl-ratio {
    padding-bottom: 41%;
    background-color: #FFF;
  }
  #owl-ratio #home-slider .owl-controls {
    margin-top: 20px;
  }
  #owl-ratio #home-slider .owl-controls .owl-buttons {
    display: none;
  }
  #wrap-home .owl-pagination {
    position: relative;
    bottom: 0;
  }
  #wrap-home .owl-pagination .owl-page span {
    border-color: #ff3300;
  }
  #owl-ratio #home-slider .slide {
    position: relative;
    padding-top: 37%;
  }
  #owl-ratio #home-slider .slide > img {
    position: absolute;
    top: 0;
    bottom: 0;
    width: auto;
    height: 100%;
  }
}
@media only screen and (max-width: 850px) {
  #owl-ratio {
    padding-bottom: 42%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 899px) {
  #owl-ratio #home-slider {
    min-height: 1px;
  }
  #owl-ratio #home-slider .slide section {
    max-width: 240px;
    margin-top: -110px;
  }
  #owl-ratio #home-slider .slide section a {
    padding: 10px 0;
    width: 100%;
    font-size: 16px;
  }
  #owl-ratio #home-slider .slide img {
    display: inline;
  }
  #owl-ratio #home-slider .slide p {
    color: #FFF;
    padding: 15px 0;
  }
  #owl-ratio #home-slider .tomato {
    background-color: tomato;
  }
  #owl-ratio #home-slider .fw-2015 section {
    margin-top: -50px;
  }
}
@media only screen and (max-width: 899px) {
  #owl-ratio #home-slider {
    min-height: 1px;
  }
  #owl-ratio #home-slider .owl-buttons {
    bottom: 15px;
    right: 15px;
  }
  #owl-ratio #home-slider .owl-buttons .owl-prev {
    width: 40px;
    height: 40px;
  }
  #owl-ratio #home-slider .owl-buttons .owl-next {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 700px) {
  #owl-ratio {
    padding-bottom: 360px;
  }
  #owl-ratio #home-slider .slide {
    height: 320px;
    padding-top: 320px;
  }
  #owl-ratio #home-slider .slide section {
    width: 100%;
    max-width: none;
    left: 0;
    bottom: 0;
    top: 50px;
    margin: 0;
    padding: 0 15px;
  }
  #owl-ratio #home-slider .slide section img {
    width: auto;
    height: auto;
    margin: 0 auto;
    max-width: 80%;
  }
  #owl-ratio #home-slider .slide section a {
    display: block;
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    width: auto;
    padding: 15px 10px;
  }
}
/*@media only screen and (max-width: 420px) {

	#owl-ratio #home-slider .slide {
		position: relative;

		section {
			top: 10px;
			bottom: 0;
			left: 15px;
			margin: 0;
			text-align: left;

			img {
				height: 40px; width: auto;
			}

			a {
				position: absolute;
				bottom: 15px;
				width: auto;
				padding: 13px 5px;
				font-size: 12px;
				letter-spacing: 2px;
			}
			p {
				display: none;
			}
		}
	}
}*/
@media only screen and (max-width: 1025px) {
  #owl-ratio #home-slider {
    min-height: 1px;
  }
  #owl-ratio #home-slider .slide p {
    color: #FFF;
    padding: 15px 0;
  }
}
@media (max-width: 1200px) {
  .wrap-narrow {
    padding: 0 2%;
  }
}
@media (max-width: 1024px) {
  #category-sidebar {
    width: 30%;
  }
  #list-category {
    width: 70%;
  }
  #list-category ul li {
    width: 50%;
    float: left;
    display: block;
    clear: none;
  }
  #list-category ul li > a,
  #list-category ul li > .list-item__inner {
    height: 310px;
  }
  #list-category ul li:nth-child(3n+1) {
    clear: none;
  }
  #list-category ul li.fix {
    margin-bottom: 0;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
    clear: none;
  }
  #list-category ul li.insert a .thumb.ratio-wrap {
    padding-bottom: 0;
    height: 100%;
  }
  #list-category ul li.list-item--full-width {
    width: 100%;
  }
  #list-category ul li.list-item--full-width.list-item--full-width--adidas-map #map-container,
  #list-category ul li.list-item--full-width.list-item--full-width--puma-map #map-container {
    display: none;
  }
  #list-category ul li.list-item--full-width.list-item--full-width--adidas-map .content .content__inner,
  #list-category ul li.list-item--full-width.list-item--full-width--puma-map .content .content__inner {
    height: 310px;
  }
  #list-category ul li.list-item--full-width.list-item--full-width--adidas-map .content .content__bg,
  #list-category ul li.list-item--full-width.list-item--full-width--puma-map .content .content__bg {
    display: block;
  }
  #list-category ul li.list-item--full-width.list-item--full-width--sale .list-item__inner {
    background-position: 100%;
  }
  #list-category ul li.list-item--full-width .list-item__inner .content {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 400px;
    text-align: center;
    width: 100%;
  }
  #list-category ul li.list-item--full-width .thumb.ratio-wrap {
    padding-bottom: 85%;
  }
  #list-category ul li.list-item--full-width .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio {
    background: none !important;
    background-size: 101%;
  }
  #list-category ul li.list-item--small {
    clear: left;
  }
  #list-category ul li.list-item--small .sale .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content p {
    bottom: -90px;
  }
  #list-category ul li.list-item--vertical {
    float: right;
  }
  #list-category ul li.list-item--vertical .list-item__inner {
    height: 640px;
  }
  #list-category ul li.list-item--vertical .content {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 10px;
  }
}
@media (max-width: 768px) {
  #list-category ul li > a,
  #list-category ul li .list-item__inner {
    height: 280px;
  }
  #list-category ul li > a .thumb.ratio-wrap,
  #list-category ul li .list-item__inner .thumb.ratio-wrap {
    padding-bottom: 150px;
  }
  #list-category ul li.list-item--vertical .list-item__inner {
    height: 580px;
  }
  #list-category ul li.list-item--small .sale .ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
    font-size: 18px;
  }
  #list-category ul li.list-item--full-width > .list-item__inner .content h3 {
    font-size: 42px;
  }
}
@media (max-width: 640px) {
  #category-sidebar {
    width: 100%;
    max-width: none;
    padding: 40px 5%;
  }
  #category-sidebar .sidebar__content .list__selected li a {
    height: 50px;
    line-height: 50px;
  }
  #category-sidebar .sidebar__content .list__choose li {
    float: left;
    width: 100%;
    margin-bottom: 10px;
  }
  #list-category {
    width: 100%;
    padding: 0 5%;
  }
  #list-category ul li .thumb.ratio-wrap {
    padding-bottom: 50%;
  }
  #list-category ul li .thumb.ratio-wrap .ratio .in-ratio-wrap {
    padding-bottom: 45%;
  }
  #list-category ul li.insert .thumb.ratio-wrap {
    padding-bottom: 50%;
  }
  #list-category ul li.insert .thumb.ratio-wrap .ratio .in-ratio-wrap {
    padding-bottom: 50%;
  }
  #list-category ul li.insert .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content a {
    letter-spacing: 2px;
    line-height: 30px;
  }
  #list-category ul li.list-item--vertical {
    width: 50%;
  }
  #list-category ul li.list-item--full-width .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio {
    background-size: cover;
  }
  #list-category ul li.list-item--full-width.list-item--full-width--adidas-map .content .content__bg,
  #list-category ul li.list-item--full-width.list-item--full-width--puma-map .content .content__bg {
    display: none;
  }
  #list-category ul li.list-item--full-width.list-item--full-width--adidas-map .content .content__inner,
  #list-category ul li.list-item--full-width.list-item--full-width--puma-map .content .content__inner {
    width: 100%;
  }
  #list-category ul li.list-item--small {
    width: 50%;
    margin-bottom: 0;
  }
  #list-category ul li.list-item--small .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
    font-size: 22px;
  }
  #list-category ul li.list-item--small .sale .ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
    font-size: 14px;
  }
  #list-category .jsNoProducts {
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  #list-category ul li {
    padding: 10px 0;
  }
  #list-category ul li > a,
  #list-category ul li .list-item__inner {
    height: 240px;
  }
  #list-category ul li > a .thumb.ratio-wrap,
  #list-category ul li .list-item__inner .thumb.ratio-wrap {
    padding-bottom: 105px;
  }
  #list-category ul li.list-item--vertical {
    padding-left: 10px;
  }
  #list-category ul li.list-item--vertical .list-item__inner {
    height: 500px;
  }
  #list-category ul li.list-item--full-width .list-item__inner {
    height: 260px;
  }
  #list-category ul li.list-item--full-width .list-item__inner .content h3 {
    font-size: 35px;
  }
  #list-category ul li.list-item--full-width .list-item__inner .content a {
    font-size: 18px;
    max-width: 255px;
  }
  #list-category ul li.list-item--full-width.list-item--full-width.list-item--full-width--adidas-map .content .content__inner,
  #list-category ul li.list-item--full-width.list-item--full-width.list-item--full-width--puma-map .content .content__inner {
    height: 260px;
  }
  #list-category ul li.list-item--small .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content h3 {
    letter-spacing: 1px;
    top: -95px;
  }
  #list-category ul li.list-item--small .thumb.ratio-wrap .ratio .in-ratio-wrap .in-ratio .content p {
    letter-spacing: 1px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 1660px) {
}
@media only screen and (max-width: 500px) {
  .list {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 1601px) {
  .list ul > li {
    width: 33.333%;
    clear: none;
  }
}
@media only screen and (min-width: 1301px) and (max-width: 1600px) {
  .list ul > li {
    width: 33.333%;
    clear: none;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1300px) {
  .list ul > li {
    width: 33.333%;
    clear: none;
  }
}
@media only screen and (min-width: 801px) and (max-width: 1000px) {
  .list ul > li {
    width: 33.333%;
    clear: none;
  }
  .list ul > li:nth-child(4n+1) {
    clear: left;
  }
}
@media only screen and (min-width: 501px) and (max-width: 800px) {
  .list ul > li {
    width: 33.33333%;
    clear: none;
  }
  .list ul > li:nth-child(3n+1) {
    clear: left;
  }
}
@media only screen and (max-width: 500px) {
  .list ul > li {
    width: 50%;
    clear: none;
  }
  .list ul > li:nth-child(2n+1) {
    clear: left;
  }
}
@media only screen and (max-width: 720px) {
  .list ul > li > a .icon-360 {
    display: none !important;
  }
}
@media only screen and (min-width: 320px) {
  #wrap-category.hits #list-category {
    padding-bottom: 60px;
  }
  #wrap-category.hits #bottom-bar-category {
    display: none;
  }
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    z-index: 1;
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-color: #eee;
    background-color: #FFF;
    display: none;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap > ul.select-list > li,
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap ul.select-list-level2 > li {
    display: block;
    border-top: 1px solid #eee;
  }
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap > ul.select-list > li a,
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap ul.select-list-level2 > li a {
    display: block;
    padding: 16px;
    text-transform: uppercase;
    background-color: #FFF;
    color: #000;
    font-size: 11px;
    font-family: montserratregular, arial, sans-serif;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap > ul.select-list > li a.has-children,
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap ul.select-list-level2 > li a.has-children {
    position: relative;
    color: #000;
  }
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap > ul.select-list > li a.has-children:hover,
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap ul.select-list-level2 > li a.has-children:hover {
    color: #f8541f;
  }
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap > ul.select-list > li a:hover,
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap ul.select-list-level2 > li a:hover {
    color: #f8541f;
  }
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap > ul.select-list > li.title,
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap ul.select-list-level2 > li.title {
    display: none;
  }
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap > ul.select-list > li:nth-child(2),
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap ul.select-list-level2 > li:nth-child(2) {
    border-top: 0;
  }
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap > ul.select-list ul.select-list-level2 li,
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap ul.select-list-level2 ul.select-list-level2 li {
    display: block;
    border-top: 1px solid #eee;
  }
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap > ul.select-list ul.select-list-level2 li a,
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap ul.select-list-level2 ul.select-list-level2 li a {
    display: block;
    position: relative;
    padding: 16px 0 16px 32px;
    text-transform: uppercase;
    background-color: #FFF;
    color: #999999;
    font-size: 11px;
    font-family: montserratregular, arial, sans-serif;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap > ul.select-list ul.select-list-level2 li a:before,
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap ul.select-list-level2 ul.select-list-level2 li a:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    left: 16px;
    top: 19px;
    background-color: #afafaf;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap > ul.select-list ul.select-list-level2 li a:hover,
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap ul.select-list-level2 ul.select-list-level2 li a:hover {
    background-color: #fbfbfb;
    color: #f8541f;
  }
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap > ul.select-list ul.select-list-level2 li a:hover:before,
  #bottom-bar-category .bottom-bar > div.select > .select-list-wrap ul.select-list-level2 ul.select-list-level2 li a:hover:before {
    -ms-transform: scale(1.5, 1.5);
    /* IE 9 */
    -webkit-transform: scale(1.5, 1.5);
    /* Safari */
    transform: scale(1.5, 1.5);
    background-color: #f8541f;
  }
}
@media only screen and (max-width: 1300px) {
  #bottom-bar-category .bottom-bar > div.head {
    width: 20%;
  }
  #bottom-bar-category .bottom-bar > div.zoomer {
    display: none;
  }
  #bottom-bar-category .bottom-bar > div.select {
    width: 26.66666%;
  }
}
@media only screen and (max-width: 1000px) {
  #bottom-bar-category .bottom-bar > div.head,
  #bottom-bar-category .bottom-bar > div.zoomer {
    display: none;
  }
  #bottom-bar-category .bottom-bar > div.select {
    width: 33.33333%;
  }
}
@media only screen and (max-width: 740px) {
  #bottom-bar-category .bottom-bar > div.select {
    position: static;
  }
  #bottom-bar-category .bottom-bar > div.select > a.select-btn > span {
    display: none;
  }
}
@media only screen and (max-width: 1660px) {
  #related-content-wrap .list-wrap .list {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media only screen and (min-width: 1640px) {
  #wrap-product #product-head .prev-next-btns {
    display: none;
  }
}
@media (max-width: 1024px) {
  .product-inspiration-container .product-inspiration {
    width: 50%;
  }
  .product-inspiration-container .product-inspiration > div {
    width: 50%;
  }
  .product-inspiration-container .product-inspiration.product-inspiration--small {
    display: none;
  }
  .product-inspiration-container .product-inspiration.product-inspiration--big .item:nth-child(3),
  .product-inspiration-container .product-inspiration.product-inspiration--big .item:nth-child(6) {
    display: none;
  }
  .product-prev-next-animation > .prev-next-btns {
    top: 35px;
  }
}
@media only screen and (min-width: 941px) and (max-width: 1200px) {
  #wrap-product #product-head h1 {
    padding: 0 25px;
    max-width: 100%;
  }
  #wrap-product #product-head .wrap,
  #wrap-product #product-data .wrap {
    width: 50%;
  }
  #wrap-product #product-head .wrap .info .col,
  #wrap-product #product-data .wrap .info .col {
    padding-top: 10px;
  }
  #wrap-product #product-photos #photo {
    width: 70%;
    padding-bottom: 70%;
  }
}
@media only screen and (max-width: 940px) {
  #wrap-product #product-head h1 {
    font-size: 35px;
    margin: 48px 0 20px 0;
  }
  #wrap-product #product-head h1:before,
  #wrap-product #product-head h1:after {
    display: none;
  }
  #wrap-product #product-head,
  #wrap-product #product-data {
    width: 100%;
    float: none;
  }
  #wrap-product #product-head .wrap,
  #wrap-product #product-data .wrap {
    width: 90%;
  }
  #wrap-product #product-head .wrap .info .col,
  #wrap-product #product-data .wrap .info .col {
    margin: 0;
    padding: 10px;
  }
  #wrap-product #product-head .wrap .desc,
  #wrap-product #product-data .wrap .desc {
    margin-top: 5px;
  }
  #wrap-product #product-photos {
    width: 50%;
  }
  #wrap-product #product-sizes {
    width: 100%;
    position: static;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
    max-width: none;
    padding: 0;
  }
  #wrap-product #product-sizes .sizes {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #wrap-product #product-sizes .sizes > a {
    display: inline-block;
    margin: 0 10px 20px;
    float: none;
  }
  #wrap-product #product-sizes .sizes > a:nth-child(3n) {
    margin: 0 10px;
  }
  #wrap-product #product-sizes .sizes > a:nth-child(4n) {
    clear: none;
  }
  #wrap-product #product-variations {
    width: 25%;
    -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
    top: 0;
  }
  #access-popup.access-popup--product {
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    -webkit-transform: translate(0px, 0px) translateZ(0) scale(1, 1);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0px, 0px) translateZ(0) scale(1, 1);
    -o-transform: translate(0px, 0px) translateZ(0) scale(1, 1);
    -ms-transform: translate(0px, 0px) translateZ(0) scale(1, 1);
    transform: translate(0px, 0px) translateZ(0) scale(1, 1);
    max-width: none;
    position: absolute;
    background: #FFF;
  }
  #access-popup.access-popup--product #head-stores,
  #access-popup.access-popup--product #wrap-stores {
    padding: 0;
  }
  #access-popup.access-popup--product #head-stores h2 {
    line-height: 30px;
  }
  #access-popup.access-popup--product #head-stores h2:after,
  #access-popup.access-popup--product #head-stores h2:before {
    display: none;
  }
  #access-popup.access-popup--product #wrap-stores #side-bar .row {
    padding: 0 5%;
  }
  #access-popup.access-popup--product #wrap-stores #side-bar #sidebar-top ul li a {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 480px) {
  #related-content-wrap .list-wrap .list {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  #wrap-product #product-head .additional-info .item {
    margin-right: 8px;
    text-align: left;
  }
  #wrap-product #product-data .wrap {
    width: 100%;
  }
  #share-popup #head-share h2 {
    font-size: 24px;
    padding: 0 6px;
  }
}
@media (max-width: 768px) {
  #product-related {
    overflow: hidden;
    margin: 30px 0 60px 0;
  }
  #product-related .owl-carousel {
    width: 65%;
    margin: 0 auto;
  }
  #product-related .list-nav {
    position: absolute;
    top: 50%;
    left: 2%;
    right: 2%;
    -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
  }
  #product-related .list-nav .arrow-left,
  #product-related .list-nav .arrow-right {
    position: absolute !important;
    width: 45px !important;
    height: 45px !important;
  }
  .product-inspiration-container .product-inspiration {
    width: 100%;
  }
  .product-inspiration-container .product-inspiration.product-inspiration--small {
    display: block;
  }
  .product-inspiration-container .product-inspiration.product-inspiration--big .item:nth-child(3),
  .product-inspiration-container .product-inspiration.product-inspiration--big .item:nth-child(6) {
    display: block;
  }
  #wrap-product #product-head h1 {
    font-size: 20px;
    min-height: 40px;
    margin: 70px 0 20px 0;
  }
  #wrap-product #product-data {
    width: 100%;
    position: static;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
  }
  #wrap-product #product-data .info {
    padding: 0;
  }
  #wrap-product #product-data .info .col {
    width: 100%;
    text-align: center;
  }
  #wrap-product #product-photos {
    width: 100%;
    position: static;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
  }
  #wrap-product #product-variations {
    width: 100%;
    position: static;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
    -moz-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -o-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) translateZ(0) scale(1, 1);
    transform: translate(0, 0) translateZ(0) scale(1, 1);
  }
  #wrap-product #product-variations ul.same-model-list {
    text-align: center;
    margin-top: 20px;
  }
  #wrap-product #product-variations ul.same-model-list li {
    display: inline-block;
    margin: 0 10px;
  }
  #wrap-product .product-inspiration-container .product-inspiration-header h2:before,
  #wrap-product .product-inspiration-container .product-inspiration-header h2:after {
    display: none;
  }
}
@media only screen and (max-width: 720px) {
  #wrap-product #product-photos #photo .icon-360 {
    display: none !important;
  }
}
@media only screen and (max-width: 1600px) {
  #product-related .wrap-narrow-related {
    max-width: 1200px;
  }
}
@media only screen and (max-width: 1400px) {
  #product-related .wrap-narrow-related {
    max-width: 1000px;
  }
}
@media only screen and (max-width: 1200px) {
  #product-related .wrap-narrow-related {
    max-width: 100%;
  }
  #product-related .list-nav {
    text-align: center;
    padding-bottom: 20px;
  }
  #product-related .list-nav #related-scroll > a.arrow-left,
  #product-related .list-nav #related-scroll > a.arrow-right {
    position: relative;
    margin-top: 0px;
  }
  #product-related .list-nav #related-scroll > a.arrow-left {
    left: 0;
  }
  #product-related .list-nav #related-scroll > a.arrow-right {
    right: 0;
  }
}
@media only screen and (max-width: 1200px) {
  #wrap-campaign #campaign {
    padding-top: 0px;
  }
  #wrap-campaign #campaign .copy .content {
    padding: 0 40px;
  }
  #wrap-campaign #campaign .copy .content h3 {
    padding-top: 20%;
  }
  #wrap-campaign #video-section {
    display: none;
  }
}
@media only screen and (min-width: 440px) and (max-width: 900px) {
  #wrap-campaign #campaign {
    padding-top: 0px;
  }
  #wrap-campaign #campaign > div {
    padding: 15px 15px 0 15px;
  }
  #wrap-campaign #campaign .copy {
    width: 100%;
  }
  #wrap-campaign #campaign .copy .ratio-wrap {
    height: auto;
    padding-bottom: 40px;
  }
  #wrap-campaign #campaign .copy .content {
    padding: 0 80px;
  }
  #wrap-campaign #campaign .copy .content h3 {
    padding-top: 40px;
  }
  #wrap-campaign #campaign .photo {
    width: 100%;
  }
}
@media only screen and (max-width: 439px) {
  #wrap-campaign #campaign {
    padding-top: 0px;
  }
  #wrap-campaign #campaign > div {
    padding: 15px 15px 0 15px;
  }
  #wrap-campaign #campaign .copy {
    width: 100%;
  }
  #wrap-campaign #campaign .copy .ratio-wrap {
    height: auto;
    padding-bottom: 20px;
  }
  #wrap-campaign #campaign .copy .content {
    padding: 0 20px;
  }
  #wrap-campaign #campaign .copy .content h3 {
    padding-top: 20px;
    font-size: 30px;
  }
  #wrap-campaign #campaign .photo {
    width: 100%;
  }
}
@media only screen and (min-width: 1031px) and (max-width: 1260px) {
  #pressroom-content {
    padding: 0 60px;
  }
}
@media only screen and (min-width: 725px) and (max-width: 1030px) {
  #pressroom-content {
    width: 100%;
    padding: 0 160px;
    margin-bottom: 60px;
  }
  #pressroom-content h1 {
    padding: 60px 0 28px 0;
  }
  #pressroom-bg {
    display: none;
  }
}
@media only screen and (max-width: 724px) {
  #pressroom-content {
    width: 100%;
    padding: 0 60px;
    margin-bottom: 60px;
  }
  #pressroom-content h1 {
    padding: 60px 0 28px 0;
  }
  #pressroom-content h4 {
    padding-bottom: 20px;
  }
  #pressroom-content p {
    padding: 0 0 40px 0;
  }
  #pressroom-content .left {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
  }
  #pressroom-content .right {
    width: 100%;
    border-left: none;
    text-align: center;
    padding: 0;
  }
  #pressroom-content .right ul li {
    line-height: 40px;
  }
  #pressroom-content .right ul li a {
    margin: 10px 0;
    border: 1px solid #000;
    display: block;
    width: 100%;
  }
  #pressroom-content .right ul li a:hover:before {
    padding: 0 20px 0 0;
  }
  #pressroom-bg {
    display: none;
  }
}
@media only screen and (max-width: 2000px) {
  #wrap-club #left {
    width: 100%;
  }
  #wrap-club #left .content {
    margin: 0 auto;
    width: 100%;
  }
  #wrap-club #left #tab-1,
  #wrap-club #left #tab-2,
  #wrap-club #left #tab-3 {
    margin-bottom: 80px;
  }
  #wrap-club #left form {
    display: inline-block;
    max-width: 500px;
  }
  #wrap-club #right {
    display: block;
    width: 100%;
  }
  #wrap-club #right .news-cover {
    width: 800px;
    padding-bottom: 25%;
    margin: 0 auto;
  }
  #wrap-club #right .news-content {
    width: 800px;
    height: auto;
    padding-bottom: 80px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 800px) {
  #wrap-club #right {
    display: block;
    width: 100%;
  }
  #wrap-club #right .news-cover {
    width: 100%;
    padding-bottom: 35%;
  }
  #wrap-club #right .news-content {
    width: 100%;
    padding: 0 20px 120px 0px;
  }
  #wrap-club #right .controlls {
    position: absolute;
    width: 120px;
    height: 55px;
    top: 100%;
    left: 50%;
    margin-top: -80px;
    margin-left: -60px;
  }
  #wrap-club #right .controlls .arrow-left {
    margin-left: 0px;
  }
  #wrap-club #right .controlls .arrow-right {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 1366px) {
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--tests-bottom .ratio-wrap .ratio > div:hover .box-cover .box-inner a {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--position {
    width: 100%;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--tests-bottom {
    width: 100%;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--tests-bottom .ratio-wrap {
    padding-bottom: 64%;
    min-height: 608px;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--lasocki .ratio-wrap {
    padding-bottom: calc(47% - 10px);
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--new .ratio-wrap {
    padding-bottom: calc(47% - 12px);
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--lasocki,
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--new {
    width: 68%;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--fb,
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--insta {
    width: 32%;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--fb .ratio-wrap,
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--insta .ratio-wrap {
    padding-bottom: 100%;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .logo {
    top: 0;
    right: 11px;
    width: 90px;
    height: auto;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap .ratio > div .box-inner {
    right: 0;
    margin: 0 auto;
    max-width: 88%;
  }
}
@media only screen and (max-width: 1090px) {
  .club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__step {
    width: 215px;
  }
}
@media only screen and (max-width: 880px) {
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .logo {
    display: none;
  }
  .club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__step--center {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 768px) {
  .club-ccc #wrap-club .tiles__list .tile.tile--special-offers .ratio-wrap .ratio > a:not(.preload-background-image),
  .club-ccc #wrap-club .tiles__list .tile > div:not(.preload-background-image) {
    background-position-x: 88%;
  }
  .club-ccc #wrap-club .club-ccc__page .club-ccc__page-header {
    padding: 39px 5%;
  }
  .club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__step {
    width: 170px;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--fb .ratio-wrap .ratio > a,
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--insta .ratio-wrap .ratio > a {
    background-size: 35%;
  }
  .club-ccc #wrap-club .club-ccc__form {
    padding: 50px 16px;
  }
  .club-ccc #wrap-club .club-ccc__form .form__inner {
    max-width: 730px;
  }
}
@media only screen and (max-width: 615px) {
  .club-ccc #wrap-club .club-ccc__page .club-ccc__page-header {
    padding-bottom: 10px;
  }
  .club-ccc #wrap-club .club-ccc__page .club-ccc__page-header h4 {
    margin-bottom: 18px;
  }
  .club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__steps {
    margin-bottom: 0;
  }
  .club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__step {
    display: block;
    text-align: center;
    width: 100%;
    padding: 0 30px;
  }
  .club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__step--center {
    margin: 18px 0;
  }
  .club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__step--center::before,
  .club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .club-ccc__step--center::after {
    display: none;
  }
  .club-ccc #wrap-club .club-ccc__page .club-ccc__page-header .btns {
    margin-top: 26px;
  }
}
@media only screen and (max-width: 595px) {
  .club-ccc #wrap-club .tile--position {
    display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--position {
    padding: 10px;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--lasocki,
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--new,
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--fb,
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--insta {
    padding: 0;
    margin: 10px 0;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--lasocki,
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--new {
    width: 100%;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--fb,
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--insta {
    width: 50%;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--discounts,
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--tests {
    width: 100%;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--discounts .ratio-wrap,
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--tests .ratio-wrap {
    min-height: 262px;
  }
  .club-ccc #wrap-club .club-ccc__form {
    min-height: 1433px;
  }
  .club-ccc #wrap-club .club-ccc__form .club__content {
    padding: 50px 20px 120px;
  }
  .club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row .form__input {
    width: 100%;
  }
  .club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row .form__input--left,
  .club-ccc #wrap-club .club-ccc__form .club__content .club__form .form__row .form__input--right {
    padding: 0;
  }
  .club-ccc #wrap-club .club-ccc__form .form__tabs .tabs {
    flex-direction: column;
  }
  .club-ccc #wrap-club .club-ccc__form .form__tabs .tabs__item {
    width: 100%;
  }
  .club-ccc #wrap-club .club-ccc__form .form__tabs .tabs__item--or {
    display: none;
  }
  .club-ccc #wrap-club .club-ccc__form input[type=text],
  .club-ccc #wrap-club .club-ccc__form input[type=email],
  .club-ccc #wrap-club .club-ccc__form input[type=tel] {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
@media only screen and (max-width: 565px) {
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap {
    min-height: 714px;
  }
}
@media only screen and (max-width: 464px) {
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap .ratio > div .box-inner strong,
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap .ratio > div .box-inner strong span {
    font-size: 30px;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap .ratio > div .box-inner strong {
    line-height: 36px;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap .ratio > div .box-inner p {
    margin: 19px 0;
    font-size: 14px;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > div .box-cover .box-inner strong {
    line-height: 38px;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > div .box-cover .box-inner span,
  .club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > div .box-cover .box-inner .btn {
    font-size: 15px;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > div .box-cover .box-inner .btn {
    padding: 14px 48px;
  }
  .club-ccc #wrap-club .club-ccc__page .tiles .tile .ratio-wrap .ratio > div .box-cover .box-inner .btn-mg {
    margin-top: 18px;
  }
}
@media only screen and (max-width: 350px) {
  .club-ccc #wrap-club .club-ccc__page .tiles .tile--my-shop .ratio-wrap .ratio > div .box-inner {
    max-width: 100%;
  }
  .club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="text"],
  .club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="tel"],
  .club-ccc #wrap-club .club-ccc__form .club__content .club__form input[type="email"] {
    text-align: center;
    padding-left: 0;
  }
}
@media only screen and (min-width: 1120px) and (max-width: 1600px) {
  #wrap-contact #contact-content {
    width: 60%;
    padding: 0 50px;
  }
  #wrap-contact #map-container {
    width: 40%;
  }
  #wrap-contact #map-container #faq-content {
    padding: 0 38px 0 40px;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1120px) {
  #wrap-contact #contact-content {
    width: 100%;
  }
  #wrap-contact #contact-content #rwd-container {
    display: inline-block;
    max-width: 800px;
    padding: 0 80px 80px 80px;
  }
  #wrap-contact #contact-content h1 {
    padding: 80px 0 28px 0;
  }
  #wrap-contact #map-container {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  #wrap-contact #contact-content {
    width: 100%;
    padding: 0 60px;
  }
  #wrap-contact #contact-content #rwd-container {
    display: inline-block;
    max-width: 800px;
    padding: 0 40px 40px 40px;
  }
  #wrap-contact #contact-content h1 {
    padding: 50px 0 28px 0;
  }
  #wrap-contact #contact-content p {
    padding: 0 0 30px 0;
  }
  #wrap-contact #contact-content .left {
    width: 100%;
    text-align: center;
    padding-bottom: 40px;
  }
  #wrap-contact #contact-content .right {
    width: 100%;
    border-left: 0px solid #bdbdbd;
    text-align: center;
    padding: 0;
  }
  #wrap-contact #contact-content .right input {
    width: 345px;
  }
  #wrap-contact #contact-content .right select {
    width: 345px;
  }
  #wrap-contact #contact-content .right textarea {
    width: 345px;
  }
  #wrap-contact #contact-content .right #submitForm {
    width: 345px;
  }
  #wrap-contact #map-container {
    display: none;
  }
}
@media only screen and (max-width: 559px) {
  #wrap-contact #contact-content {
    padding: 0;
  }
  #wrap-contact #contact-content .right {
    margin-bottom: 20px;
  }
  #wrap-contact #contact-content .right input {
    width: 100%;
  }
  #wrap-contact #contact-content .right select {
    width: 100%;
  }
  #wrap-contact #contact-content .right textarea {
    width: 100%;
  }
  #wrap-contact #contact-content .right #submitForm {
    width: 100%;
  }
  #wrap-contact #map-container {
    display: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1060px) {
  #wrap-career ul,
  #wrap-career li,
  #wrap-career p,
  #wrap-career span,
  #wrap-career time {
    font-size: 14px;
    color: #939393;
    line-height: 20px;
    font-family: montserratlight, arial, sans-serif;
  }
  #wrap-career h4 {
    font-size: 20px;
    padding-bottom: 20px;
  }
  #wrap-career .left {
    width: 100%;
    padding: 0 60px;
  }
  #wrap-career .left select {
    display: block;
  }
  #wrap-career .left ul {
    display: none;
  }
  #wrap-career .right {
    width: 100%;
    padding: 40px 60px 0 60px;
  }
  #wrap-career .right .job-conditions {
    padding: 20px 40px;
  }
  #wrap-career .right #submitForm {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #wrap-career .career-header-info__title {
    font-size: 65px;
    letter-spacing: 15px;
  }
  #wrap-career .career-header-info__description {
    font-size: 16px;
  }
  #wrap-career .career-header__image {
    max-height: 600px;
  }
  #wrap-career .career-description {
    padding: 57px 20px 0;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1224px) {
  #wrap-offer #nav-bottom li a {
    font-size: 14px;
    color: #FFF;
    padding: 0 20px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 900px) {
  #wrap-offer .controlls {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    bottom: -50px;
  }
  #wrap-offer .controlls .arrow-left,
  #wrap-offer .controlls .arrow-right {
    position: absolute;
    display: block;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #wrap-offer .controlls .arrow-left.prev,
  #wrap-offer .controlls .arrow-right.prev {
    left: 50%;
    margin-left: -80px;
  }
  #wrap-offer .controlls .arrow-left.next,
  #wrap-offer .controlls .arrow-right.next {
    right: 50%;
    margin-right: -80px;
  }
  #wrap-offer .wrap-narrow {
    top: 0px;
  }
  #wrap-offer .wrap-narrow #offer-slider {
    width: 100%;
  }
  #wrap-offer #nav-bottom {
    margin-top: 100px;
    position: static;
    height: auto;
  }
  #wrap-offer #nav-bottom ul {
    width: 100%;
    padding: 10px 0;
  }
  #wrap-offer #nav-bottom li {
    clear: both;
    height: 100%;
    width: 100%;
    padding: 0 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 599px) {
  #wrap-offer .controlls {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    bottom: -50px;
  }
  #wrap-offer .controlls .arrow-left,
  #wrap-offer .controlls .arrow-right {
    position: absolute;
    display: block;
    top: 0;
    width: 44px;
    height: 44px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #wrap-offer .controlls .arrow-left.prev,
  #wrap-offer .controlls .arrow-right.prev {
    left: 50%;
    margin-left: -52px;
  }
  #wrap-offer .controlls .arrow-left.next,
  #wrap-offer .controlls .arrow-right.next {
    right: 50%;
    margin-right: -52px;
  }
  #wrap-offer .wrap-narrow {
    top: 0px;
  }
  #wrap-offer .wrap-narrow #offer-slider {
    width: 100%;
  }
  #wrap-offer #nav-bottom {
    margin-top: 80px;
    position: static;
    height: auto;
  }
  #wrap-offer #nav-bottom ul {
    width: 100%;
    padding: 10px 0;
  }
  #wrap-offer #nav-bottom li {
    clear: both;
    height: 100%;
    width: 100%;
    padding: 0 10px;
  }
  #wrap-offer #nav-bottom li a {
    font-size: 14px;
    line-height: 42px;
    padding: 0 30px;
  }
}
@media only screen and (max-height: 768px) and (min-width: 900px) {
  #wrap-offer .wrap-narrow {
    top: 20px;
  }
}
@media only screen and (min-width: 1201px) {
  #wrap-video .cta {
    position: absolute;
    top: 0%;
    left: 50%;
    margin-left: -150px;
    margin-top: -80px;
    width: 300px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
  }
  #wrap-video .cta .btns {
    color: #FFF;
    margin: 20px 0;
    cursor: pointer;
    border: 1px solid #FFF;
    background-color: rgba(255, 255, 255, 0);
  }
  #wrap-video .cta .btns:hover {
    color: #000;
    background-color: #ffffff;
  }
  #wrap-video .cta.show {
    display: block;
    top: 50%;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
  }
  #wrap-video #video-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
  }
  #wrap-video #video-section .btn-close-video {
    position: fixed;
    top: 74px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: 1px #FFF solid;
    background: transparent url(../img/close-cross.png) 50% 50% no-repeat;
    background-size: 14px 14px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
  }
  #wrap-video #video-section .btn-close-video:hover {
    background: transparent url(../img/close-cross-black.png) 50% 50% no-repeat;
    background-color: #FFF;
    background-size: 14px 14px;
  }
  #wrap-video #video-section .btn-close-video:hover .icon {
    background-position: -20px 0px;
  }
  #wrap-video #video-section video,
  #wrap-video #video-section canvas {
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  #wrap-video #video-section video {
    width: 100%;
    position: absolute;
  }
  #wrap-video #video-section #box-cover {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #wrap-video #video-section .show-cover {
    -moz-opacity: 0.7 !important;
    -khtml-opacity: 0.7 !important;
    -webkit-opacity: 0.7 !important;
    opacity: 0.7 !important;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70) !important;
    filter: alpha(opacity=70) !important;
  }
  #wrap-video #video-section #play-btn {
    position: absolute;
    top: 20%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    background-image: url(../img/video/video-play.png);
    background-size: 100px 100px;
    background-position: center;
    background-repeat: no-repeat;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #wrap-video #video-section .show-btn {
    cursor: pointer;
    top: 50% !important;
    -moz-opacity: 1 !important;
    -khtml-opacity: 1 !important;
    -webkit-opacity: 1 !important;
    opacity: 1 !important;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100) !important;
    filter: alpha(opacity=100) !important;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #wrap-video #video-section:hover .btn-close-video {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 1200px) {
  #wrap-video .cta {
    display: none;
  }
  #wrap-video #video-section {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background-color: #000;
  }
  #wrap-video #video-section a.btn-close-video {
    position: absolute;
    top: 26px;
    right: 26px;
    width: 30px;
    height: 30px;
    border: 1px #FFF solid;
    background: transparent url(../img/close-cross.png) 50% 50% no-repeat;
    background-size: 14px 14px;
  }
  #wrap-video #video-section video,
  #wrap-video #video-section canvas {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  #wrap-video #video-section video {
    height: 100%;
    position: absolute;
  }
  #wrap-video #video-section #box-cover {
    display: none;
  }
  #wrap-video #video-section .show-cover {
    display: none;
  }
  #wrap-video #video-section #play-btn {
    display: none;
  }
  #wrap-video #video-section .show-btn {
    display: none;
  }
}
@media only screen and (min-width: 1201px) {
  #wrap-gallery #desktop {
    display: block;
  }
  #wrap-gallery #mobile {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  #wrap-gallery #desktop {
    display: none;
  }
  #wrap-gallery #mobile {
    display: block;
  }
}
@media only screen and (min-width: 991px) {
  /** DEFAULT STORES */
  #wrap-stores {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    height: 800px;
  }
  #wrap-stores p,
  #wrap-stores span,
  #wrap-stores time {
    font-size: 12px;
    color: #939393;
    line-height: 20px;
    font-family: montserratlight, arial, sans-serif;
  }
  #wrap-stores #side-bar {
    position: absolute;
    width: 420px;
    top: 30px;
    bottom: 0;
    left: 0;
    text-align: center;
  }
  #wrap-stores #side-bar #geo-localization a {
    font-size: 14px;
    padding-bottom: 30px;
    cursor: pointer;
    display: block;
    font-family: montserratregular, arial, sans-serif;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #wrap-stores #side-bar #geo-localization a:hover {
    color: #f8541f;
  }
  #wrap-stores #side-bar #geo-localization a img {
    left: -8px;
    top: 3px;
    position: relative;
    width: 16px;
    height: 16px;
  }
  #wrap-stores #side-bar #sidebar-top {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 20px;
    left: 0;
  }
  #wrap-stores #side-bar #sidebar-top h1 {
    padding: 0;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap {
    border-bottom: 1px #bdbdbd solid;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section {
    width: 345px;
    margin: 0 auto;
    padding: 20px 0;
    zoom: 1;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section:before {
    content: '';
    display: block;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section:after {
    content: '';
    display: table;
    clear: both;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .thumb {
    width: 80px;
    height: 80px;
    float: left;
    background-color: transparent;
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data {
    width: 265px;
    float: left;
    padding-left: 20px;
    text-align: left;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data strong.title {
    display: block;
    font-size: 28px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    font-family: bebas, arial, sans-serif;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span {
    display: inline-block;
    padding: 0;
    margin: 0 2px;
    color: #808080;
    letter-spacing: 1px;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span > span,
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span > sup {
    font-size: 14px;
    font-family: montserratlight, arial, sans-serif;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span > span {
    display: inline-block;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span > span:nth-child(3) {
    margin-left: 3px;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span > sup {
    display: inline-block;
    top: 0;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span.new > span,
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span.new sup {
    color: #f8541f;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span.old {
    position: relative;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span.old::after {
    content: '';
    position: absolute;
    top: 50%;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #808080;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #caption-section {
    width: 345px;
    margin: 0 auto;
    text-align: center;
    font-size: 10px;
    line-height: 12px;
    padding: 15px 0;
    color: #999999;
    font-family: montserratlight, arial, sans-serif;
  }
  #wrap-stores #side-bar #sidebar-top label {
    display: none;
  }
  #wrap-stores #side-bar #sidebar-top select {
    background-color: #f8541f;
    border: 0px;
    color: #FFF;
    -webkit-appearance: none;
    background-image: url(../img/selectArrow.png);
    background-position: 95% 50%;
    background-size: 8px auto;
    background-repeat: no-repeat;
    font-family: montserratregular, arial, sans-serif;
    -webkit-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  #wrap-stores #side-bar #sidebar-top select#country {
    margin: 0 0 8px 0;
  }
  #wrap-stores #side-bar #sidebar-top ul {
    position: absolute;
    top: 290px;
    right: 38px;
    bottom: 40px;
    left: 38px;
    text-align: left;
    overflow-y: auto;
  }
  #wrap-stores #side-bar #sidebar-top ul li {
    padding: 16px;
    border-bottom: 1px solid #bdbdbd;
    width: 90%;
  }
  #wrap-stores #side-bar #sidebar-top ul li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  #wrap-stores #side-bar #sidebar-top ul li a:hover .store-name {
    color: #f8541f;
  }
  #wrap-stores #side-bar #sidebar-top ul li span {
    display: block;
  }
  #wrap-stores #side-bar #sidebar-top ul li span.store-name {
    text-transform: uppercase;
    color: #000;
    letter-spacing: 2px;
    font-family: montserratregular, arial, sans-serif;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #wrap-stores #side-bar #sidebar-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    width: 100%;
    padding-top: 0px;
    margin: 0 auto;
    zoom: 1;
  }
  #wrap-stores #side-bar #sidebar-bottom:before {
    content: '';
    display: block;
  }
  #wrap-stores #side-bar #sidebar-bottom:after {
    content: '';
    display: table;
    clear: both;
  }
  #wrap-stores #side-bar #sidebar-bottom p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-top: 24px;
    padding-bottom: 14px;
    font-family: montserratregular, arial, sans-serif;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock {
    position: absolute;
    right: 25px;
    bottom: 20px;
    left: 25px;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock .small,
  #wrap-stores #side-bar #sidebar-bottom #stock .average,
  #wrap-stores #side-bar #sidebar-bottom #stock .big {
    display: inline-block;
    width: 33%;
    float: left;
    text-align: center;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock .small span,
  #wrap-stores #side-bar #sidebar-bottom #stock .average span,
  #wrap-stores #side-bar #sidebar-bottom #stock .big span {
    font-size: 11px;
    line-height: 12px;
    font-family: montserratlight, arial, sans-serif;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock .small-circle,
  #wrap-stores #side-bar #sidebar-bottom #stock .average-circle,
  #wrap-stores #side-bar #sidebar-bottom #stock .big-circle {
    margin: 0 auto;
    width: 20px;
    height: 20px;
    border: 3px solid;
    margin-bottom: 10px;
    -webkit-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock .small-circle {
    border-color: #e4e4e4;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock .average-circle {
    border-color: #a3a3a3;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock .big-circle {
    border-color: #000000;
  }
  #wrap-stores #side-bar #sidebar-bottom p,
  #wrap-stores #side-bar #sidebar-bottom #stock {
    display: none;
  }
  #wrap-stores #map-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 420px;
    height: 100%;
    background-color: #eee;
  }
  #wrap-stores #map-container #map-loading {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #eee;
    background-image: url(../img/loader.svg);
    background-position: center;
    background-size: 50px 50px;
    background-repeat: no-repeat;
    z-index: 9;
  }
  #wrap-stores #map-container .angular-google-map {
    width: 100%;
    height: 100%;
  }
  #wrap-stores #map-container .angular-google-map-container {
    width: 100%;
    height: 100%;
  }
  /** STORES ON PRODUCT PAGE */
  #access-popup {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #FFF;
    z-index: 99999;
  }
  #access-popup #head-stores {
    position: absolute;
    top: 0;
    width: 100%;
    height: 65px;
    background-color: #000;
    text-align: center;
    font-size: 0;
  }
  #access-popup #head-stores > div {
    padding-top: 17px;
    display: inline-block;
    color: #FFF;
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 2px;
    font-family: bebas, arial, sans-serif;
  }
  #access-popup #head-stores > a {
    position: relative;
    top: 1px;
    display: inline-block;
    width: 30px;
    height: 30px;
    font-size: 32px;
    text-indent: -99999px;
    margin-left: 15px;
    border: 1px #FFF solid;
    background: transparent url(../img/close-cross.png) 50% 50% no-repeat;
    background-size: 14px 14px;
  }
  #access-popup #head-stores > a:hover {
    background-color: #f8541f;
  }
  #access-popup #wrap-stores {
    top: 65px;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top h1 {
    display: none;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top ul {
    top: 348px;
    bottom: 140px;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top ul li {
    position: relative;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top ul li.flag {
    padding-left: 20px;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top ul li.flag::before {
    content: '';
    position: absolute;
    top: 18px;
    right: 20px;
    display: block;
    width: 17px;
    height: 16px;
    background: url("../img/stores-none.gif") 0 0 no-repeat;
  }
  #access-popup #wrap-stores #side-bar #sidebar-bottom {
    display: block;
    height: 140px;
  }
  #access-popup #wrap-stores #side-bar #sidebar-bottom #geo-localization {
    border-bottom: 1px solid #bdbdbd;
  }
  #access-popup #wrap-stores #side-bar #sidebar-bottom p,
  #access-popup #wrap-stores #side-bar #sidebar-bottom #stock {
    display: block;
  }
  #access-popup #wrap-stores #side-bar.legendDisabled #sidebar-top ul {
    bottom: 70px;
  }
  #access-popup #wrap-stores #side-bar.legendDisabled #sidebar-top ul li.flag::before {
    display: none !important;
  }
  #access-popup #wrap-stores #side-bar.legendDisabled #sidebar-bottom {
    height: 70px;
  }
  #access-popup #wrap-stores #side-bar.legendDisabled #sidebar-bottom p {
    display: none !important;
  }
  #access-popup #wrap-stores #side-bar.legendDisabled #sidebar-bottom #stock {
    display: none !important;
  }
}
@media only screen and (max-width: 990px) {
  /** DEFAULT STORES */
  #wrap-stores p,
  #wrap-stores span,
  #wrap-stores time {
    font-size: 12px;
    color: #939393;
    line-height: 20px;
    font-family: montserratlight, arial, sans-serif;
  }
  #wrap-stores #geo-localization {
    text-align: center;
  }
  #wrap-stores #geo-localization a {
    font-size: 14px;
    padding-bottom: 30px;
    cursor: pointer;
    display: block;
    font-family: montserratregular, arial, sans-serif;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #wrap-stores #geo-localization a:hover {
    color: #f8541f;
  }
  #wrap-stores #geo-localization a img {
    left: -8px;
    top: 3px;
    position: relative;
    width: 16px;
    height: 16px;
  }
  #wrap-stores #side-bar #sidebar-top h1 {
    text-align: center;
    padding: 30px 0;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap {
    border-bottom: 1px #bdbdbd solid;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section {
    margin: 0 auto;
    padding: 20px 5%;
    zoom: 1;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section:before {
    content: '';
    display: block;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section:after {
    content: '';
    display: table;
    clear: both;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .thumb {
    width: 140px;
    height: 140px;
    background-color: transparent;
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto 20px auto;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data {
    width: 100%;
    text-align: center;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data strong.title {
    display: block;
    font-size: 28px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    font-family: bebas, arial, sans-serif;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span {
    display: inline-block;
    padding: 0;
    margin: 0 2px;
    color: #808080;
    letter-spacing: 1px;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span > span,
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span > sup {
    font-size: 14px;
    font-family: montserratlight, arial, sans-serif;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span > span {
    display: inline-block;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span > span:nth-child(3) {
    margin-left: 3px;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span > sup {
    display: inline-block;
    top: 0;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span.new > span,
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span.new sup {
    color: #f8541f;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span.old {
    position: relative;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #product-section-wrap #product-section .data .price > span.old::after {
    content: '';
    position: absolute;
    top: 50%;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #808080;
  }
  #wrap-stores #side-bar #sidebar-top #access-product-details #caption-section {
    text-align: center;
    font-size: 10px;
    line-height: 12px;
    padding: 15px 20px;
    color: #999999;
    font-family: montserratlight, arial, sans-serif;
  }
  #wrap-stores #side-bar #sidebar-top label {
    display: none;
  }
  #wrap-stores #side-bar #sidebar-top select {
    width: 60%;
    display: block;
    background-color: #f8541f;
    border: 0px;
    color: #FFF;
    -webkit-appearance: none;
    border-radius: 0;
    background-image: url(../img/selectArrow.png);
    background-position: 95% 50%;
    background-size: 8px auto;
    background-repeat: no-repeat;
    margin: 0 auto;
    font-family: montserratregular, arial, sans-serif;
  }
  #wrap-stores #side-bar #sidebar-top select#country {
    margin-bottom: 8px;
  }
  #wrap-stores #side-bar #sidebar-top ul {
    display: block;
    width: 95%;
    text-align: left;
    margin: 0 auto;
    padding: 30px 0;
    zoom: 1;
  }
  #wrap-stores #side-bar #sidebar-top ul:before {
    content: '';
    display: block;
  }
  #wrap-stores #side-bar #sidebar-top ul:after {
    content: '';
    display: table;
    clear: both;
  }
  #wrap-stores #side-bar #sidebar-top ul li {
    display: block;
    padding: 0 16px;
    width: 50%;
    float: left;
    text-align: left;
  }
  #wrap-stores #side-bar #sidebar-top ul li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 16px 0 16px 16px;
    border-top: 1px solid #bdbdbd;
  }
  #wrap-stores #side-bar #sidebar-top ul li a:hover .store-name {
    color: #f8541f;
  }
  #wrap-stores #side-bar #sidebar-top ul li span {
    display: block;
  }
  #wrap-stores #side-bar #sidebar-top ul li span.store-name {
    text-transform: uppercase;
    color: #000;
    letter-spacing: 2px;
    font-family: montserratregular, arial, sans-serif;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transform: translate(0px);
  }
  #wrap-stores #side-bar #sidebar-top ul li:nth-child(1) a,
  #wrap-stores #side-bar #sidebar-top ul li:nth-child(2) a {
    border-top: 0;
  }
  #wrap-stores #side-bar #sidebar-top ul li:nth-child(2n+1) {
    clear: left;
  }
  #wrap-stores #side-bar #sidebar-bottom p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-top: 24px;
    padding-bottom: 14px;
    text-align: center;
    font-family: montserratregular, arial, sans-serif;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 30px;
    zoom: 1;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock:before {
    content: '';
    display: block;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock:after {
    content: '';
    display: table;
    clear: both;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock .small,
  #wrap-stores #side-bar #sidebar-bottom #stock .average,
  #wrap-stores #side-bar #sidebar-bottom #stock .big {
    display: inline-block;
    width: 33%;
    float: left;
    text-align: center;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock .small span,
  #wrap-stores #side-bar #sidebar-bottom #stock .average span,
  #wrap-stores #side-bar #sidebar-bottom #stock .big span {
    font-size: 11px;
    line-height: 12px;
    font-family: montserratlight, arial, sans-serif;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock .small-circle,
  #wrap-stores #side-bar #sidebar-bottom #stock .average-circle,
  #wrap-stores #side-bar #sidebar-bottom #stock .big-circle {
    margin: 0 auto;
    width: 20px;
    height: 20px;
    border: 3px solid;
    margin-bottom: 10px;
    -webkit-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock .small-circle {
    border-color: #e4e4e4;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock .average-circle {
    border-color: #a3a3a3;
  }
  #wrap-stores #side-bar #sidebar-bottom #stock .big-circle {
    border-color: #000000;
  }
  #wrap-stores #side-bar #sidebar-bottom p,
  #wrap-stores #side-bar #sidebar-bottom #stock {
    display: none;
  }
  #wrap-stores #map-container {
    display: none;
  }
  /** STORES ON PRODUCT PAGE */
  #access-popup {
    display: none;
    border-bottom: 1px #eee solid;
  }
  #access-popup #head-stores {
    width: 100%;
    background-color: #000;
    text-align: center;
    font-size: 0;
    padding: 20px 0;
  }
  #access-popup #head-stores > div {
    display: inline-block;
    color: #FFF;
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 2px;
    font-family: bebas, arial, sans-serif;
  }
  #access-popup #head-stores > a {
    position: relative;
    top: 1px;
    display: inline-block;
    width: 30px;
    height: 30px;
    font-size: 32px;
    text-indent: -99999px;
    margin-left: 15px;
    border: 1px #FFF solid;
    background: transparent url(../img/close-cross.png) 50% 50% no-repeat;
    background-size: 14px 14px;
  }
  #access-popup #head-stores > a:hover {
    background-color: #f8541f;
  }
  #access-popup #wrap-stores {
    top: 65px;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top h1 {
    display: none;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top ul li {
    position: relative;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top ul li.flag {
    padding-left: 20px;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top ul li.flag::before {
    content: '';
    position: absolute;
    top: 18px;
    display: block;
    right: 20px;
    width: 17px;
    height: 16px;
    background: url("../img/stores-none.gif") 0 0 no-repeat;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top ul li.none::before {
    background: url("../img/stores-none.gif") 0 0 no-repeat;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top ul li.few::before {
    background: url("../img/stores-few.gif") 0 0 no-repeat;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top ul li.alot::before {
    background: url("../img/stores-alot.gif") 0 0 no-repeat;
  }
  #access-popup #wrap-stores #side-bar #sidebar-bottom {
    display: block;
  }
  #access-popup #wrap-stores #side-bar #sidebar-bottom #geo-localization {
    border-bottom: 1px solid #bdbdbd;
  }
  #access-popup #wrap-stores #side-bar #sidebar-bottom p,
  #access-popup #wrap-stores #side-bar #sidebar-bottom #stock {
    display: block;
  }
  #access-popup #wrap-stores #side-bar.legendDisabled #sidebar-top ul.flag {
    padding-left: 20px;
  }
  #access-popup #wrap-stores #side-bar.legendDisabled #sidebar-top ul.flag::before {
    content: '';
    position: absolute;
    top: 18px;
    right: 20px;
    display: block;
    width: 17px;
    height: 16px;
    background: url("../img/stores-none.gif") 0 0 no-repeat;
  }
  #access-popup #wrap-stores #side-bar.legendDisabled #sidebar-top ul.none::before {
    background: url("../img/stores-none.gif") 0 0 no-repeat;
  }
  #access-popup #wrap-stores #side-bar.legendDisabled #sidebar-top ul.few::before {
    background: url("../img/stores-few.gif") 0 0 no-repeat;
  }
  #access-popup #wrap-stores #side-bar.legendDisabled #sidebar-top ul.alot::before {
    background: url("../img/stores-alot.gif") 0 0 no-repeat;
  }
  #access-popup #wrap-stores #side-bar.legendDisabled #sidebar-bottom p {
    display: none !important;
  }
  #access-popup #wrap-stores #side-bar.legendDisabled #sidebar-bottom #stock {
    display: none !important;
  }
}
@media only screen and (max-width: 990px) and (max-width: 580px) {
  #wrap-stores #side-bar #sidebar-top .row {
    width: 100%;
    padding: 0 5%;
  }
  #wrap-stores #side-bar #sidebar-top .row select {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  #access-popup #head-stores {
    text-align: left;
  }
  #access-popup #head-stores > div {
    display: none;
  }
  #access-popup #head-stores > a {
    display: block;
    margin: 0 20px 0 auto;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top ul li {
    width: 100%;
    float: none;
  }
  #access-popup #wrap-stores #side-bar #sidebar-top ul li:nth-child(2) a {
    border-top: 1px #bdbdbd solid;
  }
}
/** DEFAULT STORES WITH ACCESORIES CHECKBOX */
#wrap-stores #side-bar.withAk #sidebar-top {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 20px;
  left: 0;
}
@media (max-width: 990px) {
  #wrap-stores #side-bar.withAk #sidebar-top {
    top: 82px;
  }
}
#wrap-stores #side-bar.withAk #sidebar-top .checkbox-row {
  padding: 5px 0;
  text-align: center;
}
#wrap-stores #side-bar.withAk #sidebar-top .checkbox-row label {
  display: inline-block;
  cursor: pointer;
  margin: 0 auto;
  text-align: left;
  max-width: 345px;
  width: 100%;
}
@media (max-width: 990px) {
  #wrap-stores #side-bar.withAk #sidebar-top .checkbox-row label {
    max-width: 60%;
  }
}
@media (max-width: 580px) {
  #wrap-stores #side-bar.withAk #sidebar-top .checkbox-row label {
    max-width: 100%;
    padding: 0 5%;
  }
}
#wrap-stores #side-bar.withAk #sidebar-top .checkbox-row label input[type="checkbox"] {
  display: none;
}
#wrap-stores #side-bar.withAk #sidebar-top .checkbox-row label input[type="checkbox"] + span::before {
  display: inline-block;
  content: "";
  position: relative;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background-color: #bbbbbb;
  background-image: url(../img/thick_white.png);
  background-size: 100%;
  background-position: -20px 0;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
#wrap-stores #side-bar.withAk #sidebar-top .checkbox-row label input[type="checkbox"]:checked + span::before {
  background-position: center;
  background-color: #231f20;
}
#wrap-stores #side-bar.withAk #sidebar-top ul {
  top: 450px;
}
@media only screen and (max-height: 800px) and (min-width: 1000px) and (max-width: 1400px) {
  #error #wrap-error .wrap-full .bg-container {
    padding-top: 60px;
  }
  #error #wrap-error .wrap-full .bg-container .bg {
    padding-bottom: 25%;
    background-size: 55%;
  }
}
@media only screen and (max-width: 600px) {
  #error #wrap-error .wrap-full section {
    width: 100%;
    padding: 0 40px;
  }
}
/** EXTRA STYLES */
#map-container span {
  display: block;
  line-height: 16px !important;
  letter-spacing: 1px !important;
}
#map-container #place-name {
  font-size: 14px !important;
  color: #000 !important;
  padding-bottom: 8px !important;
}
#map-container #open-hours {
  padding-top: 6px !important;
}
/**
 * ANIMACJA DEFAULT
 */
.default-animation-enter.enter-setup {
  display: none;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.default-animation-enter.enter-prepare {
  display: block;
}
.default-animation-enter.enter {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
  -o-transform: translate(0px);
}
/**
 * ANIMACJA DEFAULT
 */
.default-animation-leave.leave-setup {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
  -o-transform: translate(0px);
}
/** ANIMACJA WEJSCIA PRODUKTU */
.product-main-animation-enter.enter-setup {
  display: none;
}
.product-main-animation-enter.enter-setup #product-head,
.product-main-animation-enter.enter-setup #product-data,
.product-main-animation-enter.enter-setup #product-photos {
  -webkit-transform: translateY(100px) translateZ(0) scale(1, 1);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-backface-visibility: hidden;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.product-main-animation-enter.enter-setup #product-related {
  -webkit-transform: translateY(100px) translateZ(0) scale(1, 1);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-backface-visibility: hidden;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.product-main-animation-enter.enter-prepare {
  display: block;
}
.product-main-animation-enter.enter #product-head,
.product-main-animation-enter.enter #product-data,
.product-main-animation-enter.enter #product-photos {
  -webkit-transform: translateY(0) translateZ(0) scale(1, 1);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-backface-visibility: hidden;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
  -o-transform: translate(0px);
}
.product-main-animation-enter.enter-bar #product-related {
  -webkit-transform: translateY(0) translateZ(0) scale(1, 1);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-backface-visibility: hidden;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
  -o-transform: translate(0px);
}
/**
 * ANIMACJA KARTY PRODUKTU
 */
.product-view #wrap-animation {
  position: relative;
}
.product-animation {
  padding: 2% 0 0px;
}
.product-animation.enter-setup,
.product-animation.leave-setup {
  position: absolute;
  top: 0;
  left: 0;
}
.product-animation.next.enter-setup #product-head,
.product-animation.next.enter-setup #product-data,
.product-animation.next.enter-setup #product-photos {
  -webkit-transform: translateX(300px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(300px);
  transform: translateX(300px);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.product-animation.next.enter-setup #product-related {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.product-animation.next.enter-step #product-head,
.product-animation.next.enter-step #product-data {
  -webkit-transform: translateX(0) translateZ(0) scale(1, 1);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition-property: translateX opacity;
  -moz-transition-property: translateX opacity;
  -o-transition-property: translateX opacity;
  -ms-transition-property: translateX opacity;
  transition-property: translateX opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
.product-animation.next.enter-step #product-photos {
  -webkit-transform: translateX(0) translateZ(0) scale(1, 1);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition-property: translateX opacity;
  -moz-transition-property: translateX opacity;
  -o-transition-property: translateX opacity;
  -ms-transition-property: translateX opacity;
  transition-property: translateX opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  transition-delay: 200ms;
}
.product-animation.next.enter-step #product-related {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
.product-animation.next.leave-setup #product-head,
.product-animation.next.leave-setup #product-data,
.product-animation.next.leave-setup #product-photos {
  -webkit-transform: translateX(0) translateZ(0) scale(1, 1);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.product-animation.next.leave-setup #product-related {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.product-animation.next.leave-step #product-head,
.product-animation.next.leave-step #product-data {
  -webkit-transform: translateX(-300px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-300px);
  transform: translateX(-300px);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition-property: translateX opacity;
  -moz-transition-property: translateX opacity;
  -o-transition-property: translateX opacity;
  -ms-transition-property: translateX opacity;
  transition-property: translateX opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -ms-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
.product-animation.next.leave-step #product-photos {
  -webkit-transform: translateX(-300px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-300px);
  transform: translateX(-300px);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition-property: translateX opacity;
  -moz-transition-property: translateX opacity;
  -o-transition-property: translateX opacity;
  -ms-transition-property: translateX opacity;
  transition-property: translateX opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -ms-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  transition-delay: 200ms;
}
.product-animation.next.leave-step #product-related {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
.product-animation.prev.enter-setup #product-head,
.product-animation.prev.enter-setup #product-data,
.product-animation.prev.enter-setup #product-photos {
  -webkit-transform: translateX(-300px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-300px);
  transform: translateX(-300px);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.product-animation.prev.enter-setup #product-related {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.product-animation.prev.enter-step #product-head,
.product-animation.prev.enter-step #product-data {
  -webkit-transform: translateX(0) translateZ(0) scale(1, 1);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition-property: translateX opacity;
  -moz-transition-property: translateX opacity;
  -o-transition-property: translateX opacity;
  -ms-transition-property: translateX opacity;
  transition-property: translateX opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  transition-delay: 200ms;
}
.product-animation.prev.enter-step #product-photos {
  -webkit-transform: translateX(0) translateZ(0) scale(1, 1);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition-property: translateX opacity;
  -moz-transition-property: translateX opacity;
  -o-transition-property: translateX opacity;
  -ms-transition-property: translateX opacity;
  transition-property: translateX opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
.product-animation.prev.enter-step #product-related {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
.product-animation.prev.leave-setup #product-head,
.product-animation.prev.leave-setup #product-data,
.product-animation.prev.leave-setup #product-photos {
  -webkit-transform: translateX(0) translateZ(0) scale(1, 1);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.product-animation.prev.leave-setup #product-related {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.product-animation.prev.leave-step #product-head,
.product-animation.prev.leave-step #product-data {
  -webkit-transform: translateX(300px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(300px);
  transform: translateX(300px);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition-property: translateX opacity;
  -moz-transition-property: translateX opacity;
  -o-transition-property: translateX opacity;
  -ms-transition-property: translateX opacity;
  transition-property: translateX opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -ms-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  transition-delay: 200ms;
}
.product-animation.prev.leave-step #product-photos {
  -webkit-transform: translateX(300px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(300px);
  transform: translateX(300px);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition-property: translateX opacity;
  -moz-transition-property: translateX opacity;
  -o-transition-property: translateX opacity;
  -ms-transition-property: translateX opacity;
  transition-property: translateX opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -ms-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
.product-animation.prev.leave-step #product-related {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
.product-animation.enter-setup #product-head,
.product-animation.enter-setup #product-data,
.product-animation.enter-setup #product-photos {
  -webkit-transform: translateX(-300px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(-300px);
  transform: translateX(-300px);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.product-animation.enter-setup #product-related {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.product-animation.enter-step #product-head,
.product-animation.enter-step #product-data {
  -webkit-transform: translateX(0) translateZ(0) scale(1, 1);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition-property: translateX opacity;
  -moz-transition-property: translateX opacity;
  -o-transition-property: translateX opacity;
  -ms-transition-property: translateX opacity;
  transition-property: translateX opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  transition-delay: 200ms;
}
.product-animation.enter-step #product-photos {
  -webkit-transform: translateX(0) translateZ(0) scale(1, 1);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition-property: translateX opacity;
  -moz-transition-property: translateX opacity;
  -o-transition-property: translateX opacity;
  -ms-transition-property: translateX opacity;
  transition-property: translateX opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
.product-animation.enter-step #product-related {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
.product-animation.leave-setup #product-head,
.product-animation.leave-setup #product-data,
.product-animation.leave-setup #product-photos {
  -webkit-transform: translateX(0) translateZ(0) scale(1, 1);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.product-animation.leave-setup #product-related {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.product-animation.leave-step #product-head,
.product-animation.leave-step #product-data {
  -webkit-transform: translateX(300px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(300px);
  transform: translateX(300px);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition-property: translateX opacity;
  -moz-transition-property: translateX opacity;
  -o-transition-property: translateX opacity;
  -ms-transition-property: translateX opacity;
  transition-property: translateX opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -ms-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  transition-delay: 200ms;
}
.product-animation.leave-step #product-photos {
  -webkit-transform: translateX(300px) translateZ(0) scale(1, 1);
  -ms-transform: translateX(300px);
  transform: translateX(300px);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition-property: translateX opacity;
  -moz-transition-property: translateX opacity;
  -o-transition-property: translateX opacity;
  -ms-transition-property: translateX opacity;
  transition-property: translateX opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -ms-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
.product-animation.leave-step #product-related {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -ms-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
#wrap-animation .ng-animate #product-sizes,
#wrap-animation .ng-animate #list-variations {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
#wrap-animation .ng-animate.enter-setup #product-sizes,
#wrap-animation .ng-animate.enter-setup .product-inspiration-container *,
#wrap-animation .ng-animate.enter-setup #list-variations {
  opacity: 0;
}
#wrap-animation .ng-animate.enter-step #product-sizes,
#wrap-animation .ng-animate.enter-step .product-inspiration-container *,
#wrap-animation .ng-animate.enter-step #list-variations {
  opacity: 1;
}
#wrap-animation .ng-animate.leave-setup #product-sizes,
#wrap-animation .ng-animate.leave-setup .product-inspiration-container *,
#wrap-animation .ng-animate.leave-setup #list-variations,
#wrap-animation .ng-animate.leave-step #product-sizes,
#wrap-animation .ng-animate.leave-step .product-inspiration-container *,
#wrap-animation .ng-animate.leave-step #list-variations {
  opacity: 0;
}
/**
 * ANIMACJA WIDOKU KATEGORII
 */
#content.category-animation-enter.enter-setup {
  display: none;
}
#content.category-animation-enter.enter-setup #list-category {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
#content.category-animation-enter.enter-setup #bottom-bar-category {
  -webkit-transform: translateY(65px) translateZ(0) scale(1, 1);
  -ms-transform: translateY(65px);
  transform: translateY(65px);
  -webkit-backface-visibility: hidden;
}
#content.category-animation-enter.enter {
  display: block !important;
}
#content.category-animation-enter.show-bar #bottom-bar-category {
  -webkit-transform: translateY(0) translateZ(0) scale(1, 1) !important;
  -ms-transform: translateY(0) !important;
  transform: translateY(0) !important;
  -webkit-backface-visibility: hidden !important;
  -webkit-transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
  -o-transform: translate(0px);
}
#content.category-animation-enter.show-thumbs #list-category {
  -moz-opacity: 1 !important;
  -khtml-opacity: 1 !important;
  -webkit-opacity: 1 !important;
  opacity: 1 !important;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100) !important;
  filter: alpha(opacity=100) !important;
  -webkit-transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
  -o-transform: translate(0px);
}
#content.category-animation-leave.hide-thumbs #list-category {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transform: translateY(200px) translateZ(0) scale(1, 1);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
  -o-transform: translate(0px);
}
#content.category-animation-leave.hide-bar #bottom-bar-category {
  -webkit-transform: translateY(65px) translateZ(0) scale(1, 1);
  -ms-transform: translateY(65px);
  transform: translateY(65px);
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
  -o-transform: translate(0px);
}
/** ANIMATION BASIC */
.content-animation {
  width: 100%;
}
/**	CROSSBROWSER */
/** IE */
html.ie select {
  background-image: none !important;
}
html.ie #grid-top #new a:hover,
html.ie #grid-top #ccc a:hover {
  background-size: 101%;
}
html.ie #grid-bottom #video a:hover {
  background-size: 101%;
}
html.ie #grid-bottom #no-news a:hover {
  background-size: 101%;
}
/** FIREFOX */
html.firefox select {
  background-image: none !important;
}
/**	CHROME */
/**	OPERA */
/** APPLE */
html.apple .preload-background-image {
  background-image: none !important;
}
@media only screen and (max-width: 1100px) {
  #inspiration_list .grid-item img {
    width: 100%;
  }
  #grid-top.grid-subpage div a .box-inner .gray {
    font-size: 12px;
  }
}
#only-mobile-menu {
  display: none;
  font-family: 'bebas', sans-serif;
  font-size: 20px;
  padding: 12px;
}
#only-mobile-menu .toggleSubMenu {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  height: 45px;
  width: 60px;
  line-height: 1px;
  font-size: 1px;
  padding: 14px 12px 0 12px;
  text-align: center;
  z-index: 1;
}
#only-mobile-menu .toggleSubMenu .triangle {
  position: absolute;
  border-top-color: #999;
}
#only-mobile-menu .open-submenuMob > .toggleSubMenu .triangle {
  position: absolute;
  border-top-color: #000;
  -webkit-transform: rotate(180deg) translateZ(0) scale(1, 1);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#only-mobile-menu > li {
  position: relative;
}
#only-mobile-menu > li a,
#only-mobile-menu > li h2 {
  display: block;
  padding: 12px;
  border-bottom: 1px solid #eee;
  color: #000;
}
#only-mobile-menu > li h2 {
  padding-left: 24px;
}
#only-mobile-menu > li ul li a {
  padding-left: 36px;
}
#only-mobile-menu > li ul li ul {
  font-family: 'montserratultra_light', sans-serif;
  font-size: 15px;
}
#only-mobile-menu > li ul li ul a {
  padding-left: 48px;
  color: #666;
}
#only-mobile-menu > li .sub-nav .col {
  position: relative;
}
#only-mobile-menu .hasFatMenu .sub-nav {
  display: none;
}
#only-mobile-menu .hasFatMenu ul {
  display: none;
}
#only-mobile-menu .hasFatMenu.open-submenuMob .sub-nav {
  display: block;
}
#only-mobile-menu .hasFatMenu .open-submenuMob ul {
  display: block;
}
@media only screen and (max-width: 990px) {
  #grid-top.grid-subpage div a .box-inner .gray {
    font-size: 11px;
  }
}
@media only screen and (max-width: 840px) {
  .open-menu #only-mobile-menu {
    display: block;
    background: #fff;
  }
}
.reviews {
  padding-bottom: 50px;
  font-family: montserratlight, arial, sans-serif;
  /*
  /*  RWD reviews
  */
  /*
  /*  RWD details
  */
}
.reviews .top__banner {
  background: url("../img/reviews/lifting/top.jpg") no-repeat;
  height: 339px;
  position: relative;
  text-align: center;
}
.reviews .top__banner--text {
  font-family: bebas, arial, sans-serif;
  font-size: 85px;
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  width: 100%;
  letter-spacing: 19px;
}
.reviews .container {
  width: 100%;
}
.reviews .container .row {
  width: 100%;
  padding: 10px;
  margin: 0 auto;
}
.reviews .container .tiles__list .tile.ng-move,
.reviews .container .tiles__list .tile.ng-enter,
.reviews .container .tiles__list .tile.ng-leave {
  transition: all linear 0.5s;
}
.reviews .container .tiles__list .tile.ng-leave.ng-leave-active,
.reviews .container .tiles__list .tile.ng-move,
.reviews .container .tiles__list .tile.ng-enter {
  opacity: 0;
}
.reviews .container .tiles__list .tile.ng-leave,
.reviews .container .tiles__list .tile.ng-move.ng-move-active,
.reviews .container .tiles__list .tile.ng-enter.ng-enter-active {
  opacity: 1;
}
.reviews__select {
  width: 50%;
  float: left;
  padding: 10px;
  font-family: montserratlight, arial, sans-serif;
  font-weight: 600;
}
.reviews__select .select__item {
  display: inline-block;
}
.reviews__select .select__item select {
  width: 280px;
  height: 52px;
}
.reviews__select .select__text {
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0 20px;
}
.reviews .reviews__months {
  font-family: montserratlight, arial, sans-serif;
  font-weight: 600;
  width: 50%;
  float: left;
  padding: 10px;
}
.reviews .reviews__months .months__text {
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0 20px;
  float: left;
  line-height: 52px;
}
.reviews .reviews__months .months__content {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 1840px) {
  .reviews__select .select__item select {
    width: 240px;
  }
}
@media only screen and (max-width: 1680px) {
  .reviews__select .select__item select {
    width: 200px;
  }
}
@media only screen and (max-width: 1490px) {
  .reviews__select {
    width: 100%;
    text-align: center;
  }
  .reviews__select .select__item select {
    width: 280px;
  }
  .reviews .reviews__months {
    width: 100%;
  }
}
.reviews .review__tiles {
  padding-bottom: 30px;
}
.reviews .review__tiles .empty__title {
  width: 1267px;
  max-width: 100%;
  margin: 40px auto;
  text-align: center;
}
.reviews .review__tiles .empty__title:after {
  content: '';
  display: table;
  clear: both;
}
.reviews .review__tiles .empty__title--info,
.reviews .review__tiles .empty__title__link {
  height: 360px;
}
.reviews .review__tiles .empty__title--info a,
.reviews .review__tiles .empty__title__link a {
  width: 270px;
  margin: 0 auto;
}
.reviews .review__tiles .empty__title--info {
  display: inline-block;
  width: 33.3%;
  float: left;
  background: url('../img/reviews/bg-wynik.png') no-repeat;
  background-position: 50% 50%;
  position: relative;
}
.reviews .review__tiles .empty__title--info .empty__title__container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.reviews .review__tiles .empty__title--info h3 {
  margin-bottom: 25px;
  font-size: 50px;
}
.reviews .review__tiles .empty__title--info p {
  margin-bottom: 30px;
  font-size: 13px;
}
.reviews .review__tiles .empty__title--info a {
  color: #000;
  text-decoration: underline;
}
.reviews .review__tiles .empty__title__link {
  display: inline-block;
  position: relative;
  width: 33.3%;
  float: left;
}
.reviews .review__tiles .empty__title__link .icon-chevron-left-2,
.reviews .review__tiles .empty__title__link .icon-chevron-right-2 {
  position: absolute;
  top: -8px;
}
.reviews .review__tiles .empty__title__link .empty__link {
  color: #000;
  font-family: bebas, arial, sans-serif;
  text-transform: uppercase;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  font-size: 20px;
}
.reviews .review__tiles .empty__title__link .empty__link.left {
  left: 0;
}
.reviews .review__tiles .empty__title__link .empty__link.right {
  right: 0;
}
.reviews .review__tiles .empty__title__link .icon-chevron-left-2 {
  left: 0;
}
.reviews .review__tiles .empty__title__link .icon-chevron-right-2 {
  right: 0;
}
.reviews .review__tiles .empty__title__link .icon-chevron-right-2,
.reviews .review__tiles .empty__title__link .icon-chevron-left-2 {
  font-size: 36px;
}
.reviews .review__tiles .tiles__list .tile .ratio-wrap {
  height: 610px;
  position: relative;
}
.reviews .review__tiles .tiles__list .tile .ratio-wrap .ratio .reviews__item--bloger .box-image {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.reviews .review__tiles .tiles__list .tile .ratio-wrap .ratio .reviews__item--bloger .box-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1) translateZ(0) scale(1, 1);
  -moz-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -o-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  -ms-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
  transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
}
.reviews .review__tiles .tiles__list .tile .ratio-wrap .ratio .reviews__item--bloger:hover .box-image {
  opacity: 1;
}
.reviews .review__tiles .tiles__list .tile .ratio-wrap .ratio .reviews__item--client .box-cover {
  background: rgba(255, 255, 255, 0);
}
.reviews .review__tiles .tiles__list .tile .ratio-wrap .ratio .reviews__item--client .box-cover .btn {
  border-color: #000000;
  color: #000000;
}
.reviews .review__tiles .tiles__list .tile .ratio-wrap .ratio .reviews__item--client .box-cover .btn:hover {
  background: #000000;
  color: #ffffff;
}
.reviews .review__tiles .tiles__list .tile .ratio-wrap .ratio .reviews__item--client:hover .box-cover {
  background: rgba(255, 255, 255, 0.9);
}
.reviews .review__tiles .tiles__list .tile .ratio-wrap .ratio .reviews__item--client .btn {
  display: block;
  width: 220px;
}
.reviews .review__tiles .tiles__list .tile .ratio-wrap .ratio .reviews__item--client .btn.jsShowOpinion {
  display: none;
}
.reviews .review__tiles .opinion-mobile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-color: #fff;
}
.reviews .review__tiles .opinion-mobile .reviews__author {
  margin-top: 29px;
  font-size: 30px;
}
.reviews .review__tiles .opinion-mobile .reviews__stars {
  top: 71px;
}
.reviews .review__tiles .opinion-mobile .opinion {
  font-weight: 600;
  display: block;
  margin: 148px auto 82px;
  font-size: 15px;
  padding: 0 20px;
}
.reviews .review__tiles .opinion-mobile .opinion p {
  padding-bottom: 20px;
}
.reviews .review__tiles .opinion-mobile .opinion:before {
  content: '';
  background: url("../img/tests/quote-open.svg") no-repeat;
  position: absolute;
  height: 36px;
  left: 0;
  right: 0;
  top: 130px;
  width: 38px;
  margin: 0 auto;
}
.reviews .review__tiles .opinion-mobile .opinion:after {
  content: '';
  position: absolute;
  background: url("../img/tests/quote-close.svg") no-repeat;
  height: 36px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 38px;
}
.reviews .review__tiles .opinion-mobile a {
  color: #000;
}
.reviews__item {
  padding: 30px;
  border: 1px solid #e0e0e0;
  position: relative;
}
.reviews__item--bloger {
  text-align: center;
  position: relative;
  border: 1px solid #ff3200;
  /*&:before {
        position: absolute;
        content: '';
        height: 5px;
        background-color: #ff3200;
        left: 30px;
        right: 30px;
        margin: 0 auto;
        top: 0;
      }*/
}
.reviews__item--bloger:hover .bloger__image {
  top: 0;
}
.reviews__item--bloger .reviews__content {
  width: 100%;
  font-family: montserratlight, arial, sans-serif;
}
.reviews__item--bloger .reviews__content .opinion {
  width: 50%;
  float: left;
  position: relative;
  font-size: 13px;
  padding: 25px 5px 10px;
  line-height: 19px;
}
.reviews__item--bloger .reviews__content .opinion:before {
  content: '';
  background: url("../img/tests/quote-open.svg") no-repeat;
  position: absolute;
  height: 36px;
  left: 0;
  top: -30px;
  width: 38px;
}
.reviews__item--bloger .reviews__content .opinion:after {
  content: '';
  position: absolute;
  background: url("../img/tests/quote-close.svg") no-repeat;
  height: 36px;
  right: 0;
  bottom: -30px;
  width: 38px;
}
.reviews__item--bloger .reviews__content .reviews__image {
  width: 50%;
  float: left;
  padding-bottom: 0;
}
.reviews__item--bloger .bloger {
  position: relative;
  margin-bottom: 59px;
}
.reviews__item--bloger .bloger__image {
  position: absolute;
  border-radius: 100%;
  border: 3px solid #ff3200;
  background-color: #fff;
  top: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 219px;
  height: 219px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.reviews__item--bloger .bloger__image img {
  border-radius: 100%;
  width: 100%;
  padding: 6px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
.reviews__item--bloger .bloger__info {
  padding: 200px 0 60px;
}
.reviews__item--bloger .bloger__info h3 {
  font-size: 43px;
  font-family: bebas, arial, sans-serif;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.reviews__item--bloger .bloger__website {
  font-size: 12px;
  color: #808080;
}
.reviews__item--client {
  text-align: center;
}
.reviews__item--client .reviews__content {
  width: 100%;
  font-family: montserratlight, arial, sans-serif;
  padding: 35px 0;
}
.reviews__item--client .reviews__content h3 {
  font-size: 30px;
  font-family: bebas, arial, sans-serif;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.reviews__item--client .reviews__content .info {
  font-size: 12px;
  color: #808080;
  padding-bottom: 12px;
}
.reviews__item--client .reviews__content .symbol {
  display: inline-block;
  padding: 0 10px;
}
.reviews__item--client .reviews__content .price {
  font-size: 20px;
  color: #ff3300;
  display: block;
  padding-bottom: 20px;
}
.reviews__item--client .reviews__content .price sup {
  top: 0;
}
.reviews__item--client .reviews__content .opinion {
  font-size: 13px;
  width: 75%;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  line-height: 19px;
}
.reviews__item--client .reviews__content .opinion:before {
  content: '';
  background: url("../img/tests/quote-open.svg") no-repeat;
  position: absolute;
  height: 36px;
  left: -64px;
  width: 38px;
}
.reviews__item--client .reviews__content .opinion:after {
  content: '';
  position: absolute;
  background: url("../img/tests/quote-close.svg") no-repeat;
  height: 36px;
  right: -64px;
  bottom: -5px;
  width: 38px;
}
@media only screen and (max-width: 1490px) {
  .reviews__item--bloger .bloger__info {
    padding: 200px 0 20px;
  }
}
.reviews__stars {
  position: absolute;
  top: 30px;
  left: 30px;
}
.reviews__stars .stars__item {
  display: inline-block;
  color: #cccccc;
  font-size: 18px;
}
.reviews__stars .stars__item--active {
  color: #ff3300;
}
.reviews__author {
  display: block;
  float: right;
  text-transform: uppercase;
  font-size: 20px;
  font-family: bebas, arial, sans-serif;
}
.reviews__image {
  padding-bottom: 40px;
  height: 254px;
  width: 100%;
}
.reviews__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}
.reviews .btn {
  width: 100%;
  max-width: 278px;
  border: 1px solid #000;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 21px;
  padding: 25px 40px;
  font-family: bebas, arial, sans-serif;
  margin: 0 auto;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transform: translate(0px);
}
.reviews .btn:hover {
  background: #000;
  color: #fff;
}
.reviews--single .tests .test {
  border: none;
}
.reviews--single .tests .test__cell {
  border: 1px solid #e0e0e0;
  position: relative;
}
.reviews--single .tests .test__cell--33 {
  width: calc(33.3333% - 30px);
  margin: 20px 10px 20px 20px;
}
.reviews--single .tests .test__cell--33.test__cell--relative {
  position: relative;
}
.reviews--single .tests .test__cell--66 {
  width: calc(66.6666% - 30px);
  margin: 20px 20px 20px 10px;
}
.reviews--single .tests .test__cell--100 {
  width: 100%;
  position: static;
}
.reviews--single .tests .test__cell--100.test__cell--btn {
  height: 58px;
  margin-bottom: 10px;
  display: block;
  font-size: 22px;
  font-family: bebas, arial, sans-serif;
  padding: 17px 0 0 23px;
  color: #000;
  transition: color 0.5s, background 0.5s;
}
.reviews--single .tests .test__cell--100.test__cell--btn:hover {
  color: #fff;
  background-color: #000;
  transition: all 0.5s;
}
.reviews--single .tests .test__cell--100.test__cell--border {
  height: calc(100% - 68px);
  border: 1px solid #e0e0e0;
  min-height: 600px;
}
.reviews--single .tests .test__product {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%) translateZ(0) scale(1, 1);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}
.reviews--single .tests .product__img {
  margin-top: 0;
}
.reviews--single .tests .product__price {
  margin-top: 10px;
}
.reviews--single .tests .product__price sup {
  top: 0;
}
.reviews--single .tests .product__foot .btn {
  padding: 25px 50px;
}
.reviews--single .tests .test__review {
  padding: 20px;
  overflow: hidden;
}
.reviews--single .tests .test__review h5 {
  font-size: 15px;
  color: #a7a7a7;
  font-family: bebas, arial, sans-serif;
  margin-bottom: 25px;
}
.reviews--single .tests .test__review:after,
.reviews--single .tests .test__review:before {
  display: none;
}
.reviews--single .tests .review__share {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 20px;
  color: #000000;
  font-family: bebas, arial, sans-serif;
  text-transform: uppercase;
}
.reviews--single .tests .review__share span {
  display: inline-block;
  vertical-align: middle;
}
.reviews--single .tests .review__share .icon {
  color: #ff4719;
  font-size: 16px;
  margin-left: 20px;
}
.reviews--single .tests .review__share:hover {
  color: #ff4719;
}
.reviews--single .tests .review__title {
  text-align: center;
}
.reviews--single .tests .review__title h3 {
  font-size: 40px;
  margin: 25px 0 10px;
}
.reviews--single .tests .review__title .reviews__stars {
  position: static;
  margin-bottom: 20px;
}
.reviews--single .tests .review__opinion {
  padding: 30px;
  float: left;
  width: 60%;
}
.reviews--single .tests .review__quote {
  margin: 0;
  padding: 0 65px;
  position: relative;
}
.reviews--single .tests .review__quote:before {
  position: absolute;
  margin-bottom: 0;
  left: 0;
  top: 0;
}
.reviews--single .tests .review__quote:after {
  margin-right: -65px;
}
.reviews--single .tests .review__quote p {
  text-align: left;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
}
.reviews--single .tests .review__marks {
  padding: 30px;
  float: left;
  width: 40%;
}
.reviews--single .tests .review__marks h5 {
  padding-left: 45px;
}
.reviews--single .tests .review__marks .marks__stars {
  margin-bottom: 50px;
  counter-reset: section;
}
.reviews--single .tests .review__marks .marks__item {
  border-left: 1px solid #e0e0e0;
  padding-left: 45px;
  line-height: 30px;
  position: relative;
  padding-bottom: 20px;
}
.reviews--single .tests .review__marks .marks__item:last-of-type {
  padding-bottom: 0;
}
.reviews--single .tests .review__marks .marks__item:before {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  counter-increment: section;
  content: counter(section);
  left: -15px;
  text-align: center;
  line-height: 29px;
  color: #bfbfbf;
  font-size: 16px;
  font-family: bebas, arial, sans-serif;
  background: #ffffff;
  z-index: 5;
}
.reviews--single .tests .review__marks .marks__item h4 {
  float: left;
  font-size: 20px;
  font-family: bebas, arial, sans-serif;
}
.reviews--single .tests .review__marks .marks__item .reviews__stars {
  float: right;
  position: static;
}
.reviews--single .tests .review__marks .marks__item .reviews__stars .stars__item {
  font-size: 14px;
}
.reviews--single .tests .review__marks .marks__item .reviews__stars .stars__item--active {
  color: #000000;
}
.reviews--single .tests .review__marks .marks__image img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 1464px) {
  .reviews .reviews__item--bloger .reviews__stars {
    top: 306px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .reviews .reviews__item--bloger .reviews__image {
    padding-top: 26px;
  }
}
@media only screen and (max-width: 1243px) {
  .reviews .review__tiles .tiles__list .tile .ratio-wrap {
    height: 640px;
  }
}
@media only screen and (max-width: 1187px) {
  .reviews .tile {
    width: 50%;
  }
  .reviews__item--bloger .reviews__content .opinion,
  .reviews__item--bloger .reviews__content .reviews__image {
    width: 100%;
  }
  .reviews__item--bloger .reviews__content .reviews__image img {
    height: 154px;
    width: auto;
  }
  .reviews__content {
    margin-top: 0;
  }
}
@media only screen and (max-width: 950px) {
  .reviews .review__tiles .empty__title__link,
  .reviews .review__tiles .empty__title--info {
    width: 100%;
  }
  .reviews .review__tiles .empty__title__link {
    height: 150px;
  }
  .reviews .review__tiles .empty__title__link .empty__link.right,
  .reviews .review__tiles .empty__title__link .empty__link.left {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 903px) {
  .reviews__select .select__item select {
    width: 180px;
  }
  .reviews .reviews__item--bloger .reviews__image {
    padding-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .reviews .tile {
    width: 100%;
  }
  .reviews__item--bloger .reviews__content {
    margin-top: 70px;
  }
  .reviews__item--bloger .reviews__content .opinion,
  .reviews__item--bloger .reviews__content .reviews__image {
    width: 50%;
  }
  .reviews .tiles__list .tile .ratio-wrap {
    height: 614px;
    padding-bottom: 81%;
  }
  .reviews__item--client .reviews__image img {
    height: 254px;
    width: auto;
  }
  .reviews__select .select__item select {
    width: 180px;
  }
}
@media only screen and (max-width: 721px) {
  .reviews__select {
    text-align: left;
  }
  .reviews__select .select__item {
    display: block;
    width: 280px;
    max-width: 100%;
    margin: 0 auto;
  }
  .reviews__select .select__item .select__text {
    display: block;
    padding: 10px 0 20px;
  }
  .reviews__select .select__item select {
    width: 280px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 546px) {
  .reviews .months-slider__item a,
  .reviews .months-slider__item.swiper-slide-active a {
    font-size: 20px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 515px) {
  .reviews .reviews__months .months__text {
    float: none;
  }
}
@media only screen and (max-width: 495px) {
  .reviews .review__tiles .tiles__list .tile .ratio-wrap .ratio .reviews__item--client .btn.jsShowOpinion {
    display: block;
  }
  .reviews .review__tiles .tiles__list .tile .ratio-wrap .ratio .reviews__item--client .box-cover {
    background: none;
    z-index: -1;
  }
  .reviews__stars .stars__item {
    font-size: 20px;
  }
  .reviews__item--client .box-cover .box-inner {
    display: none;
  }
  .reviews__item--client .reviews__image img {
    height: 209px;
  }
  .reviews__item--client .reviews__content .symbol {
    display: block;
    padding: 5px 10px;
  }
  .reviews__item--client .reviews__author {
    display: block;
    float: none;
    margin-top: -14px;
  }
  .reviews__item--client .reviews__stars {
    top: 42px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .reviews__item--client .reviews__content {
    padding: 70px 0 0;
  }
  .reviews__item--client .reviews__content .price {
    padding-bottom: 30px;
  }
  .reviews__item--client .opinion {
    display: none;
  }
  .reviews .reviews__item--bloger .reviews__content {
    margin-top: 45px;
  }
  .reviews .reviews__item--bloger .reviews__content .opinion {
    display: none;
  }
  .reviews .reviews__item--bloger .reviews__content .reviews__image {
    width: 100%;
  }
  .reviews .reviews__item--bloger .reviews__content .reviews__image img {
    height: 214px;
    width: auto;
  }
}
@media only screen and (max-width: 352px) {
  .reviews .reviews__months .months__text {
    padding: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .reviews--single .tests .test__product {
    position: static;
    -webkit-transform: none translateZ(0) scale(1, 1);
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transform: none;
  }
  .reviews .tests .review__quote:after {
    margin-top: 53px;
    margin-right: 0;
  }
  .reviews .tests .review__quote:before {
    position: relative;
    margin-bottom: 28px;
  }
  .reviews--single .tests .test__review h5 {
    display: none;
  }
  .reviews--single .tests .review__opinion {
    width: 50%;
    padding: 0 20px 0 10px;
  }
  .reviews--single .tests .review__quote {
    padding: 0;
  }
  .reviews--single .tests .review__marks {
    width: 50%;
    padding: 67px 10px 0 20px;
  }
  .reviews--single .tests .review__marks .marks__stars {
    padding-left: 12px;
  }
  .reviews--single .tests .test {
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    box-sizing: border-box;
    padding: 20px;
  }
  .reviews--single .tests .test__cell--33 {
    order: 2;
    -webkit-order: 2;
    -ms-order: 2;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    padding-bottom: 34%;
    margin: 10px 0;
  }
  .reviews--single .tests .test__cell--33 .test__cell--btn {
    order: 2;
    -webkit-order: 2;
    -ms-order: 2;
  }
  .reviews--single .tests .test__cell--33 .test__cell--border {
    order: 1;
    -webkit-order: 1;
    -ms-order: 1;
    min-height: 300px;
    margin-bottom: 10px;
  }
  .reviews--single .tests .test__cell--66 {
    order: 1;
    -webkit-order: 1;
    -ms-order: 1;
    width: 100%;
    margin: 10px 0;
  }
  .reviews .test__product {
    width: 100%;
  }
  .reviews .test__product .product__img {
    width: 50%;
    float: left;
    padding: 10px;
  }
  .reviews .test__product .container {
    width: 50%;
    float: left;
  }
  .reviews .test__product:after {
    content: '';
    display: table;
    clear: both;
  }
  @-moz-document url-prefix() {
    .reviews--single .tests .test__cell--33 {
      min-height: 414px;
      padding-bottom: 0;
    }
  }
  @supports (-ms-ime-align:auto) {
    .reviews--single .tests .test__cell--33 {
      min-height: 414px;
      padding-bottom: 0;
    }
  }
}
@media (max-width: 768px) {
  .reviews .tests .test {
    border: none;
    margin-bottom: 40px;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
  }
}
@media (max-width: 585px) {
  .reviews .tests .product__img > img {
    max-height: 210px;
    width: auto;
  }
  .reviews .tests .review__quote:after {
    margin-top: 0;
  }
  .reviews--single .tests .test__cell--33 {
    padding-bottom: 0;
    height: 640px;
  }
  .reviews--single .tests .test__product {
    position: relative;
    -webkit-transform: none translateZ(0) scale(1, 1);
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transform: none;
    top: 0;
  }
  .reviews--single .tests .review__marks {
    padding: 0;
  }
  .reviews--single .tests .review__marks .marks__stars {
    margin-left: -1px;
    padding: 0;
  }
  .reviews--single .tests .review__marks .marks__item {
    padding: 0 20px 20px 34px;
  }
  .reviews--single .tests .review__marks .marks__image {
    margin-bottom: -2px;
  }
  .reviews--single .tests .review__marks .marks__image img {
    width: 100%;
  }
  .reviews--single .tests .test__review {
    overflow: visible;
    padding: 0;
  }
  .reviews--single .tests .test__review a {
    display: none;
  }
  .reviews--single .tests .test {
    padding: 30px;
  }
  .reviews--single .tests .review__opinion {
    width: 100%;
    padding: 28px;
  }
  .reviews--single .tests .review__marks {
    width: 100%;
  }
  .reviews .tests .test__product {
    padding: 40px 20px;
  }
  .reviews .test__product .product__img {
    width: 100%;
  }
  .reviews .test__product .container {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .reviews .top__banner--text {
    font-size: 60px;
    padding: 15px;
  }
}
@media (max-width: 348px) {
  .reviews .tests .product__foot .btn {
    font-size: 19px;
  }
}
/*
/ Popup details
*/
@media only screen and (max-width: 990px) {
  #access-popup {
    position: absolute;
    background-color: #fff;
  }
  #access-popup.access-popup--product {
    width: 95%;
    margin: 0 auto;
    top: 10vh;
  }
  #access-popup.access-popup--product h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 600px) {
  #access-popup #head-stores > a {
    margin: 0;
  }
  #access-popup.access-popup--product h2 {
    margin-bottom: 20px;
  }
  #access-popup.access-popup--product #head-stores {
    height: 120px;
  }
  #access-popup.access-popup--product #head-stores > a {
    height: 25px;
    width: 25px;
  }
  #access-popup #head-stores {
    text-align: center;
  }
  #access-popup.access-popup--product #wrap-stores #side-bar .access-col-50 {
    width: 100%;
  }
}
