:root {
  --lblue: #52C7FE;
  --red: #F7523C;
  --dblue: #102647;
}

/* normalize */
article,aside,details,figcaption,figure,footer,header,hgroup,hr,nav,section {
  display:block
}
html {
  overflow-x: hidden;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
img {
  max-width: 100%;
  vertical-align: middle;
  font-size: 0;
}
a {
	text-decoration: none;
	outline: none !important;
  cursor: pointer;
}
button {
  background: transparent;
  border: 0;
  cursor: pointer;
}
button::-moz-focus-inner {
 border: 0;
}
select {
  appearance: none;
  -moz-appearance:none; /* Firefox */
  -webkit-appearance:none; /* Safari and Chrome */
  cursor: pointer;
}
option {
  padding: 0;
}
select::-ms-expand {
  display: none;
}
ul {
  padding: 0;
  margin: 0;
	list-style: none;
}
p, figure {
  margin: 0;
}
hr {
  display: inline-block;
  margin: 0;
  width: 100%;
  border: 0;
}
label {
  display: block;
  text-align: left;
  cursor: pointer;
}
.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  margin: auto;
}
.row {
  margin: 0 -15px;
}
.spinner-master {
  display: none;
}
.spinner-master input[type=checkbox] {
  display: none;
}
.flx {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.flx-c {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
}
.flx-w {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}
.sb-c {
  align-items: center;
  justify-content: space-between;
}
*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { display: table; content: ''; }
.clearfix:after { clear: both; }
/* normalize */

body {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
}

input, select, textarea, button, a {
  padding: 0;
  margin: 0;
  outline: none !important;
  font-family: 'Ubuntu', sans-serif;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
}

.overflow-hidden {
  overflow: hidden;
  padding-right: 17px;
}

.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: black;
  opacity: 0.6;
  display: none;
  z-index: 10;
}

body.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.ios-wrap {
  position: relative;
  /* adding sticky header */
  /* overflow: hidden; */
  min-height: 100vh;
}

/* Tlacitka */

.button {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 30px;
  border-radius: 3px;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.button.border {
  height: 55px;
  line-height: 55px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  padding: 0 60px;
  transition: all .25s ease-in-out;
}
.button.red {
  background: #f7523c;
  transition: all .25s ease-in-out;
}
.button.grey {
  background: #252d3e;
  transition: all .25s ease-in-out;
}
/* Isi */
.button.isi::before {
	content: '';
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 100%;
	margin: -20px 0 0 1px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transform: scale3d(1, 2, 1);
	transform: scale3d(1, 2, 1);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.9,1);
	transition-timing-function: cubic-bezier(0.7,0,0.9,1);
}
.button.isi:hover::before {
	-webkit-transform: scale3d(9, 9, 1);
	transform: scale3d(9, 9, 1);
}
.button.red.isi::before {
  background: #C54130;
}
.button.grey.isi::before {
  background: #191F2B;
}

/* Tlacitka */

/* MODAL login */

.modal-handler {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
  z-index: 32;
  justify-content: center;
  align-items: center;
  opacity: 0;
  left: 0;
  top: 0;
}

.modal-content {
  display: inline-block;
  position: relative;
  width: 340px;
  border-radius: 3px;
  text-align: left;
  overflow: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 30px);
  max-width: calc(100vw - 30px);
  font-size: 14px;
  background: #fff;
}

/* inputy selecty textarea */
.box-input {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 10px;
  position: relative;
}
.box-input.w75 {
  width: 75%;
}
.box-input.w60 {
  width: 60%;
}
.box-input.w50 {
  width: 50%;
}
.box-input.w40 {
  width: 40%;
}
.box-input.w30 {
  width: 30%;
}
.box-input.w25 {
  width: 25%;
}
.box-input.w20 {
  width: 20%;
}
.box-input.w15 {
  width: 15%;
}

.box-input label {
  color: #636363;
  font-size: 14px;
  margin-bottom: 5px;
}

.box-input label span {
  color: #f7523c;
}

.box-input input {
  width: 100%;
  height: 40px;
  border-radius: 3px;
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 0 15px;
  line-height: 38px;
  color: black;
  transition: all .2s ease;
  font-size: 12px;
  box-shadow: none !important;
}

.box-input input[type=number] {
  appearance: textfield;
  -moz-appearance:textfield; /* Firefox */
  -webkit-appearance:textfield; /* Safari and Chrome */
}

.box-input input:focus, .box-input input:hover {
  border: 1px solid #f7523c;
}

.box-input select {
  width: 100%;
  height: 40px;
  border: 1px solid #cfcfcf;
  background: #fff url("/img/arrow-select.svg") no-repeat center right 15px;
  padding-left: 15px;
  padding-right: 30px;
  line-height: 38px;
  color: black;
  transition: all .2s ease;
  font-size: 14px;
  box-shadow: none !important;
}

.box-input select:focus, .box-input select:hover {
  border: 1px solid #f7523c;
}

.box-input textarea {
  width: 100%;
  height: 80px;
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 6px 15px;
  line-height: 20px;
  color: black;
  transition: all .2s ease;
  font-size: 12px;
  resize: none;
  box-shadow: none !important;
}

.box-input textarea:focus, .box-input textarea:hover {
  border: 1px solid #f7523c;
}

label.error {
  position: absolute !important;
  top: auto !important;
  bottom: -28px !important;
  right: 15px !important;
  color: #5d514b !important;
  text-transform: none !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #bdbdbd;
  padding: 2px 10px !important;
}

label.error:after, label.error:before {
  content: "";
  position: absolute;
  right: 10px;
  border: 8px solid transparent !important;
}

label.error:after {
  top: -15px;
  border-bottom: 8px solid #fff !important;
  z-index: 2;
}

label.error:before {
  top: -16px !important;
  border-bottom: 8px solid #bdbdbd !important;
}

.checkbox-styled label.error {
  left: 0;
  right: auto !important;
  bottom: 23px !important;
}

.checkbox-styled label.error:after, .checkbox-styled label.error:before {
  left: -1px;
  right: auto;
  border-bottom: 8px solid transparent !important;
  background: transparent !important;
}

.checkbox-styled label.error:after {
  top: 16px;
  border-top: 8px solid #fff !important;
  z-index: 2;
}

.checkbox-styled label.error:before {
  top: 17px !important;
  border-top: 8px solid #bdbdbd !important;
}

.box-input input.error {
  border: 1px solid #d52e2e;
  background: url("/img/fail.png") no-repeat top 10px right 10px;
}

.box-input input.valid {
  border: 1px solid #299a18;
  background: url("/img/valid.png") no-repeat top 10px right 10px;
}

/* scroll top */

.scrollToTop {
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 12;
  height: 40px;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  display: none;
}

.scrollToTop i {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #f7523c url("/img/arrowtop.svg") no-repeat center center;
}

.scrollToTop span {
  background: #f7523c;
  height: 40px;
  line-height: 40px;
  color: #fff;
  float: left;
  position: absolute;
  right: 0;
  padding: 0 15px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.scrollToTop:hover span {
  position: relative;
  opacity: 1;
  visibility: visible;
}

header.subpage {
  position: relative;
}

.menu-top {
  padding-bottom: 10px;
}

.menu-top .logo {
  position: relative;
  top: 40px;
  z-index: 8;
}

.menu-top-right-side {
  width: 100%;
  max-width: 860px;
  padding-left: 30px;
}

header.subpage .change-domain, header.subpage .right-content {
  position: relative;
  z-index: 9;
}

.menu-top ul li {
  display: inline-block;
  margin-right: 15px;
}

.menu-top ul li a {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  transition: all .25s ease-in-out;
}

.menu-top ul li a:hover {
  color: #f7523c;
}

.menu-top ul li a img {
  margin-right: 10px;
}

.menu-top .button {
  margin-right: 30px;
}

.cart-button {
  display: inline-block;
  text-align: center;
  position: relative;
  height: 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.cart-button span {
  position: absolute;
  left: -1px;
  top: -1px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  background: #f7523c;
  line-height: 16px;
  font-size: 13px;
}

.cart-button strong {
  display: block;
  margin: auto;
  margin-top: 3px;
  transition: all .3s ease;
  white-space: nowrap;
}

.cart-button:hover strong {
  color: #f7523c;
}

.change-domain {
  /* margin-left: 20px; */ 
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.change-domain a {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  width: 30px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all .25s ease-in-out;
}

.change-domain span {
  display: inline-block;
  width: 1px;
  height: 20px;
  background: rgb(46,47,51);
  position: relative;
  top: 10px;
}

.change-domain a:hover {
  background: #2e2e2e;
}

nav {
  text-align: right;
}

header.subpage nav {
  position: relative;
  z-index: 2;
}

nav .container > ul {
  padding-top: 10px;
  display: inline-block;
  position: relative;
}

nav .container > ul::before {
  content: "";
  height: 1px;
  width: calc(100% - 60px);
  background: #2e2e2e;
  position: absolute;
  top: 0;
  right: 0;
}

nav ul li {
  display: inline-block;
  margin-left: 30px;
}

nav ul li.has-sub {
  position: relative;
}

nav ul li a {
  text-transform: uppercase;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .25s ease-in-out;
  position: relative;
}

nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #f7523c;
  opacity: 0;
  transition: width .3s ease-in-out;
}

nav ul li a:hover::before, nav ul li.active a::before {
  opacity: 1;
  width: 100%;
}

nav ul li a:hover {
  color: #f7523c;
}

nav ul li.has-sub a {
  padding: 0 10px;
}

nav ul li.has-sub > a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  transition: all .25s ease-in-out;
  background: url("/img/menu-arrow.svg") no-repeat center;
  width: 11px;
  height: 7px;
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

nav ul li.has-sub:hover a::after {
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

nav ul li.has-sub.open a::after {
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

nav ul li.has-sub ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 49px;
  left: -15px;
  transition: all .25s ease-in-out;
  background: #f0f0f5;
  padding: 5px 15px;
  text-align: left;
  z-index: 3;
}

nav ul li.has-sub:hover ul {
  opacity: 1;
  visibility: visible;
}

nav ul li.has-sub ul li {
  white-space: nowrap;
  margin-left: 0;
}

nav ul li.has-sub ul li a {
  margin: 5px 0;
  line-height: 30px;
  height: 30px;
}

main {
  display: block;
  width: 100%;
  height: 85vh;
  background: black;
  position: relative;
  margin-bottom: 100px;
}

.bcgs {
  position: absolute;
  left: 33vw;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 1;
  transform: skew(20deg);
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 1750px) {
  .bcgs {
    left: 31vw;
    left: 28vw;
  }
}
@media (max-width: 1400px) {
  .bcgs {
    left: 28vw;
  }
  header.subpage .bcgs.another {
    left: 23vw;
  }
}

.bcgs.another {
  display: none;
}
header.subpage .bcgs.another {
  display: inline-block;
}
.bcgs .bcgrel {
  position: relative;
  left: -22px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  opacity: 0;
  animation-delay:0.5s;
  animation-name: slideDown;
  animation-timing-function: ease-out;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;

  -moz-animation-delay:0.5s;
  -moz-animation-name: slideDown;
  -moz-animation-timing-function: ease-out;
  -moz-animation-duration: 1s;
  -moz-animation-iteration-count: 1;
  -moz-animation-fill-mode: forwards;

  -webkit-animation-delay:0.5s;
  -webkit-animation-name: slideDown;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
}

header.subpage .bcgs.another .bcgrel {
  height: 155px;
  overflow: hidden;
}

.bcgs .bcgrel2 {
  align-items: flex-end;
}
.bcgs .bcg {
  width: 16px;
  background: #fff;
  margin-left: -1px;
}
.bcgs .bcgrel2 {
  margin-left: -3px;
}
.bcgs .bcgrel2 .bcg {
  margin-left: 0;
}
.bcgs .bcg.blue {
  height: 160px;
  background: #52c7fe;
}
.bcgs .bcg.red {
  height: 220px;
  background: #f7523c;
}
.bcgs .bcg.purple {
  height: 280px;
  background: #102647;
}
.bcgs .bcgrel2 .bcg.blue {
  height: 120px;
}
.bcgs .bcgrel2 .bcg.red {
  height: 100px;
}
.bcgs .bcgrel2 .bcg.purple {
  height: 80px;
}

.menu-top-right-side ul {
  position: relative;
  z-index: 2;
}

/* Icons */
.nav {
  justify-content: center;
  position: relative;
  z-index: 7;
}

.nav__arrow {
	display: inline-block;
	position: relative;
	height: 100px;
	width: 410px;
	border: 0;
  background: #902e21;
  top: -30px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  -webkit-transition: background 300ms ease-in-out;
  -ms-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}

.nav__arrow.active {
  top: -50px;
  background: #f7523c;
}

.nav__arrow:hover {
  background: #cf4330;
}

.nav__arrow--prev {
  border-radius: 100px 0 0 100px;
  margin-right: 33px;
  padding-left: 150px;
}

.nav__arrow--next {
  border-radius: 0 100px 100px 0;
  margin-left: 32px;
  padding-right: 150px;
}
.nav__arrow--next.active {
  margin-left: 17px;
}

.nav__arrow .img {
	position: absolute;
	top: 0;
	width: 100px;
	height: 100px;
  line-height: 100px;
	border-radius: 50%;
	display: inline-block;
	background: #902e21;
}

.nav__arrow.active .img {
	background: #cf4330;
}

.nav__arrow .img img {
  max-width: unset;
  position: relative;
  top: -5px;
}
.nav__arrow--next .img img {
  right: 35px;
}

.nav__arrow--prev .img {
  left: 0;
}
.nav__arrow--next .img {
  right: 0;
}

.nav__arrow:after {
	content: "";
	position: absolute;
	top: 0;
	width: 60px;
	height: 100px;
	background: #902e21;
  z-index: -1;
  -webkit-transition: background 300ms ease-in-out;
  -ms-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}

.nav__arrow.active:after {
	background: #f7523c;
}

.nav__arrow:hover:after {
	background: #cf4330;
}

.nav__arrow--prev:after {
  right: -29px;
	transform: skew(20deg);
}
.nav__arrow--next:after {
  left: -29px;
	transform: skew(20deg);
}

.slideshow {
	width: 100%;
	height: 100%;
	position: relative;
  background: black url("/img/pozadi.jpg") no-repeat center;
  background-size: cover;
  margin: auto;
}

.slideshow .slide {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	width: 100%;
  height: 100%;
  perspective: 1000px;
}

.slideshow .slide.current {
	pointer-events: auto;
	z-index: 5;
	opacity: 1;
}

.tilter__figure-img {
  width: calc(100% - 40%);
  max-width: 1024px;
  height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
  background-position: 15% 110%;
  background-size: 90%;
  transform: translate3d(0,0,0);
  will-change: transform;
}

.tilter__figure2 .tilter__figure-img {
  background-position: 55px 90%;
  background-size: 100%;
}

.description-content {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  justify-content: flex-end;
  color: #fff;
  padding-right: 30px;
}

.description-content .center {
  display: inline-block;
  text-align: right;
  margin-top: 90px;
  z-index: 2;
}

.tilter__figure, .tilter__figure2 {
	margin: 0;
	width: 100%;
	height: 100%;
	display: block;
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 1024px) {

  @keyframes slideDown{
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes slideInFromLeft {
    0% {
      transform: translateX(-30%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .tilter__figure, .tilter__figure2 {
    opacity: 0;
    -moz-transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
  }

  .fadein-left {
    animation: .7s ease-out 0s 1 slideInFromLeft;
  }

  .current .fadein-left {
    opacity: 1;
  }
}

.tilter__figure > *, .tilter__figure2 > * {
	transform: translateZ(0px); /* Force correct stacking order */
}

.description-content h2 {
  font-size: 45px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.description-content ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-content: center;
  justify-content: flex-end;
  margin-bottom: 50px;
}

.description-content ul li {
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
}

.description-content ul li img {
  margin-right: 10px;
}

.description-content ul li::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 25px;
  margin: 0 25px;
  border-right: 1px solid #6b6b6b;
}

.description-content ul li:last-child::after {
  display: none;
}

.description-content p {
  font-size: 22px;
}

.description-content p strong {
  font-size: 30px;
}

.description-content .button {
  background: #f7523c;
  font-size: 15px;
  font-weight: 700;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  padding-right: 40px;
  margin-top: 30px;
}

.description-content .button:hover {
  background: #C54130;
}

.description-content .button span {
   margin-left: 10px;
   position: relative;
}

.description-content .button span i {
  display: inline-block;
  width: 18px;
  height: 13px;
  background: url("/img/arrow-button.svg") repeat center;
  margin: 0 2px;
  position: absolute;
  left: -6px;
  top: 2px;
}

.description-content .button:hover span {
  -webkit-animation: flickerAnimation 1s infinite;
  -moz-animation: flickerAnimation 1s infinite;
  -o-animation: flickerAnimation 1s infinite;
   animation: flickerAnimation 1s infinite;
}

.description-content .button:hover span i {
  -webkit-animation: slide 1s linear infinite;
  -moz-animation: slide 1s linear infinite;
  -o-animation: slide 1s linear infinite;
   animation: slide 1s linear infinite;
}

@keyframes slide {
  0%   { left:-6px; }
  100% { left:12px; }
}
@-o-keyframes slide{
  0%   { left:-6px; }
  100% { left:12px; }
}
@-moz-keyframes slide{
  0%   { left:-6px; }
  100% { left:12px; }
}
@-webkit-keyframes slide{
  0%   { left:-6px; }
  100% { left:12px; }
}

@keyframes flickerAnimation {
  0%   { opacity:1; }
  100%  { opacity:0; }
}
@-o-keyframes flickerAnimation{
  0%   { opacity:1; }
  100%  { opacity:0; }
}
@-moz-keyframes flickerAnimation{
  0%   { opacity:1; }
  100%  { opacity:0; }
}
@-webkit-keyframes flickerAnimation{
  0%   { opacity:1; }
  100%  { opacity:0; }
}

.title {
  color: #102647;
  font-size: 45px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  margin: 30px 0;
}

.title::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -22px;
  background: rgba(0, 0, 100, 0.05);
  width: 100px;
  height: 100px;
  transform: skew(15deg);
}

.termstitle::before {
  height: 180px;
}

.how-does-it-work {
  text-align: center;
}

.how-does-it-work .hdiw-content {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.how-does-it-work .hdiw-content:nth-child(odd) {
  flex-direction: row-reverse;
}

.how-does-it-work .images, .how-does-it-work .descri {
  width: calc(50% - 65px);
}

.how-does-it-work .images {
  text-align: right;
  position: relative;
}

.how-does-it-work .hdiw-content:nth-child(odd) .images {
  text-align: left;
}

.how-does-it-work .number {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: #1a202e;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 70px;
  margin: 0 30px;
  position: relative;
}

.how-does-it-work.arb .number:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -9px;
  top: 75px;
  background: url("/img/arrowtrick.svg") repeat-y center;
  width: 19px;
  height: 135px;
  opacity: .08;
}

.how-does-it-work.arb .hdiw-content:nth-child(4) .number:after {
  display: none;
}

.how-does-it-work .descri {
  text-align: left;
  color: #000;
  font-size: 15px;
  line-height: 25px;
}

.how-does-it-work .hdiw-content:nth-child(odd) .descri {
  text-align: right;
}

.bgimg {
  width: 400px;
  background: #f1f6f8;
  position: absolute;
  z-index: -1;
}

.bgimg1 {
  height: 150px;
  right: -120px;
  top: 40px;
  border-radius: 88% 41% 100% 62% / 82% 73% 94% 88%;
  -webkit-animation: a1 3s infinite;
  -moz-animation: a1 3s infinite;
  -o-animation: a1 3s infinite;
   animation: a1 3s infinite;
}
.bgimg2 {
  left: -120px;
  top: 20px;
  height: 120px;
  border-radius: 71% 78% 92% 54% / 54% 46% 94% 93%;
  -webkit-animation: a2 3s infinite;
  -moz-animation: a2 3s infinite;
  -o-animation: a2 3s infinite;
   animation: a2 3s infinite;
   animation-delay: .5s;
}
.bgimg3 {
  width: 350px;
  height: 160px;
  right: -120px;
  border-radius: 97% 35% 72% 79% / 100% 58% 100% 66%;
  -webkit-animation: a3 3s infinite;
  -moz-animation: a3 3s infinite;
  -o-animation: a3 3s infinite;
   animation: a3 3s infinite;
   animation-delay: 1s;
}

@keyframes a1 {
  0%   { border-radius: 88% 41% 100% 62% / 82% 73% 94% 88%; }
  50%  { border-radius: 68% 21% 80% 42% / 92% 83% 84% 98%; }
  100%   { border-radius: 88% 41% 100% 62% / 82% 73% 94% 88%; }
}
@-o-keyframes a1{
  0%   { border-radius: 88% 41% 100% 62% / 82% 73% 94% 88%; }
  50%  { border-radius: 68% 21% 80% 42% / 92% 83% 84% 98%; }
  100%   { border-radius: 88% 41% 100% 62% / 82% 73% 94% 88%; }
}
@-moz-keyframes a1{
  0%   { border-radius: 88% 41% 100% 62% / 82% 73% 94% 88%; }
  50%  { border-radius: 68% 21% 80% 42% / 92% 83% 84% 98%; }
  100%   { border-radius: 88% 41% 100% 62% / 82% 73% 94% 88%; }
}
@-webkit-keyframes a1{
  0%   { border-radius: 88% 41% 100% 62% / 82% 73% 94% 88%; }
  50%  { border-radius: 68% 21% 80% 42% / 92% 83% 84% 98%; }
  100%   { border-radius: 88% 41% 100% 62% / 82% 73% 94% 88%; }
}
@keyframes a2 {
  0%   { border-radius: 71% 78% 92% 54% / 54% 46% 94% 93%; }
  50%  { border-radius: 68% 21% 80% 42% / 92% 83% 84% 98%; }
  100%   { border-radius: 71% 78% 92% 54% / 54% 46% 94% 93%; }
}
@-o-keyframes a2{
  0%   { border-radius: 71% 78% 92% 54% / 54% 46% 94% 93%; }
  50%  { border-radius: 68% 21% 80% 42% / 92% 83% 84% 98%; }
  100%   { border-radius: 71% 78% 92% 54% / 54% 46% 94% 93%; }
}
@-moz-keyframes a2{
  0%   { border-radius: 71% 78% 92% 54% / 54% 46% 94% 93%; }
  50%  { border-radius: 68% 21% 80% 42% / 92% 83% 84% 98%; }
  100%   { border-radius: 71% 78% 92% 54% / 54% 46% 94% 93%; }
}
@-webkit-keyframes a2{
  0%   { border-radius: 71% 78% 92% 54% / 54% 46% 94% 93%; }
  50%  { border-radius: 68% 21% 80% 42% / 92% 83% 84% 98%; }
  100%   { border-radius: 71% 78% 92% 54% / 54% 46% 94% 93%; }
}
@keyframes a3 {
  0%   { border-radius: 97% 35% 72% 79% / 100% 58% 100% 66%; }
  50%  { border-radius: 68% 21% 80% 42% / 92% 83% 84% 98%; }
  100%   { border-radius: 97% 35% 72% 79% / 100% 58% 100% 66%; }
}
@-o-keyframes a3{
  0%   { border-radius: 97% 35% 72% 79% / 100% 58% 100% 66%; }
  50%  { border-radius: 68% 21% 80% 42% / 92% 83% 84% 98%; }
  100%   { border-radius: 97% 35% 72% 79% / 100% 58% 100% 66%; }
}
@-moz-keyframes a3{
  0%   { border-radius: 97% 35% 72% 79% / 100% 58% 100% 66%; }
  50%  { border-radius: 68% 21% 80% 42% / 92% 83% 84% 98%; }
  100%   { border-radius: 97% 35% 72% 79% / 100% 58% 100% 66%; }
}
@-webkit-keyframes a3{
  0%   { border-radius: 97% 35% 72% 79% / 100% 58% 100% 66%; }
  50%  { border-radius: 68% 21% 80% 42% / 92% 83% 84% 98%; }
  100%   { border-radius: 97% 35% 72% 79% / 100% 58% 100% 66%; }
}

.center-button {
  margin-top: 50px;
}

.buy-as-gift {
  background: url("/img/buy-as-bg.jpg") no-repeat center center;
  background-size: cover;
  padding: 70px 0;
}

.buy-as-gift .left-side, .buy-as-gift .right-side {
  width: 50%;
}

.buy-as-gift .right-side {
  text-align: right;
  padding-left: 30px;
}

.buy-as-gift h3 {
  color: #fff;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 30px;
}

.buy-as-gift p {
  color: #bdbfc2;
  font-size: 15px;
  line-height: 25px;
}

.video-recording {
  background: #fff;
  padding: 90px 0;
}

.video-recording .left-side, .video-recording .right-side {
  width: 50%;
}

.video-recording .right-side {
  text-align: right;
  padding-left: 30px;
}

.video-recording .img-left {
  position: relative;
}

.video-recording h4 {
  color: #102647;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 30px;
}

.video-recording p {
  color: #000;
  font-size: 15px;
  line-height: 25px;
}

.video-recording .img-left {
  margin-right: 40px;
}

.video-recording .img-left .bgimg {
  z-index: 1;
  width: 200px;
  top: -40px;
  right: -100px;
}

.video-recording .img-left img, .video-recording .txt {
  position: relative;
  z-index: 2;
}

.video-recording .img-left img {
  height: 70px;
  width: 63px;
  max-width: unset;
}

.play-video {
  position: relative;
}

.play-video:not(.hide-button)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  border: 30px solid transparent;
  border-left: 50px solid #fff;
  opacity: .9;
  transition: all .3s ease;
}

.play-video:hover::after {
  border-left: 40px solid #f7523c;
  opacity: 1;
}

.fb-ig-feed {
  position: relative;
}

.fb-ig-feed .images {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100vw;
  max-width: 100%;
  box-sizing:border-box;
}

.fb-ig-feed .images div.bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  height: 160px;
  width: 160px;
}

.fb-ig-feed .fb-ig-title {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 380px;
  height: 90px;
  margin-top: -45px;
  margin-left: -190px;
  line-height: 90px;
  border-radius: 3px;
  background: #fff;
  opacity: 0.9;
  text-align: center;
}

.fb-ig-feed .fb-ig-title a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 35px;
  text-transform: uppercase;
  margin: 0 20px;
  transition: all .3s ease-in-out;
}

.fb-ig-feed .fb-ig-title a:hover {
  color: #f7523c;
}

.fb-ig-feed .fb-ig-title a img {
  margin-right: 10px;
  transform: scale(0.9);
  transition: all .3s ease-in-out;
}

.fb-ig-feed .fb-ig-title a:hover img {
  transform: scale(1);
}

footer {
  padding: 60px 15px 0 15px;
  background: url("/img/footerbg.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}

footer .container {
  position: relative;
  z-index: 2;
  justify-content: space-between;
}

footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: .8;
}

footer p {
  color: #7c8498;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

footer ul li, footer ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 35px;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

footer ul li a:hover {
  color: #f7523c;
}

footer .contact {
  margin-top: 20px;
}

footer .contact span {
  display: inline-block;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
  background: #f6f7fa;
  margin-right: 15px;
}

footer .contact strong {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  display: block;
}

.bgtrick {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 63px;
  left: -20px;
}
.bgtrick .bg {
  height: 13px;
  transform: skew(20deg);
  display: inline-block;
}
.bgtrick .bg1 {
  background: #52c7fe;
  width: 200px;
}
.bgtrick .bg2 {
  background: #f7523c;
  width: 250px;
}
.bgtrick .bg3 {
  background: #102647;
  width: 300px;
}

footer .copyright {
  border-top: 1px solid #313746;
  padding: 20px 0;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

footer .copyright p {
  font-size: 12px;
}

footer .copyright a {
  color: #7c8498;
  text-decoration: none;
  margin-left: 10px;
}

footer .copyright a:hover {
  color: white;
}

/* HOMEPAGE */

/* JAK TO FUNGUJE */

.breadcrumb {
  margin-top: 50px;
}

.breadcrumb li {
  display: inline-block;
}

.breadcrumb li a {
  font-size: 14px;
  line-height: 25px;
  transition: all .3s ease;
  color: #464646;
  text-decoration: underline;
}

.breadcrumb li:last-child a {
  color: #a4a4a4;
  text-decoration: none;
  pointer-events: none;
}

.breadcrumb li + li a::before {
  content: "";
  background: url("/img/breadarrow.svg") no-repeat center;
  display: inline-block;
  margin: 0 20px;
  width: 24px;
  height: 10px;
}

.breadcrumb li a:hover {
  color: #f7523c;
}

.how-does-it-work .left-part {
  width: 40%;
  text-align: left;
  position: relative;
  z-index: 5;
}

.how-does-it-work .left-part p {
  color: #000;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 40px;
}

.how-does-it-work .right-part {
  width: 60%;
  padding-left: 60px;
}

.how-does-it-work .right-part .hdiw-content:nth-child(2n+1) .descri {
  text-align: left;
}

.how-does-it-work .right-part .hdiw-content:nth-child(odd) {
  flex-direction: row;
}

.how-does-it-work .right-part .hdiw-content:nth-child(odd) .number {
  order: -1;
  margin-left: 0;
}

.how-does-it-work .right-part .hdiw-content:nth-child(even) {
  flex-direction: row-reverse;
}

.how-does-it-work .right-part .hdiw-content {
  margin-top: 0;
}

.how-does-it-work .right-part .bgimg1 {
  right: -20px;
  top: 20px;
}

.how-does-it-work .right-part .bgimg3 {
  right: 20px;
}

.pb100 {
  padding-bottom: 100px;
}

.how-does-it-work .row-rev {
  flex-direction: row-reverse;
}

.how-does-it-work .row-rev .left-part {
  width: 55%;
  padding-left: 40px;
}

.how-does-it-work .row-rev .right-part {
  width: 45%;
  padding-left: 0;
  position: relative;
}

.how-does-it-work .row-rev .right-part img {
  position: absolute;
  left: -200px;
  top: 50px;
  max-width: calc(100% - -200px);
}

.how-does-it-work .places {
  margin-top: 30px;
}

.how-does-it-work .places div {
  margin-right: 60px;
}

.how-does-it-work .places img {
  margin-right: 20px;
}

.how-does-it-work .places p {
  color: #707070;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 0;
}

.how-does-it-work .places strong {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.how-does-it-work .left-part p.cena {
  margin-bottom: 0 !important;
}

.how-does-it-work .left-part p.cena strong {
  display: block;
  color: #f7523c;
  font-size: 35px;
  font-weight: 700;
}

.how-does-it-work.newstyle .right-part {
  justify-content: flex-end;
}

.how-does-it-work.newstyle .left-part p {
  margin-bottom: 20px;
}

/* JAK TO FUNGUJE */

/* NASE VOZY */

.car-detail-content {
  margin-bottom: 50px;
}

.car-detail-content .left-part, .car-detail-content .right-part {
  width: 50%;
  position: relative;
}

.car-detail-content .right-part {
  padding-left: 50px;
}

.car-detail-content .right-part .button {
  height: 50px;
  line-height: 50px;
  padding: 0 40px;
}

.car-detail-content .bgformule {
  background: url("/img/formulebg.jpg") no-repeat left center;
  background-size: contain;
  position: absolute;
  left: -300px;
  top: 40px;
  width: 766px;
  height: 355px;
}

.car-detail-content .left-part img {
  position: absolute;
  top: 60px;
  left: -220px;
  z-index: 2;
  min-width: 817px;
  min-height: 342px;
}

.car-detail-content .dsc {
  color: #4b4b4b;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 20px;
}

.car-detail .description-content {
  padding-right: 0;
  color: #f7523c;
  border-top: 1px solid #d2d2d2;
  padding-top: 30px;
}

.car-detail .description-content ul {
  margin-bottom: 0;
  justify-content: flex-start;
}

.car-detail .description-content ul li {
  margin-right: 50px;
}

.car-detail .description-content ul li::after {
  display: none;
}

.car-detail-content .right-part .price {
  color: #4b4b4b;
  font-size: 14px;
  margin-top: 40px;
}

.car-detail-content .right-part .price strong {
  color: #000;
  font-size: 30px;
}

.car-detail-content.another {
  margin-bottom: 170px;
}

.car-detail-content.another .left-part {
  padding-right: 50px;
}

.car-detail-content.another .dsc {
  margin-bottom: 30px;
}

.car-detail-content .bgblack {
  position: absolute;
  right: calc(-50vw - -70%);
  top: 10px;
  background: black;
  transform: skew(20deg);
  width: 50vw;
  height: 540px;
}

.car-detail-content.another .right-part {
  padding-left: 0px;
}

.car-detail-content .images-view {
  justify-content: flex-end;
  position: relative;
  top: 80px;
  left: 50px;
  width: 460px;
}

.car-detail-content .images-view img {
  width: calc(50% - 30px);
  margin-left: 30px;
  margin-bottom: 30px;
}

.free-terms {
  margin: 0 -35px;
  position: relative;
  max-height: 425px;
}

.free-terms::before {
  content: "";
  position: absolute;
  bottom: -55px;
  left: 0;
  width: 100%;
  height: 270px;
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 75%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
  z-index: 2;
}

.free-terms.open {
  margin-bottom: 55px;
  max-height: unset;
}

.free-terms.open::before {
  display: none;
}

.free-terms .free-date {
  width: 25%;
  padding: 0 35px;
  margin-top: 35px;
}

.free-terms .free-date-header {
  padding: 20px;
  background: #252d3e;
}

.free-terms .free-date-header img {
  margin-right: 30px;
}

.free-terms .free-date-header p {
  color: #6d7487;
  font-size: 12px;
}

.free-terms .free-date-header p strong {
  color: #fff;
  font-size: 20px;
  line-height: 22px;
  display: block;
}

.free-terms .free-date-body {
  border-bottom: 2px solid #f5f6f8;
  padding: 10px 0;
}

.free-terms .free-date-body p {
  position: relative;
  color: #000;
  font-size: 14px;
  margin: 15px 0;
  padding-left: 60px;
}

.free-terms .free-date-body p img {
  position: absolute;
  left: 0;
  top: 0;
}

.center-relative-button {
  position: relative;
  top: -115px;
  z-index: 5;
  text-align: center;
}

.mb0 {
  margin-bottom: 0;
}

/* NASE VOZY */

/* NAS CENIK */

.price-list .w70p-content {
  width: 65%;
  padding-right: 100px;
}

.price-list p.choose {
  color: #000;
  font-size: 14px;
  line-height: 30px;
}

.price-list p.choose img {
  margin-right: 15px;
}

.choose-car .w33 {
  width: 33.333%;
  padding: 0 15px;
  margin-top: 30px;
}

.radio-styled input {
  position: absolute;
  opacity: 0;
}

.radio-styled label {
  height: 145px;
  border-radius: 3px;
  background: #f1f6f8;
  border: 2px solid #f1f6f8;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  backface-visibility: hidden;
  outline: none;
  transition: all .25s ease-in-out;
}

.radio-styled input:checked + label, .radio-styled label:hover {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  background: #fff;
  border: 2px solid #f7523c;
}
.radio-styled label .img {
  width: 150px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.radio-styled .ariel .img {
  background-image: url("/img/ariel-ico-off.svg");
}
.radio-styled input:checked + .ariel .img {
  background-image: url("/img/ariel-ico.svg");
}
.radio-styled .renault .img {
  background-image: url("/img/formule-ico-off.svg");
}
.radio-styled input:checked + .renault .img {
  background-image: url("/img/formule-ico.svg");
}
.radio-styled .racingday .img {
  background-image: url("/img/both-ico-off.svg");
}
.radio-styled input:checked + .racingday .img {
  background-image: url("/img/both-ico.svg");
}

.radio-styled label p {
  color: #cfd4e3;
  font-size: 18px;
  font-weight: 500;
  pointer-events: none;
  margin-top: 10px;
  text-align: center;
}

.radio-styled input:checked + label p {
  color: black;
}

.number-of-rounds {
  width: 100%;
  margin-top: 50px;
}

.number-of-rounds h2 {
  color: #252d3e;
  font-size: 22px;
  font-weight: 700;
  margin-right: 30px;
  margin-top: 5px;
}

.swipe-area {
  position: relative;
  height: 100px;
  flex: auto;
}

.swipe-area hr {
  position: absolute;
  top: 17px;
  left: 15px;
  height: 2px;
  background: #e8ebf2;
  width: calc(100% - 30px);
}

.swipe-area-holder {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  opacity: .5;
  pointer-events: none;
}

.swipe-area-holder.actived {
  opacity: 1;
  pointer-events: auto;
}

.swipe-area .point label {
  width: 36px;
  height: 36px;
  background: transparent;
  border-radius: 50%;
  display: inline-block;
  z-index: 2;
  position: relative;
}

.swipe-area .point input {
  position: absolute;
  opacity: 0;
}

.swipe-area .point label::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #e8ebf2;
  position: absolute;
  top: 13px;
  left: 13px;
  border-radius: 50%;
}

.swipe-area .point input:checked + label {
  background: #f7523c;
}
.swipe-area .point input:checked + label::after {
  background: #f7523c;
}

.swipe-area .point input:checked + label::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 11px;
  background: url("/img/arrows.svg") no-repeat center;
  width: 21px;
  height: 13px;
}

.swipe-area .point label .rounds {
  text-align: center;
  position: absolute;
  max-width: 70px;
  left: 50%;
  top: 35px;
  padding-top: 5px;
  transform: translate(-50%, 0%);
  color: #000;
  font-size: 14px;
  width: 70px;
}

.order-detail .swipe-area-holder .point:nth-child(1) label .rounds {
  left: 55px;
}

.number-of-rounds .price-rounds {
  text-align: right;
  margin-left: 30px;
  margin-top: 5px;
}

.number-of-rounds .price-rounds .price {
  color: #f7523c;
  font-size: 20px;
  font-weight: 700;
}

.number-of-rounds .price-rounds .priceEur {
  color: #cfd4e3;
  font-size: 14px;
  font-weight: 700;
}

.price-table {
  width: 100%;
  border-bottom: 1px solid #cfd4e3;
  margin-top: 30px;
}

.price-table:last-child {
  border-bottom: 0;
}

.price-table tr th {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}

.price-table tr td:nth-child(2) {
  text-align: right;
}

.price-table td strong {
  color: #f7523c;
  font-size: 20px;
}

.price-table td span {
  color: #cfd4e3;
  font-size: 20px;
  font-weight: 500;
}

.price-table td p {
  color: #000;
  font-size: 14px;
  line-height: 30px;
  margin: 15px 0 30px 0;
}

.price-table:last-child td p {
  margin-bottom: 0;
}

aside {
  max-width: 400px;
  width: 35%;
  padding: 30px;
  text-align: center;
  box-shadow: 0 1px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #fff;
  align-self: flex-start;
  position: relative;
}

aside::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -30px;
  background: #eaf7fd;
  transform: skew(20deg);
  width: calc(100% - 60px);
  height: calc(100% - -60px);
  z-index: -1;
}

aside h3 {
  color: #102647;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 10px;
}

aside .pocet-kol {
  color: #000;
  font-size: 14px;
  margin-bottom: 20px;
}

aside .pocet-kol img {
  margin-right: 10px;
}

aside .img {
  margin-bottom: 30px;
  height: 70px;
  line-height: 68px;
  display: inline-block;
}

aside .img img {
  width: 200px;
}

aside .img .placeholder {
  width: 200px;
  font-size: 18px;
  color: black;
}


aside .all-price {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

aside .all-price p {
  margin: 0 2px;
}

aside .price {
  color: #f7523c;
  font-size: 35px;
  font-weight: 700;
}

aside .priceEur {
  color: #cfd4e3;
  font-size: 20px;
  font-weight: 700;
}

aside .description-content {
  padding-right: 0;
}

aside .description-content .button {
  height: 50px;
  line-height: 50px;
  margin-top: 10px;
  padding: 0 40px;
}

aside .seznam {
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: underline;
  transition: all .3s ease-in-out;
  margin-top: 30px;
  display: inline-block;
}

aside .seznam img {
  margin-right: 10px;
}

aside .seznam:hover {
  color: #f7523c;
}

/* NAS CENIK */

/* TERMINY */

.terms-page {
  margin-bottom: 50px;
}

.terms-page .free-terms {
  max-height: inherit;
  margin: 0 -30px;
  position: relative;
  z-index: -1;
  min-height: 250px;
}

.terms-page .free-terms::before {
  display: none;
}

.terms-page .free-terms .free-date {
  padding: 0 30px;
  margin-top: 40px;
}

.terms-page .free-terms .free-date-body {
  background: #f1f6f8;
  border-bottom: 0;
}

.terms-page .free-terms .free-date-body p img {
  left: 20px;
}

.terms-overflowhidden {
  overflow: hidden;
  transform: skew(20deg);
  position: relative;
  top: -15px;
  width: calc(100% - -20px);
}

@-moz-document url-prefix() {
  .terms-overflowhidden {
    top: -17px;
  }
}

.terms-filtration {
  background: #f1f6f8;
  padding: 15px 15px 0 15px;
  transform: skew(-20deg);
  position: relative;
  left: -20px;
  padding-left: 50px;
}

.terms-filter {
  margin-right: 30px;
}

.terms-filter p {
  color: #707070;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 400;
}

.checbox-styled {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 20px;
}

.checbox-styled label {
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 14px;
  line-height: 30px;
  padding-left: 25px;
}

.checbox-styled label img {
  margin-right: 10px;
}

.checbox-styled input {
  position: absolute;
  opacity: 0;
}

.checbox-styled label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #d8dbe5;
  background: #fff;
  position: absolute;
  left: 0;
  top: 7px;
}

.checbox-styled label:hover::before {
  border: 1px solid #f7523c;
}

.checbox-styled input:checked + label::before {
  background: #fff url("/img/checked.svg") no-repeat center;
}

.box-filter-content {
  margin: 0 -10px;
  position: relative;
  top: -5px;
}

.datepicker-box {
  width: 120px;
  position: relative;
  margin: 0 10px;
}

.datepicker-box .ui-datepicker {
  width: 300px !important;
}

.datepicker-box::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 13px;
  background: url("/img/datepicker.svg") no-repeat center;
  width: 15px;
  height: 16px;
  background-size: contain;
}

.datepicker-box input {
  width: 100%;
  height: 40px;
  border: 1px solid #dadada;
  background: #fff;
  padding-left: 40px;
  color: black;
}

/* TERMINY */

/* FOTOGALERIE */

.fotogalerie-page {
  padding-bottom: 50px;
}

.ms-item {
 padding-left: 5px !important; padding-right: 5px !important; margin-top: 10px;
}

.fluid {
  margin: 0 -10px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}

.fluid .item {
  width: 25%;
  margin-bottom: 15px;
  padding: 0 10px;
  transition: all .3s ease;
}

.fluid .item span {
  position: relative;
  display: inline-block;
  width: 100%;
}

.fluid .item span::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  transition: all .3s ease;
  left: 0;
  top: 0;
  position: absolute;
  opacity: .1;
}

.fluid .item span:before {
  content: "";
  background:#f7523c url("/img/lupa.svg") no-repeat center center;
  width: 60px;
  height: 60px;
  background-size: 40%;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  margin-top: -30px;
  top: 50%;
  border-radius: 50%;
  text-align: center;
  opacity: 0;
  z-index: 1;
  transition: all .3s ease;
}

.fluid .item:hover span::after {
  opacity: .5;
}

.fluid .item:hover span:before {
  opacity: .8;
}

.fluid .item img {
	display: block;
	width: 100%;
	height: auto !important;
	opacity:1;
}

#pagination ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

#pagination ul li + li::before {
  content: "";
  background: url("/img/3layers.svg") no-repeat center;
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 10px;
}

#pagination ul li a {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

#pagination ul li.active a {
  color: #d2d2d2;
  pointer-events: none;
}

/* FOTOGALERIE */

/* VOUCHER */

.voucher {
  margin: 0;  /* 0 20px  */
  border-bottom: 4px solid #f7523c;
  min-height: 500px;
}

.voucher.slick-slide {
  margin: 0 20px;
}

.voucher-page {
  padding-bottom: 50px;
}

.voucher-content {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(377px, 1fr));
  gap: 20px;

}

.voucher-padding {
  width: 100%;
  margin-bottom: 100px;
}

.voucher .bck-img {
  width: 100%;
  height: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  margin-bottom: 10px;
}

.voucher h2 {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 10px;
}

.voucher p {
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
}

.voucher .price {
  font-weight: 500;
  margin-top: 20px;
}

.voucher .price strong {
  color: #f7523c;
  font-size: 30px;
  line-height: 28px;
}

/* VOUCHER */

/* FIREMNI AKCE */

.firm-page {
  padding-bottom: 50px;
  position: relative;
}

.firm-description, .firm-contact {
  width: 50%;
}

.firm-description .overflow-text {
  height: 340px;
  overflow: hidden;
  position: relative;
}

.firm-description .overflow-text.isIn {
  overflow: visible;
  height: auto;
}

.firm-description .overflow-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100px;
  width: 100%;
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

.firm-description .overflow-text.isIn::before {
  display: none;
}

.firm-description .show-more {
  color: #f7523c;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  text-decoration: underline;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: -40px;
}

firm-description .show-more.open {
  margin-top: 20px;
}

.firm-description p {
  color: #000;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 30px;
}

.firm-contact {
  position: relative;
  padding-left: 85px;
  z-index: 3;
  margin-top: 50px;
}

.bggrey {
  position: absolute;
  right: calc(-65px - 1vw);
  top: -75px;
  width: 51vw;
  height: 550px;
  background: #f1f6f8;
  z-index: 2;
  transform: skew(20deg);
}

.skew-trick {
  transform: skew(20deg);
  background: #f1f6f8;
  padding-left: 60px;
}

.firm-contact h2 {
  color: #102647;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}

.firm-contact .box-input {
  margin-bottom: 20px;
}

.firm-contact .box-input label {
  color: #707070;
  font-size: 12px;
  line-height: 22px;
  transform: skew(-20deg);
}

.firm-contact .bgskew {
  background: #fff;
  overflow: hidden;
  z-index: 2;
}

.firm-contact .box-input textarea {
  height: 180px;
  padding-left: 40px;
}

.firm-contact .box-input input, .firm-contact .box-input textarea {
  transform: skew(-20deg);
  border: 0;
}

.firm-contact .center {
  text-align: center;
  margin-top: 30px;
}

.cars-info {
  margin: 20px 0 60px 0;
}

.cars-info .cars-padding {
  padding: 0 15px;
  width: 25%;
}

.cars-info .title {
  font-size: 18px;
}

.cars-info p {
  color: #000;
  font-size: 15px;
  line-height: 25px;
}

/* FIREMNI AKCE */

/* KOSIK */

.smaller {
  background: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.16);
}

.smaller .menu-top {
  padding: 10px 0;
}

.smaller .bcgs .bcgrel {
  height: 70px !important;
}

.smaller .menu-top .bcgs {
  z-index: 2;
}

.smaller .menu-top .right-content, .smaller .menu-top .spinner-master, .smaller nav {
  display: none !important;
}

.smaller .menu-top .logo {
  top: 0px;
}

.smaller .menu-top .logo img {
  height: 50px;
}

.description-content.hidden-part {
  display: none;
  width: auto;
  padding-right: 0;
  margin: inherit;
  position: relative;
  z-index: 2;
}

.description-content.hidden-part .button {
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  border-radius: 3px;
  background: #252d3e;
  font-size: 13px;
  font-weight: 500;
  margin-top: 0;
  margin-right: 0;
}

.description-content.hidden-part .button span {
  margin-left: 0;
  margin-right: 40px;
}

.description-content.hidden-part .button span i {
  background: url("/img/arrow-back.svg") repeat center;
  width: 28px;
  height: 13px;
}

.cart-page {
  padding: 40px 0;
}

.content-delivery {
  border-radius: 3px;
  border: 1px solid #d5dadc;
  background: #fff;
  margin-bottom: 30px;
}

.content-delivery-inner {
  padding: 20px 30px;
}

.content-delivery .title {
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 20px;
}

.content-delivery .title::before {
  width: 70px;
  height: 50px;
  left: -15px;
  top: -5px;
}

.content-delivery .table-delivery .img {
  width: 280px;
  min-width: 280px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #d2d2d2;
  border-right: 0;
  height: 100%;
}

.content-delivery .table-delivery .dsc {
  width: calc(100% - 280px);
  padding: 15px 35px;
  border: 1px solid #d2d2d2;
}

.content-delivery .table-delivery .dsc .titulek, .content-delivery .table-delivery .dsc .dsc-car {
  justify-content: space-between;
}

.content-delivery .table-delivery .dsc .dsc-car {
  margin-top: 30px;
}

.content-delivery .table-delivery h3 {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

.content-delivery .table-delivery .remove {
  background: url("/img/close.svg") no-repeat center;
  height: 40px;
  width: 40px;
  display: inline-block;
  position: relative;
  right: -13px;
}

.content-delivery .table-delivery .varianta {
  color: #a8a8a8;
  font-size: 10px;
  line-height: 15px;
}

.content-delivery .table-delivery .varianta p {
  color: #000;
  font-size: 15px;
}

.styled-quantity {
  width: 120px;
  height: 40px;
  position: relative;
  border-radius: 50px;
  display: inline-block;
  vertical-align: middle;
}

.styled-quantity input {
  border-radius: 50px;
  border: 1px solid #d0d2d8;
  background: #fff;
  width: 100%;
  height: 40px;
  color: #000;
  font-size: 15px;
  padding-left: 20px;
}

.styled-quantity .qtyplus, .styled-quantity .qtyminus {
  content: "";
  position: absolute;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 20px;
  transition: all .3s ease;
  font-size: 0 !important;
  border: 0;
  padding-left: 0;
  cursor: pointer;
}

.styled-quantity .qtyplus {
  top: 0px;
  background: url("/img/qty-top.svg") no-repeat center;
}

.styled-quantity .qtyminus {
  bottom: 0px;
  background: url("/img/qty-bot.svg") no-repeat center;
}

.price-quantity-car .price {
  color: #000;
  font-size: 25px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}

.content-delivery .buy-as-gift-price {
  justify-content: space-between;
  margin-top: 30px;
}

.info {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50%;
  background: url("/img/info.svg") no-repeat center;
  vertical-align: middle;
  position: relative;
  margin-left: 5px;
}

.info p {
  position: absolute;
  white-space: nowrap;
  left: 50%;
  top: -30px;
  background: #cfd4e3;
  border-radius: 3px;
  color: black;
  font-size: 12px;
  line-height: 14px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
  padding: 5px 15px;
}

.info:hover p {
  opacity: 1;
  visibility: visible;
}

.info p:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top: 6px solid #cfd4e3;
}

.gift-box input {
  opacity: 0;
  position: absolute;
}

.gift-box label {
  padding-left: 30px;
  color: #000;
  font-size: 14px;
  vertical-align: middle;
  line-height: 25px;
  position: relative;
}

.gift-box label img {
  margin-right: 10px;
  position: relative;
  top: -3px;
}

.gift-box label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 1px solid #9ca0ad;
  background: #fff;
}

.gift-box label:hover::before {
  border: 1px solid #f7523c;
}

.gift-box input:checked + label:before {
  background: #fff url("/img/checked.svg") no-repeat center;
}

.buy-as-gift-price .price {
  color: #a8a8a8;
  font-size: 12px;
  line-height: 25px;
  flex: 1;
  text-align: right;
}

.buy-as-gift-price .price strong {
  color: #f7523c;
  font-size: 30px;
  margin-left: 10px;
}

.checkbox-styled-delivery {
  position: relative;
  border-radius: 3px;
  border: 1px solid #d0d2d8;
  margin-bottom: 10px;
}

.checkbox-styled-delivery input {
  opacity: 0;
  position: absolute;
}

.checkbox-styled-delivery label {
  color: #000;
  font-size: 18px;
  line-height: 25px;
  padding-left: 40px;
  height: 80px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 3;
  position: relative;
  padding-right: 100px;
}

.checkbox-styled-delivery.active, .checkbox-styled-delivery:hover {
  border: 1px solid #f7523c;
  z-index: 2;
}

.checkbox-styled-delivery label i {
  width: 50px;
  min-width: 50px;
  margin: 0 20px;
}

.checkbox-styled-delivery .info-box {
  color: #8c8c8c;
  font-size: 14px;
  line-height: 18px;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  right: 20px;
}

.checkbox-styled-delivery .info-box img {
  margin-right: 5px;
}

.checkbox-styled-delivery label:before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 10px;
  border: 1px solid #9ca0ad;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -9px;
}

.checkbox-styled-delivery input:checked ~ label:before {
  background: url("/img/checkedradio.svg") no-repeat center;
}

.zobrazit-vsechny {
  color: #636363;
  background: rgba(0, 0, 100, 0.05);
  font-size: 14px;
  line-height: 24px;
  text-decoration: underline;
  display: none;
  width: 100%;
  transition: all .25s ease-in-out;
  text-align: left;
  padding: 10px 30px;
  cursor: pointer;
}

.zobrazit-vsechny:after {
  content: "";
  background: url("/img/delivery-arb.svg") no-repeat center;
  display: inline-block;
  margin-left: 10px;
  width: 14px;
  height: 8px;
}

.zobrazit-vsechny:hover {
  color: #f7523c;
}

.chck-styled input {
  position: absolute;
  opacity: 0;
}

.chck-styled label {
  color: #000;
  font-size: 12px;
  line-height: 30px;
  position: relative;
  padding-left: 30px;
  margin-top: 10px;
}

.chck-styled label a {
  color: #000;
  text-decoration: underline;
}

.chck-styled label a:hover  {
  color: #f7523c;
}

.chck-styled label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border: 1px solid #9ca0ad;
  background: #fff;
}

.chck-styled label:hover::before {
  border: 1px solid #f7523c;
}

.chck-styled input:checked + label::before {
  background: #fff url("/img/checked.svg") no-repeat center;
}

.firm-hidden-content {
  display: none;
  margin-top: 20px;
}

.cart-buttons {
  margin: 15px 0;
}

.cart-buttons .chck-styled label {
  margin-top: 0;
}

.cart-buttons .description-content {
  width: auto;
  padding-right: 0;
  margin: inherit;
}

.cart-buttons .description-content .button {
  margin-top: 0;
  height: 50px;
  line-height: 50px;
}

.cart-buttons .description-content .button span {
  vertical-align: middle;
  margin-left: 15px;
}

/* KOSIK */

/* ORDER DETAIL */

.order-detail-gallery {
  width: 50%;
  margin-top: 40px;
  padding-right: 60px;
}

.order-detail-gallery .mainimage {
  margin-bottom: 15px;
  width: 100%;
  position: relative;
  min-height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-detail-gallery .mainimage .mainimage-blur {
  height: 100%;
  width: 100%;
  position: absolute;
  filter: blur(2px);
  -webkit-filter: blur(2px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

/* 
.order-detail-content {
  width: 50%;
}
*/

.order-detail-content .description {
  line-height: 25px;
  font-size: 15px;
  margin-bottom: 30px;
}

.order-detail-content .styled-title {
  color: #d0d2d8;
  font-size: 14px;
  font-weight: 400;
}

.order-detail .number-of-rounds {
  margin-top: 10px;
}

.order-detail .swipe-area-holder {
  pointer-events: auto;
  opacity: 1;
}

.order-detail-content .vybrana-varianta {
  font-size: 14px;
  line-height: 25px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.service-checkbox input {
  position: absolute;
  opacity: 0;
}

.service-checkbox label {
  margin-top: 20px;
  margin-right: 25px;
  position: relative;
  padding-left: 30px;
}

.service-checkbox label i {
  width: 35px;
  margin: 0 10px;
  display: inline-block;
  position: relative;top: -7px;
}

.service-checkbox label p {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}

.service-checkbox label p span {
  color: #a8a8a8;
  display: block;
}

.service-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  border: 1px solid #9ca0ad;
  background: #fff;
}

.service-checkbox label:hover::before {
  border: 1px solid #f7523c;
}

.service-checkbox input:checked + label::before {
  background: #fff url(/img/checked.svg) no-repeat center;
  border: 1px solid #f7523c;
}

.full-price-order {
  background: #f1f6f8;
  height: 100px;
  transform: skew(20deg);
  margin-top: 20px;
}

.full-price-order .skew0 {
  transform: skew(-20deg);
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
}

.full-price-order .price-order .flx {
  align-items: baseline;
}

.full-price-order .no-dph {
  color: #9ca0ad;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.full-price-order .price {
  color: #000;
  font-size: 28px;
  margin-right: 5px;
  font-weight: 700;
}

.full-price-order .priceEur {
  color: #9ca0ad;
  font-size: 15px;
  font-weight: 500;
}

.full-price-order .styled-quantity {
  height: 45px;
  width: 100px;
}

.full-price-order .styled-quantity input {
  border: 0;
  height: 45px;
  padding-left: 15px;
}

.full-price-order .styled-quantity .qtyplus, .full-price-order .styled-quantity .qtyminus {
  height: 22px;
  right: 5px;
}

.full-price-order .description-content {
  padding-right: 0;
  width: auto;
  margin: 0;
  height: 45px;
}

.full-price-order .description-content .button {
  margin-top: 0;
}

.tab-section {
  margin: 40px 0;
}

.tabs {
  border-bottom: 10px solid #f1f6f8;
}

.tabs li {
  margin-right: 30px;
  display: inline-block;
  transform: skew(20deg);
  height: 60px;
  margin-left: -10px;
  position: relative;
  top: 10px;
}

.tabs li.active {
  background: #f1f6f8;
}

.tabs li a {
  display: inline-block;
  transform: skew(-20deg);
  color: #9ca0ad;
  font-size: 25px;
  font-weight: 500;
  line-height: 50px;
  padding: 0 20px;
}

.tabs li.active a, .tabs li a:hover {
  color: #102647;
}

.tab-content {
  display: none;
  padding: 30px 0 15px 0;
}

.tab-content:first-child {
  display: block;
}

.tab-content h1, .tab-content h2, .tab-content h3 {
  color: #000;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}
.tab-content h1 {
  font-size: 20px;
}
.tab-content h2 {
  font-size: 18px;
}
.tab-content h3 {
  font-size: 16px;
}

.tab-content p {
  color: #000;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 28px;
}

.tab-content ul {
  margin-bottom: 15px;
}

.tab-content ul li {
  color: #000;
  font-size: 15px;
  line-height: 28px;
}

.tab-content ul li strong {
  margin-right: 5px;
}

.tab-content table {
  margin-bottom: 15px;
  min-width: 49%;
}

.tab-content table th, .tab-content table td {
  padding: 15px;
  border: 1px solid #e8ebf2;
  font-size: 15px;
  text-align: left;
}

.tab-content form .button {
  margin-top: 20px;
}

/* ORDER DETAIL */

/* ANIMATION */

@media (min-width: 1024px) {

  @keyframes slideInFromRight {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .fadein-right {
    opacity: 0;
    -moz-transition: opacity 2s;
    -webkit-transition: opacity 2s;
    -o-transition: opacity 2s;
    transition: opacity 2s;
    animation: 1s ease-out 0s 1 slideInFromRight;
  }

  body.loaded .fadein-right {
    opacity: 1;
  }

  @keyframes slideInFromTop {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0);
    }
  }

  .fadein-top {
    opacity: 0;
    -moz-transition: opacity 2s;
    -webkit-transition: opacity 2s;
    -o-transition: opacity 2s;
    transition: opacity 2s;
    animation: 1s ease-out 0s 1 slideInFromTop;
  }

  body.loaded .fadein-top {
    opacity: 1;
  }

  .hidden {
    opacity:0;
  }
  .visible {
    opacity:1;
  }

  @-webkit-keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }
  @-moz-keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }
  @keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }

  .fadein {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1s;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1s;
    animation:fadeIn ease-in 1s;

    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
  }

  .current .fade-in {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1s;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1s;
    animation:fadeIn ease-in 1s;

    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
  }
  .fade-in.one {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
  .fade-in.two {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
  .fade-in.three {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  .fade-in.four {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  .fade-in.five {
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    animation-delay: 0.7s;
  }

  .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  @-webkit-keyframes flipInX {
    from {
      -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
      transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in;
      opacity: 0;
    }

    40% {
      -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
      transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in;
    }

    60% {
      -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
      transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
      opacity: 1;
    }

    80% {
      -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
      transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
      -webkit-transform: perspective(400px);
      transform: perspective(400px);
    }
  }

  @keyframes flipInX {
    from {
      -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
      transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in;
      opacity: 0;
    }

    40% {
      -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
      transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in;
    }

    60% {
      -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
      transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
      opacity: 1;
    }

    80% {
      -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
      transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
      -webkit-transform: perspective(400px);
      transform: perspective(400px);
    }
  }

  .flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
  }

  .animated.bounceIn {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
  }

  @-webkit-keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
      opacity: 0;
      -webkit-transform: scale3d(.3, .3, .3);
      transform: scale3d(.3, .3, .3);
    }

    20% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1);
      transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
      -webkit-transform: scale3d(.9, .9, .9);
      transform: scale3d(.9, .9, .9);
    }

    60% {
      opacity: 1;
      -webkit-transform: scale3d(1.03, 1.03, 1.03);
      transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
      -webkit-transform: scale3d(.97, .97, .97);
      transform: scale3d(.97, .97, .97);
    }

    to {
      opacity: 1;
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }

  @keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
      opacity: 0;
      -webkit-transform: scale3d(.3, .3, .3);
      transform: scale3d(.3, .3, .3);
    }

    20% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1);
      transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
      -webkit-transform: scale3d(.9, .9, .9);
      transform: scale3d(.9, .9, .9);
    }

    60% {
      opacity: 1;
      -webkit-transform: scale3d(1.03, 1.03, 1.03);
      transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
      -webkit-transform: scale3d(.97, .97, .97);
      transform: scale3d(.97, .97, .97);
    }

    to {
      opacity: 1;
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }

  .bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
  }
}

/* ANIMATION */

/* SUMMARY */
.summary-page {
  min-height: 385px;
}

.summary {
  text-align: center;
  padding: 40px 0;
  position: relative;
}
.summary::after {
  content: "";
  position: absolute;
  left: 0;
  top: -40px;
  width: 100%;
  height: calc(100% + 165px);
  background: #f1f6f8;
  transform: skew(20deg);
  z-index: -1;
}
.summary h1 {
  color: #f7523c;
  font-size: 30px;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.summary .long-dsc {
  color: #000;
  font-size: 16px;
  font-weight: 300;
}
.summary .long-dsc span {
  font-weight: 400;
}
.summary .long-dsc strong {
  font-weight: 500;
}
.summary h2 {
  color: #9ca0ad;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  margin: 40px 0;
}
.summary .pay-description {
  margin-top: 20px;
  text-align: center;
}
.summary .pay-description p {
  color: #9ca0ad;
  font-size: 14px;
  line-height: 24px;
  margin-top: 30px;
  padding: 0 30px;
  display: inline-block;
}
.summary .pay-description p strong {
  color: #000;
  font-size: 24px;
  line-height: 24px;
  margin-left: 5px;
}
@media (max-width: 1023px) {
  .summary {
    padding: 0;
  }
  .summary::after {
    display: none;
  }
  .summary h2 {
    margin: 30px 0;
  }
  .summary .pay-description {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .summary {
    padding-bottom: 40px;
  }
  .summary .pay-description p {
    padding: 0;
    display: block;
  }
}
/* SUMMARY */

/* VUE */
[v-cloak] {
  display: none
}

#load {
  width: 150px;
  animation: loading 3s linear infinite;
}
#load #loading-inner {
  stroke-dashoffset: 0;
  stroke-dasharray: 300;
  stroke-width: 10;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  animation: loading-circle 2s linear infinite;
  stroke: #f7523c;
  fill: transparent;
}
.load-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loading-circle {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -600;
  }
}
/* VUE */

.play-video img {
  max-width: 437px
}

.play-video iframe {
  width: 437px;
  height: 213px;
}

.static-page p {
  margin-bottom: 20px;
}

.static-page {
  padding-bottom: 30px;
}

.box-input.zasilkovna {
  padding: 0;
  margin-top: 30px;
}

.voucher-padding .description-content .button {
  margin-top: 10px;
}

.voucher-padding .description-content {
  justify-content: space-between;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 0;
}

/* Select round is now a slider */
.ui-slider-horizontal {
  position: absolute;
  left: 15px;
  height: 36px;
  background: transparent;
  width: calc(100% - 30px);
}

.ui-slider-horizontal:after {
  position: absolute;
  left: 15px;
  height: 36px;
  background: #e8ebf2;
  width: calc(100% - 30px);
}

.ui-slider-handle {
  width: 36px;
  height: 36px;
  background: #f7523c;
  border-radius: 50%;
  display: inline-block;
  z-index: 2;
  position: relative;
  margin-left: -18px;
  top: -39px;
}

.ui-slider-handle:before {
  content: "";
  position: absolute;
  left: 7px;
  top: 11px;
  background: url(/img/arrows.svg) no-repeat center;
  width: 21px;
  height: 13px;
}

.ui-slider-handle:focus {
  outline: none;
}

.price-list .swipe-area-holder {
  margin-top: -17px;
  margin-left: -18px;
  margin-right: -18px;
  opacity: 1;
}

.price-list .swipe-area hr {
  top: 0;
}

.product-slider .swipe-area-holder {
  margin-left: -18px;
  margin-right: -18px;
  opacity: 1;
}
.product-slider .swipe-area-holder .point:nth-child(1) label .rounds {
  left: 16px;
}

.no-products {
  font-size: 20px;
  margin-top: 30px;
  text-align: center;
}
/*
.product-slider .ui-slider-handle {
  width: 36px;
  height: 36px;
  background: #f7523c;
  border-radius: 50%;
  display: inline-block;
  z-index: 2;
  position: relative;
  margin-left: 0;
  top: -39px;
}
*/

.fail-page {
  text-align: center;
  padding:40px 0 50px 0;
}

.fail-page img {
  height: 280px;
  margin-bottom: 30px;
}

.fail-page .button {
  font-size: 15px;
}

.alert {
  width: 100%;
  color: black;
  background: rgba(0, 0, 100, 0.05);
  height: 40px;
  font-size: 14px;
  line-height: 18px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.alert.alert-danger {
  color: #f7523c;
}

.alert.alert-success {
  color: #34bd1f;
}

.infochoose {
  text-align: center;
  display: block;
  margin: auto;
  padding: 20px 0 30px 0;
  font-size: 20px;
  color: #f7523c;
}

/* Start of new styles */
nav ul li {
  display: inline-block;
  margin-left: 30px;
}

.pb50 {
  padding-bottom: 50px;
}

.left-sideX, .right-sideX {
  display: block;
  width: 50%;
  text-align: left;
}

.left-sideX p, .right-sideX p {
  color: #000;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 40px;
}



section.airport-circuits-info, section.racing-circuits-info {
  padding: 20px 0 50px;
}

section.airport-circuits-info h1, section.racing-circuits-info h1 {
  margin-left: 25px;
}

section.airport-circuits-info .left-sideX, section.racing-circuits-info .left-sideX {
  width: 40%;
}

section.airport-circuits-info .right-sideX, section.racing-circuits-info .right-sideX {
  width: 60%;
}

section.airport-circuits-map, section.racing-circuits-map {
  text-align: left;
}

section.airport-circuits-map img, section.racing-circuits-map img {
  width: 100%;
  left: 0;
}

section.airport-circuits-tabs, section.racing-circuits-tabs {
  padding: 0;
  margin-top: -40px;
  z-index: 999;
  position: relative;
}
section.racing-circuits-info-tabs {
  padding: 25px 0;
  margin-top: 0;
  z-index: 999;
  position: relative;
}
section.airport-circuits-tabs ul.tabs, section.racing-circuits-tabs ul.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-bottom: none;
  flex-wrap: wrap;
}
section.airport-circuits-tabs ul.tabs > li, section.racing-circuits-tabs ul.tabs > li {
  display: inline-flex;
  position: relative;
  transform: unset;
  height: initial !important;
  margin: initial;
  top: initial;
}
section.airport-circuits-tabs ul.tabs > li.active, section.racing-circuits-tabs ul.tabs > li.active {
  background: none;
}
section.airport-circuits-tabs ul.tabs > li::before, section.racing-circuits-tabs ul.tabs > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #fd3600;
  transform: skewX(20deg);
  z-index: -1;
}

section.airport-circuits-tabs ul.tabs > li.active::before,
section.airport-circuits-tabs ul.tabs > li:hover::before,
section.racing-circuits-tabs ul.tabs > li.active::before,
section.racing-circuits-tabs ul.tabs > li:hover::before {
  background-color: #fd3600;
}
section.airport-circuits-tabs ul.tabs li > a.tab-item, section.racing-circuits-tabs ul.tabs li > a.tab-item {
  color: #fd3600;
  padding: 20px;  
  display: initial;
  transform: unset;
  font-size: 15px;
  font-weight: normal;
  line-height: initial;
}
section.airport-circuits-tabs ul.tabs li.active > a.tab-item,
section.airport-circuits-tabs ul.tabs li:hover > a.tab-item, 
section.racing-circuits-tabs ul.tabs li.active > a.tab-item,
section.racing-circuits-tabs ul.tabs li:hover > a.tab-item {
  color: #ffffff;
}
section.airport-circuits-tabs ul.tabs > li:hover, section.racing-circuits-tabs ul.tabs > li:hover {
  cursor: pointer;
}

div.airport-circuits-list, div.racing-circuits-list { padding: 50px 0 0 60px; }

@media screen and (max-width: 1023px) {
  div.airport-circuits-list, div.racing-circuits-list { padding: 0; }
  section.airport-circuits-tabs ul.tabs li > a.tab-item, section.racing-circuits-tabs ul.tabs li > a.tab-item { padding: 10px 20px; } 
}

@media (max-width: 767px){
  section.airport-circuits-tabs ul.tabs, section.racing-circuits-tabs ul.tabs {
    padding: 20px;
  }
  section.airport-circuits-tabs ul.tabs > li, section.racing-circuits-tabs ul.tabs > li {
      margin-right: initial;
      height: initial;
  }
}

div.airport-circuits-list div.circuit-item, div.racing-circuits-list div.circuit-item {
  display: flex;
  position: relative;
  justify-content: space-between;
  padding: 20px 30px;
}

div.airport-circuits-list div.circuit-item:hover::before, div.racing-circuits-list div.circuit-item:hover::before {
  background-color: #f3f0f8;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  transform: skewX(20deg);
  z-index: -1;
}

div.airport-circuits-list div.circuit-item .icon, div.racing-circuits-list div.circuit-item .icon {
  width: 10%;
  align-self: center;
}
div.airport-circuits-list div.circuit-item .circuit-desc, div.racing-circuits-list div.circuit-item .circuit-desc {
  margin-right: auto;
  text-align: left;
  margin-left: 15px;
  line-height: 22px;
  align-self: center;
}

div.airport-circuits-list div.circuit-item .circuit-cta a.btn-buy-ride span.short, 
div.racing-circuits-list div.circuit-item .circuit-cta a.btn-buy-ride span.short { display: none;}

@media screen and (max-width:1023px) {
  div.airport-circuits-list div.circuit-item .circuit-cta a.btn-buy-ride,
  div.racing-circuits-list div.circuit-item .circuit-cta a.btn-buy-ride { padding:0 30px 0 20px;}
  div.airport-circuits-list div.circuit-item .circuit-cta a.btn-buy-ride span.full,
  div.racing-circuits-list div.circuit-item .circuit-cta a.btn-buy-ride span.full { display: none;}
  div.airport-circuits-list div.circuit-item .circuit-cta a.btn-buy-ride span.short,
  div.racing-circuits-list div.circuit-item .circuit-cta a.btn-buy-ride span.short { display: inline;}
}

a.btn-buy-ride, button.btn-buy-ride {
  height: 50px;
  line-height: 50px;
  padding: 0 40px;
  background-color: #f7523c;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}

a.btn-buy-ride:hover, button.btn-buy-ride:hover {
  background-color: #C54130;
}
a.btn-buy-ride span, button.btn-buy-ride span {
  margin-left: 10px;
  position: relative;
}
a.btn-buy-ride span i, button.btn-buy-ride span i {
  display: inline-block;
  width: 18px;
  height: 13px;
  background: url('/img/arrow-button.svg') repeat center;
  margin: 0 2px;
  position: absolute;
  left: -6px;
  top: 2px;
}
a.btn-buy-ride:hover span i, button.btn-buy-ride:hover span i {
  -webkit-animation: slide 1s linear infinite;
    -moz-animation: slide 1s linear infinite;
    -o-animation: slide 1s linear infinite;
    animation: slide 1s linear infinite;
}

div.tabs-content-wrapper  {
  padding-top: 50px;
  padding-bottom: 50px;
}

.tabs-content div.tab-content h3.tab-title {
  font-size: 33px;
}

.tabs-content div.tab-content .tab-badges {
  display: flex;
  justify-content: start;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tabs-content div.tab-content .tab-badges .badge {
  padding: 5px 15px;
  border: 2px solid #f7523c;
  color: #f7523c;
  font-size: 12px;
  font-weight: 900;
  border-radius: 50px;
}

.img-gallery {
  padding: 50px;
}

.img-gallery .blueimp-gallery {
  background: none;
  box-shadow: none;
  border: #999999;
}

div.accordion-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  margin: 0 auto;
  flex-wrap: wrap;
}
div.accordion-wrapper div.accordion-row {
  text-align: left;
  width: 100%;
}
div.accordion-wrapper div.accordion-row .accordion-title {
  position: relative;
  display: flex;
  font-size: 16px;
  font-weight: 900;
  padding: 20px 30px 20px 60px;
  margin: 10px 0;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
div.accordion-wrapper div.accordion-row .accordion-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #cfd1dd;
  transform: skewX(20deg);
  z-index: -1;
}
div.accordion-wrapper div.accordion-row.active .accordion-title::before {
  border: 2px solid #f7523c;
}

div.accordion-wrapper div.accordion-row .accordion-title span.accd-c,
div.accordion-wrapper div.accordion-row .accordion-title span.accd-o  {
  margin-left: auto;
  margin-right: 0;
  color: #f7523c;
}
div.accordion-wrapper div.accordion-row .accordion-title span.accd-c::after,
div.accordion-wrapper div.accordion-row .accordion-title span.accd-o::after  {
  content: "";
  display: inline-block;
  width: 15px;
  margin-bottom: -2px;
  margin-left: 7px;
  height: 15px;
  background-image: url(/img/arrow.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 100%;
}
div.accordion-wrapper div.accordion-row .accordion-title span.accd-c::after {
  transform: rotateX(180deg);
}
div.accordion-wrapper div.accordion-row .accordion-title span.accd-o,
div.accordion-wrapper div.accordion-row.active .accordion-title span.accd-c {
  display: none;
}
div.accordion-wrapper div.accordion-row.active .accordion-title span.accd-o {
  display: inline-block;
}
div.accordion-wrapper div.accordion-row .accordion-row-content {
  display: block;
  margin: 0px 30px 0px 60px;
  line-height: 20px;
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
div.accordion-wrapper div.accordion-row.active .accordion-row-content {
  margin: 20px 30px 20px 60px;
  max-height: none;
}
div.accordion-wrapper div.accordion-row .accordion-row-content h6 {
  margin: 20px 0;
  font-size: 16px;
  font-weight: 900;
}
div.accordion-wrapper div.accordion-row .accordion-row-content p.excerpt {
  font-weight: 900;
  font-size: 15px;
}
div.accordion-wrapper div.accordion-row .accordion-row-content p {
  margin-bottom: 40px;
  font-size: 15px;
}

#discount-order-form { display: flex; width: 40%; align-items: center; justify-content: left; padding: 0; margin: 0; }
#discount-order-form input { width: 180px; border-top-right-radius: 0; border-bottom-right-radius: 0px; height: 45px; font-size: 1.1rem; }
#discount-order-form button { border-radius: 0px; margin: 0; background-color: #f2f2f7; color: #636363 }
#discount-order-form button span { margin-left: 20px; }
#discount-order-form button:disabled, #discount-order-form input:disabled { opacity: 0.5; }
#discount-order-form.loading:after, #discount-order-form.success:after, #discount-order-form.error:after { background: url('../../img/ajax-loader.gif') no-repeat center center; width: 30px; height: 30px; margin-left: 1rem; content: ' '; display: block; }
#discount-order-form.success:after { background-image: url('../../img/valid.png'); }
#discount-order-form.error:after { background-image: url('../../img/fail.png'); }
.discount-amount { display: none; margin-bottom: 0.5rem; }
.discount-amount span { font-weight: bold; font-size: 1.2rem; color: black; margin-left: 10px; }


@media screen and (max-width:1023px) {
  .img-gallery {
    padding: 0;
  }
  div.tabs-content-wrapper  {
    padding-top: 0;
    padding-bottom: 0;
  }
  .tabs-content div.tab-content h3.tab-title {
    font-size: 28px;
  }
  .left-sideX, .right-sideX {
    width: 100% !important;
  }
  .left-sideX p, .right-sideX p {
    margin-bottom: 30px;
  }
}

.image-container {
  position: relative;
  display: inline-block; /* shrink-wrap the image */
  width: 100%;
}

.image-container .bck-img {
  display: block;
}

.badges-row {
  position: absolute;
  bottom: 20px; /* position the row inside the image */
  left: 5px;
  display: flex;
  gap: 8px; /* space between badges */
  flex-wrap: nowrap; /* keep badges in one row */
}

.badge {
  background-color: #f7523c;
  color: white;
  padding: 0.4em 0.8em;
  font-size: 0.9em;
  white-space: nowrap; /* prevent text wrap inside badges */
}

/* New styles */
.d-xs-block { display: none;}
.fb-ig-feed { background-image: url('/img/social_feed_bg.png'); min-height: 140px; background-size: cover; background-position: center; }
.prod-thumbnails-slider .slick-track .slick-current { box-shadow: 0 0 7px 2px #00000040; transform: scale(1.05); }
button.prod-slick-prev, button.prod-slick-next { color: var(--red); position: absolute; font-size: 22px; line-height: 22px; top: calc(50% - 11px); }
button.prod-slick-prev { left: 10px; }
button.prod-slick-next { right: 10px; }
.slick-dots li button:before { font-size: 50px !important; }
a.btn { display: inline-block; background: var(--lblue); border-radius: 50px; padding: 10px 30px; text-transform: uppercase; color: #fff; transition: transform .3s ease-in-out; }
a.hero-btn { background-color: #F7523C; border-radius: 50px; padding: 25px 45px; color: #fff; font-weight: lighter; text-transform: uppercase; font-size: 1.5rem; display: inline-block; transition: transform .3s ease-in-out; }
a.btn:hover { transform: scale(1.05); }
.free-ride-dates { padding: 80px 0; }

.text-upper { text-transform: uppercase; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.d-block { display: block; }
.t-lblue { color: var(--lblue) !important; }
.t-red { color: var(--red) !important; }
.t-dblue { color: var(--dblue) !important; }
.bg-lblue { background-color: var(--lblue) !important; }
.bg-red { background-color: var(--red) !important; }
.bg-dblue { background-color: var(--dblue) !important; }
.b-lblue { border-color: var(--lblue) !important; }
.b-red { border-color: var(--red) !important; }
.b-dblue { border-color: var(--dblue) !important; }

.erh-divider { display: block; min-height: 18px; width: 100%; bottom: -6px; transition: bottom .3s ease-in-out; margin: 40px 0; }
.erh-divider.left > span::before { content: ""; display: block; height: 6px; transition: height .3s ease-in-out; clip-path: polygon(0 0, 99.5% 0, 100% 100%, 0% 100%); }
.erh-divider.right > span::after { content: ""; display: block; height: 6px; float: right; margin-top: 0; transition: all .3s ease-in-out; clip-path: polygon(0.5% 0, 100% 0, 100% 100%, 0% 100%);}
.erh-divider > span.lblue::before { background-color: var(--lblue); width: 45%; } 
.erh-divider > span.lblue::after { background-color: var(--lblue); width: 46%; }
.erh-divider > span.red::before { background-color: var(--red); width: 55%; } 
.erh-divider > span.red::after { background-color: var(--red); width: 55%; }
.erh-divider > span.dblue::before { background-color: var(--dblue); width: 65%; }
.erh-divider > span.dblue::after { background-color: var(--dblue); width: 65%; }
.erh-divider > span { width: 100%; display: block; }


/* NEW HEADER STYLES */
header.er-header .visible-xs { display:none; }
/* All selectors must start with "header.er-header" */
header.er-header { display: flex; justify-content: center; background-color: rgb(240,240,245); padding-top:20px; padding-bottom:40px; transition: padding .3s ease-in-out; }
header.er-header.sticky-header { position: sticky; top: 0; z-index: 99; box-shadow: 0 0 10px #999; }
header.er-header > div.container { display: flex; justify-content: space-between; align-items: center; }
header.er-header a.logo img { height: 85px; transition: height .3s ease-in-out; }
header.er-header .er-menu-top, 
header.er-header .er-menu-bottom { display: flex; justify-content: end; align-items: center; column-gap: 30px; }
header.er-header .er-menu-top ul { display: flex; column-gap: 30px; }
header.er-header nav.er-menu-bottom ul li a,
header.er-header .er-menu-top a { color: rgb(46,47,51); }
header.er-header .er-menu-top a:hover { text-decoration: underline; }
header.er-header .er-menu-top a.cart-button { display: flex; flex-direction: row; height: auto; align-items: center; gap:0 5px; margin: 0 5px; }
header.er-header .er-menu-top a > i.fas { margin-right: 5px; color: var(--red); }
header.er-header .er-menu-top a.cart-button > i { margin-right: 0; color: rgb(46,47,51); font-size: 18px; }
header.er-header .er-menu-top a.cart-button > strong { margin: auto; }
header.er-header .er-menu-top div.change-domain a { height: 30px; line-height: 30px; color: rgb(46,47,51); }
header.er-header .er-menu-top div.change-domain a:hover { background:none; text-decoration: underline; }
header.er-header .er-menu-top div.change-domain > span { top: 5.5px; }
header.er-header .er-menu-bottom { margin-top:20px; transition: margin .3s ease-in-out; }
header.er-header .erh-divider { display: block; width: 100%; min-height: initial; position: absolute; bottom: -6px; transition: bottom .3s ease-in-out; margin: 0; }
header.er-header .erh-divider.right > span::after { content: ""; display: block; height: 6px; float: right; margin-top: -6px; transition: all .3s ease-in-out; clip-path: polygon(0 0, 100% 0, 100% 100%, 0.5% 100%);}
header.er-header .erh-divider > span.lblue::before { width: 32%; } 
header.er-header .erh-divider > span.lblue::after { width: 50%; }
header.er-header .erh-divider > span.red::before { width: 35%; } 
header.er-header .erh-divider > span.red::after { width: 47%; }
header.er-header .erh-divider > span.dblue::before { width: 38%; }
header.er-header .erh-divider > span.dblue::after { width: 44%; }

/*NEW HEADER SCROLLED CONTENT*/
body.scrolled header.er-header { padding-top:5px; padding-bottom:20px; }
body.scrolled header.er-header .er-menu-bottom { margin-top:5px; }
body.scrolled header.er-header nav.er-menu-bottom ul li a { height: 40px; line-height: 40px; }
body.scrolled header.er-header a.logo img { height: 60px; }
body.scrolled header.er-header .erh-divider > span::before,
body.scrolled header.er-header .erh-divider > span::after { height: 3px;}
body.scrolled header.er-header .erh-divider > span::after { margin-top: -3px;}
body.scrolled header.er-header .erh-divider { bottom: -3px; }

/* NEW MAIN BANNER */
section.main-banner { min-height: 80vh; background-image: url("/img/banner-img.webp"); background-size: cover; background-repeat: no-repeat; background-position: 50% 50%; background-attachment: fixed; margin-bottom: 100px; }
section.main-banner .hero-banner-text { display: flex; justify-content: start; height: 60vh; align-items: center; }
section.main-banner .hero-banner-text span.hbt-background { position: absolute; width: 58%; min-width: 850px; height: 150px; background: #ffffffaa; left: 0; z-index: 0; clip-path: polygon(0 0, 96% 0, 100% 100%, 0% 100%);}
section.main-banner .hero-banner-text h2.hbt-content { color: #102647; font-size: 2.5rem; text-transform: uppercase; font-weight: bold; z-index: 1; }
section.main-banner .hero-banner-bottom { display: flex; align-items: end; height: 20vh; background: linear-gradient(to top, #000000a3, transparent); }
section.main-banner .hero-banner-bottom > .container { margin-bottom:0; }
section.main-banner .hero-banner-bottom .bottom-text { text-align: center; color: #ffffff; }
section.main-banner .hero-banner-bottom .bottom-text h4 { font-size:2rem; margin-bottom:60px; text-shadow: 0 0 10px #00000066; }
section.main-banner .hero-banner-bottom .bottom-text a.hero-btn { margin-bottom:-50px; } 
section.main-banner .hero-banner-bottom .bottom-text a.hero-btn i { margin-right: 10px; } 


/* Choose category section */
section.product-categories-desc { margin: 50px 0 100px; }
section.product-categories-desc .row { flex-flow: row; gap: 50px; justify-content: space-between; margin-top: 70px !important; }
section.product-categories-desc .category { padding: 0 20px; }
section.product-categories-desc .category .cat-title { display: flex; align-items: center; border-bottom: 4px solid; padding:0; margin-bottom: 20px; }
section.product-categories-desc .category .cat-title span { clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%); padding: 10px; min-width: 52px; color: #fff; margin-right: 10px; margin-left: -10px; }
section.product-categories-desc .category .cat-title h4 { font-size: 1.5rem; font-weight: 100; }
section.product-categories-desc .category .cat-title h4 a { text-decoration: none; color: inherit; }
section.product-categories-desc .category .cat-content p.cat-text { text-align: left; margin-bottom: 20px; }

/* Featured products section - slider */
#ourFeaturedProductsPage { padding: 20px 0 50px; }
#ourFeaturedProductsPage div.slick-track { display: flex; margin: 70px auto 30px; }
#ourFeaturedProductsPage .voucher.slick-slide { height: auto !important; display: flex; flex-direction: column; margin-bottom: 20px; }
#ourFeaturedProductsPage .slick-prev:before { content: '\f053'; }
#ourFeaturedProductsPage .slick-next:before { content: '\f054'; }
#ourFeaturedProductsPage .slick-prev:before, 
#ourFeaturedProductsPage .slick-next:before { font-family: "Font Awesome 5 Pro" !important; font-size: 40px !important; font-weight: 100; color: var(--red) !important; }
.slick-dots li { width: 35px !important; height: 10px !important; }
#ourFeaturedProductsPage .slick-dots li button { width: 35px !important; height: 7px !important; padding: 2px !important; background: #fff !important; border: var(--red) 1px solid !important; }
#ourFeaturedProductsPage .slick-dots li.slick-active button { width: 35px !important; height: 7px !important; padding: 2px !important; background: var(--red) !important; }
#ourFeaturedProductsPage .slick-dots li button::before { content: none !important; }


/* testimonials */
.testimonials { display: block; position:relative; overflow: hidden;}
.testimonials .container > .row {flex-wrap:initial !important;}
.testimonials .tmbg { position: absolute; display: block; min-width: calc(50% - 100px); background-color: #F2F2F7; right: -80px; transform: skewX(-15deg); top: 0; height: 100%; z-index: -9; }
.testimonials .col-tm-slider { flex-grow: 7; padding: 80px 0 0 0; max-width:65%; }
.testimonials .col-tm-content { position: relative; display: flex; flex-grow: 5; flex-direction: column; padding: 80px 0 0 30px; max-width: 35%; justify-content: start; align-items: end; }
.testimonials .col-tm-slider h3 { margin: 10px 0 10px 15px; font-size: 2.2rem; text-transform: uppercase; }
.testimonials .col-tm-content h3 { font-size: 1.8rem; color: var(--dblue); font-weight: 500; line-height: 3rem; margin-bottom: 30px; }
.testimonials .col-tm-content .feature-item { display: flex; align-items: center; padding: 15px 0 15px 2rem; }
.testimonials .col-tm-content .feature-item .icon { font-size: 2.5rem; color: #e74c3c; margin: 0 20px; flex-shrink: 0; }
.testimonials .col-tm-content .feature-item .text p { margin: 0; line-height: 1.5; color: #555; text-align: justify; }
.testimonials .testimonials-slider { padding: 0 90px 0 50px; }
.testimonials .testimonials-slider button.slick-arrow { top: calc(50% - 39px); transform: initial; }
.testimonials .testimonials-slider button.slick-arrow.slick-prev { left: 20px; } 
.testimonials .testimonials-slider button.slick-arrow.slick-next { right:70px; transform: scaleX(-1); }
.testimonials .testimonials-slider button.slick-arrow:before { content: none !important; }
.testimonials .testimonial-item { padding: 0; box-sizing: border-box; margin: 70px 0 70px; width: 600px; }
.testimonials .testimonial-item .parallelogram { background: white; border: 2px solid #F2F2F7; padding: 40px 35px; transform: skew(-15deg); margin: 0 60px; }
.testimonials .testimonial-item .parallelogram .content { transform: skew(15deg); display: flex; align-items: center; gap: 2rem; }
.testimonials .testimonial-item .parallelogram .content .avatar-block { text-align: center; flex-shrink: 0; }
.testimonials .testimonial-item .parallelogram .content .avatar-block .avatar-img { width: 100px; height: 100px; object-fit: cover; border-radius: 50%; }
.testimonials .testimonial-item .parallelogram .content .avatar-block .stars { margin-top: 0.5rem; color: var(--red); font-size: 1rem; }
.testimonials .testimonial-item .parallelogram .content .text-block { flex: 1; }
.testimonials .testimonial-item .parallelogram .content .text-block p { margin: 0; }





@media (max-width: 1100px) {
  .testimonials > .container > .row { flex-direction: column ;}
  .testimonials .tmbg { min-width: 100%; right: 0; transform: skewX(0); top: 50%; height: 50%; }
  .testimonials .col-tm-slider { flex-grow: 1; padding: 80px 20px 40px; text-align: center; max-width: initial; }
  .testimonials .col-tm-content { display: block;  padding: 80px 20px 40px; align-items: center; max-width: initial; }
  .testimonials .col-tm-content::before { content: initial; position: initial; display: none; }
  .testimonials .col-tm-slider h3 {text-align: center !important; display: inline-block !important; margin: 0 auto; font-size: 1.6rem; }
  .testimonials .col-tm-content .feature-item { padding: 15px 0 15px 0; }
  .testimonials .col-tm-content .feature-item .icon { margin: 0 20px 0 0; }


}
@media (max-width: 850px) {
  section.main-banner .hero-banner-text span.hbt-background { width: 100%; min-width: initial; clip-path:initial;}
  section.product-categories-desc .row { flex-flow: column; margin-top: initial; }
  .testimonials .col-tm-content { padding: 0 20px 50px; }
}
@media (max-width: 767px) {
  .hidden-xs { display: none !important; }
  body.scrolled header.er-header { padding-top:20px; padding-bottom:20x; }
  body.scrolled header.er-header .er-menu-bottom { margin-top:20px; }
  body.scrolled header.er-header nav.er-menu-bottom ul li a { height: 50px; line-height: 50px; }
  body.scrolled header.er-header a.logo img { height: 60px; }
  section.product-categories-desc .row { gap: 70px; }
  .testimonials .col-tm-slider { padding: 20px 20px 0; }
  .testimonials .testimonials-slider { padding: 0 20px 0 20px; }
  .testimonials .testimonial-item { margin: 50px 0 100px; }
  .testimonials .testimonial-item .parallelogram { padding: 20px 15px; transform: skew(0); margin: 0 20px; }
  .testimonials .testimonial-item .parallelogram .content { gap: 1rem; flex-direction: column; align-items: center; text-align: center; transform: skew(0); }
  .testimonials .testimonial-item .parallelogram .content .avatar-block .avatar-img { width: 60px; height: 60px; }
  .testimonials .testimonials-slider button.slick-arrow { top: calc(50% - 64px); }
  .testimonials .testimonials-slider button.slick-arrow.slick-prev { left: 10px; } 
  .testimonials .testimonials-slider button.slick-arrow.slick-next { right:10px; }
}

.right-side1, .left-side1 {
    width: 47%;
}


/* TEMPORARY SHIT REPAIR */
main > div.nav > button { overflow: hidden; }