/*! Flickity v1.1.1
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  cursor: pointer;
  background: none;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.flickity-prev-next-button:hover {
  background: none; }

.flickity-prev-next-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 5px #09F;
          box-shadow: 0 0 0 5px #09F; }

.flickity-prev-next-button:active {
  filter: alpha(opacity=60);
  /* IE8 */
  opacity: 0.6; }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30);
  /* IE8 */
  opacity: 0.3;
  cursor: auto; }

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

.flickity-prev-next-button .arrow {
  fill: #ffffff;
  -webkit-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease; }

.flickity-prev-next-button:hover .arrow {
  opacity: 0.5; }

/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
  color: #333;
  font-size: 26px; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  filter: alpha(opacity=25);
  /* IE8 */
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100);
  /* IE8 */
  opacity: 1; }

.gallery-cell {
  position: relative;
  width: 100.2%; }
  .gallery-cell img, .gallery-cell video, .gallery-cell iframe {
    width: 100%; }
  .gallery-cell iframe {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%; }
  .gallery-cell .dragarealeft {
    width: 40%;
    height: 200px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10; }
  .gallery-cell .dragarearight {
    width: 40%;
    height: 200px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10; }

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-page-dots .dot {
  background: #A8A9AA;
  opacity: 1; }

.flickity-page-dots .dot.is-selected {
  background: #1266D7; }

/*!
 * animsition v4.0.1
 * A simple and easy jQuery plugin for CSS animated page transitions.
 * http://blivesta.github.io/animsition
 * License : MIT
 * Author : blivesta (http://blivesta.com/)
 */
.animsition,
.animsition-overlay {
  position: relative;
  opacity: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

/**
 * overlay option
 */
.animsition-overlay-slide {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #ddd; }

/* loading option */
.animsition-loading,
.animsition-loading:after {
  width: 32px;
  height: 32px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  z-index: 100; }

.animsition-loading {
  background-color: transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.2);
  border-right: 5px solid rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid rgba(0, 0, 0, 0.2);
  border-left: 5px solid #eee;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-name: animsition-loading;
  animation-name: animsition-loading; }

@-webkit-keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.fade-in {
  -webkit-animation-name: fade-in;
  animation-name: fade-in; }

@-webkit-keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.fade-out {
  -webkit-animation-name: fade-out;
  animation-name: fade-out; }

@-webkit-keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

.fade-in-up {
  -webkit-animation-name: fade-in-up;
  animation-name: fade-in-up; }

@-webkit-keyframes fade-out-up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0; } }

@keyframes fade-out-up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0; } }

.fade-out-up {
  -webkit-animation-name: fade-out-up;
  animation-name: fade-out-up; }

@-webkit-keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

.fade-in-up-sm {
  -webkit-animation-name: fade-in-up-sm;
  animation-name: fade-in-up-sm; }

@-webkit-keyframes fade-out-up-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0; } }

@keyframes fade-out-up-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0; } }

.fade-out-up-sm {
  -webkit-animation-name: fade-out-up-sm;
  animation-name: fade-out-up-sm; }

@-webkit-keyframes fade-in-up-lg {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-up-lg {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

.fade-in-up-lg {
  -webkit-animation-name: fade-in-up-lg;
  animation-name: fade-in-up-lg; }

@-webkit-keyframes fade-out-up-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0; } }

@keyframes fade-out-up-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0; } }

.fade-out-up-lg {
  -webkit-animation-name: fade-out-up-lg;
  animation-name: fade-out-up-lg; }

@-webkit-keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

.fade-in-down {
  -webkit-animation-name: fade-in-down;
  animation-name: fade-in-down; }

@-webkit-keyframes fade-out-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; } }

@keyframes fade-out-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; } }

.fade-out-down {
  -webkit-animation-name: fade-out-down;
  animation-name: fade-out-down; }

@-webkit-keyframes fade-in-down-sm {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-down-sm {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

.fade-in-down-sm {
  -webkit-animation-name: fade-in-down-sm;
  animation-name: fade-in-down-sm; }

@-webkit-keyframes fade-out-down-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; } }

@keyframes fade-out-down-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; } }

.fade-out-down-sm {
  -webkit-animation-name: fade-out-down-sm;
  animation-name: fade-out-down-sm; }

@-webkit-keyframes fade-in-down-lg {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-down-lg {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

.fade-in-down-lg {
  -webkit-animation-name: fade-in-down;
  animation-name: fade-in-down; }

@-webkit-keyframes fade-out-down-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0; } }

@keyframes fade-out-down-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0; } }

.fade-out-down-lg {
  -webkit-animation-name: fade-out-down-lg;
  animation-name: fade-out-down-lg; }

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

.fade-in-left {
  -webkit-animation-name: fade-in-left;
  animation-name: fade-in-left; }

@-webkit-keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0; } }

@keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0; } }

.fade-out-left {
  -webkit-animation-name: fade-out-left;
  animation-name: fade-out-left; }

@-webkit-keyframes fade-in-left-sm {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-left-sm {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

.fade-in-left-sm {
  -webkit-animation-name: fade-in-left-sm;
  animation-name: fade-in-left-sm; }

@-webkit-keyframes fade-out-left-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0; } }

@keyframes fade-out-left-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0; } }

.fade-out-left-sm {
  -webkit-animation-name: fade-out-left-sm;
  animation-name: fade-out-left-sm; }

@-webkit-keyframes fade-in-left-lg {
  0% {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-left-lg {
  0% {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

.fade-in-left-lg {
  -webkit-animation-name: fade-in-left-lg;
  animation-name: fade-in-left-lg; }

@-webkit-keyframes fade-out-left-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0; } }

@keyframes fade-out-left-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0; } }

.fade-out-left-lg {
  -webkit-animation-name: fade-out-left-lg;
  animation-name: fade-out-left-lg; }

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

.fade-in-right {
  -webkit-animation-name: fade-in-right;
  animation-name: fade-in-right; }

@-webkit-keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0; } }

@keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0; } }

.fade-out-right {
  -webkit-animation-name: fade-out-right;
  animation-name: fade-out-right; }

@-webkit-keyframes fade-in-right-sm {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-right-sm {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

.fade-in-right-sm {
  -webkit-animation-name: fade-in-right-sm;
  animation-name: fade-in-right-sm; }

@-webkit-keyframes fade-out-right-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0; } }

@keyframes fade-out-right-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0; } }

.fade-out-right-sm {
  -webkit-animation-name: fade-out-right-sm;
  animation-name: fade-out-right-sm; }

@-webkit-keyframes fade-in-right-lg {
  0% {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-right-lg {
  0% {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

.fade-in-right-lg {
  -webkit-animation-name: fade-in-right-lg;
  animation-name: fade-in-right-lg; }

@-webkit-keyframes fade-out-right-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0; } }

@keyframes fade-out-right-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0; } }

.fade-out-right-lg {
  -webkit-animation-name: fade-out-right-lg;
  animation-name: fade-out-right-lg; }

@-webkit-keyframes rotate-in {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; } }

@keyframes rotate-in {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; } }

.rotate-in {
  -webkit-animation-name: rotate-in;
  animation-name: rotate-in; }

@-webkit-keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; } }

@keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; } }

.rotate-out {
  -webkit-animation-name: rotate-out;
  animation-name: rotate-out; }

@-webkit-keyframes rotate-in-sm {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; } }

@keyframes rotate-in-sm {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; } }

.rotate-in-sm {
  -webkit-animation-name: rotate-in-sm;
  animation-name: rotate-in-sm; }

@-webkit-keyframes rotate-out-sm {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; } }

@keyframes rotate-out-sm {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; } }

.rotate-out-sm {
  -webkit-animation-name: rotate-out-sm;
  animation-name: rotate-out-sm; }

@-webkit-keyframes rotate-in-lg {
  0% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; } }

@keyframes rotate-in-lg {
  0% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; } }

.rotate-in-lg {
  -webkit-animation-name: rotate-in-lg;
  animation-name: rotate-in-lg; }

@-webkit-keyframes rotate-out-lg {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; } }

@keyframes rotate-out-lg {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 1; }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0; } }

.rotate-out-lg {
  -webkit-animation-name: rotate-out-lg;
  animation-name: rotate-out-lg; }

@-webkit-keyframes flip-in-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; } }

@keyframes flip-in-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; } }

.flip-in-x {
  -webkit-animation-name: flip-in-x;
  animation-name: flip-in-x;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-out-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; } }

@keyframes flip-out-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; } }

.flip-out-x {
  -webkit-animation-name: flip-out-x;
  animation-name: flip-out-x;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-in-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; } }

@keyframes flip-in-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; } }

.flip-in-x-nr {
  -webkit-animation-name: flip-in-x-nr;
  animation-name: flip-in-x-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-out-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; } }

@keyframes flip-out-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; } }

.flip-out-x-nr {
  -webkit-animation-name: flip-out-x-nr;
  animation-name: flip-out-x-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-in-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; } }

@keyframes flip-in-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; } }

.flip-in-x-fr {
  -webkit-animation-name: flip-in-x-fr;
  animation-name: flip-in-x-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-out-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; } }

@keyframes flip-out-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; } }

.flip-out-x-fr {
  -webkit-animation-name: flip-out-x-fr;
  animation-name: flip-out-x-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-in-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; } }

@keyframes flip-in-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; } }

.flip-in-y {
  -webkit-animation-name: flip-in-y;
  animation-name: flip-in-y;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-out-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; } }

@keyframes flip-out-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; } }

.flip-out-y {
  -webkit-animation-name: flip-out-y;
  animation-name: flip-out-y;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-in-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; } }

@keyframes flip-in-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; } }

.flip-in-y-nr {
  -webkit-animation-name: flip-in-y-nr;
  animation-name: flip-in-y-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-out-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; } }

@keyframes flip-out-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; } }

.flip-out-y-nr {
  -webkit-animation-name: flip-out-y-nr;
  animation-name: flip-out-y-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-in-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; } }

@keyframes flip-in-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; } }

.flip-in-y-fr {
  -webkit-animation-name: flip-in-y-fr;
  animation-name: flip-in-y-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-out-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; } }

@keyframes flip-out-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; } }

.flip-out-y-fr {
  -webkit-animation-name: flip-out-y-fr;
  animation-name: flip-out-y-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 1; } }

.zoom-in {
  -webkit-animation-name: zoom-in;
  animation-name: zoom-in; }

@-webkit-keyframes zoom-out {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes zoom-out {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 0; } }

.zoom-out {
  -webkit-animation-name: zoom-out;
  animation-name: zoom-out; }

@-webkit-keyframes zoom-in-sm {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes zoom-in-sm {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 1; } }

.zoom-in-sm {
  -webkit-animation-name: zoom-in-sm;
  animation-name: zoom-in-sm; }

@-webkit-keyframes zoom-out-sm {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes zoom-out-sm {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 0; } }

.zoom-out-sm {
  -webkit-animation-name: zoom-out-sm;
  animation-name: zoom-out-sm; }

@-webkit-keyframes zoom-in-lg {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes zoom-in-lg {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 1; } }

.zoom-in-lg {
  -webkit-animation-name: zoom-in-lg;
  animation-name: zoom-in-lg; }

@-webkit-keyframes zoom-out-lg {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes zoom-out-lg {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 0; } }

.zoom-out-lg {
  -webkit-animation-name: zoom-out-lg;
  animation-name: zoom-out-lg; }

@-webkit-keyframes overlay-slide-in-top {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

@keyframes overlay-slide-in-top {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

.overlay-slide-in-top {
  top: 0;
  height: 0;
  -webkit-animation-name: overlay-slide-in-top;
  animation-name: overlay-slide-in-top; }

@-webkit-keyframes overlay-slide-out-top {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@keyframes overlay-slide-out-top {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

.overlay-slide-out-top {
  top: 0;
  height: 100%;
  -webkit-animation-name: overlay-slide-out-top;
  animation-name: overlay-slide-out-top; }

@-webkit-keyframes overlay-slide-in-bottom {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

@keyframes overlay-slide-in-bottom {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

.overlay-slide-in-bottom {
  bottom: 0;
  height: 0;
  -webkit-animation-name: overlay-slide-in-bottom;
  animation-name: overlay-slide-in-bottom; }

@-webkit-keyframes overlay-slide-out-bottom {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@keyframes overlay-slide-out-bottom {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

.overlay-slide-out-bottom {
  bottom: 0;
  height: 100%;
  -webkit-animation-name: overlay-slide-out-bottom;
  animation-name: overlay-slide-out-bottom; }

@-webkit-keyframes overlay-slide-in-left {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

@keyframes overlay-slide-in-left {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

.overlay-slide-in-left {
  width: 0;
  -webkit-animation-name: overlay-slide-in-left;
  animation-name: overlay-slide-in-left; }

@-webkit-keyframes overlay-slide-out-left {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

@keyframes overlay-slide-out-left {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

.overlay-slide-out-left {
  left: 0;
  width: 100%;
  -webkit-animation-name: overlay-slide-out-left;
  animation-name: overlay-slide-out-left; }

@-webkit-keyframes overlay-slide-in-right {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

@keyframes overlay-slide-in-right {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

.overlay-slide-in-right {
  right: 0;
  width: 0;
  -webkit-animation-name: overlay-slide-in-right;
  animation-name: overlay-slide-in-right; }

@-webkit-keyframes overlay-slide-out-right {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

@keyframes overlay-slide-out-right {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

.overlay-slide-out-right {
  right: 0;
  width: 100%;
  -webkit-animation-name: overlay-slide-out-right;
  animation-name: overlay-slide-out-right; }

/*! nouislider - 8.2.1 - 2015-12-02 21:43:15 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.noUi-target {
  position: relative;
  direction: ltr; }

.noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1; }

.noUi-origin {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0; }

.noUi-handle {
  position: relative;
  z-index: 1; }

.noUi-stacking .noUi-handle {
  z-index: 10; }

.noUi-state-tap .noUi-origin {
  -webkit-transition: left .3s, top .3s;
  -o-transition: left .3s, top .3s;
  transition: left .3s, top .3s; }

.noUi-state-drag * {
  cursor: inherit !important; }

.noUi-base {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.noUi-horizontal {
  height: 18px; }

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -6px; }

.noUi-vertical {
  width: 18px; }

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px; }

.noUi-background {
  background: #FAFAFA;
  -webkit-box-shadow: inset 0 1px 1px #f0f0f0;
          box-shadow: inset 0 1px 1px #f0f0f0; }

.noUi-connect {
  background: #3FB8AF;
  -webkit-box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45);
          box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45);
  -webkit-transition: background 450ms;
  -o-transition: background 450ms;
  transition: background 450ms; }

.noUi-origin {
  -webkit-border-radius: 2px;
          border-radius: 2px; }

.noUi-target {
  -webkit-border-radius: 4px;
          border-radius: 4px;
  border: 1px solid #D3D3D3;
  -webkit-box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
          box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB; }

.noUi-target.noUi-connect {
  -webkit-box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45), 0 3px 6px -5px #BBB;
          box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45), 0 3px 6px -5px #BBB; }

.noUi-draggable {
  cursor: w-resize; }

.noUi-vertical .noUi-draggable {
  cursor: n-resize; }

.noUi-handle {
  border: 1px solid #D9D9D9;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background: #FFF;
  cursor: default;
  -webkit-box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
          box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB; }

.noUi-active {
  -webkit-box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
          box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB; }

.noUi-handle:after,
.noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px; }

.noUi-handle:after {
  left: 17px; }

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px; }

.noUi-vertical .noUi-handle:after {
  top: 17px; }

[disabled] .noUi-connect,
[disabled].noUi-connect {
  background: #B8B8B8; }

[disabled] .noUi-handle,
[disabled].noUi-origin {
  cursor: not-allowed; }

.noUi-pips,
.noUi-pips * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.noUi-pips {
  position: absolute;
  color: #999; }

.noUi-value {
  width: 40px;
  position: absolute;
  text-align: center; }

.noUi-value-sub {
  color: #ccc;
  font-size: 10px; }

.noUi-marker {
  position: absolute;
  background: #CCC; }

.noUi-marker-large,
.noUi-marker-sub {
  background: #AAA; }

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 50px;
  top: 100%;
  left: 0;
  width: 100%; }

.noUi-value-horizontal {
  margin-left: -20px;
  padding-top: 20px; }

.noUi-value-horizontal.noUi-value-sub {
  padding-top: 15px; }

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px; }

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px; }

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px; }

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%; }

.noUi-value-vertical {
  width: 15px;
  margin-left: 20px;
  margin-top: -5px; }

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px; }

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px; }

.noUi-marker-vertical.noUi-marker-large {
  width: 15px; }

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background: #fff;
  padding: 5px;
  text-align: center; }

.noUi-horizontal .noUi-handle-lower .noUi-tooltip {
  top: -32px; }

.noUi-horizontal .noUi-handle-upper .noUi-tooltip {
  bottom: -32px; }

.noUi-vertical .noUi-handle-lower .noUi-tooltip {
  left: 120%; }

.noUi-vertical .noUi-handle-upper .noUi-tooltip {
  right: 120%; }

/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=46c07d651e1d691f990f)
 * Config saved to config.json and https://gist.github.com/46c07d651e1d691f990f
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html, body {
  height: 100%; }

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

p {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #000000;
  text-decoration: none; }

a:hover,
a:focus {
  color: #000000;
  text-decoration: underline; }

a:focus {
  outline: thin dotted;
  outline: 1px auto -webkit-focus-ring-color;
  outline-offset: -1px; }

figure {
  margin: 0; }

img {
  vertical-align: middle;
  width: auto;
  max-width: 100%;
  display: block; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  -webkit-border-radius: 50%;
          border-radius: 50%;
  overflow: hidden; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  -webkit-border-radius: 50%;
          border-radius: 50%; }

hr {
  margin-top: 1em;
  margin-bottom: 1em;
  border: 0;
  border-top: 1px solid #eeeeee; }

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

[role="button"] {
  cursor: pointer; }

.container {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1170px; }
  .container::after {
    clear: both;
    content: "";
    display: table; }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  @media (max-width: 641px) {
    .container-fluid {
      padding: 0; } }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

.col-xs-9 {
  width: 75%; }

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

.col-xs-6 {
  width: 50%; }

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

.col-xs-3 {
  width: 25%; }

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-pull-11 {
  right: 91.66666667%; }

.col-xs-pull-10 {
  right: 83.33333333%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-8 {
  right: 66.66666667%; }

.col-xs-pull-7 {
  right: 58.33333333%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-5 {
  right: 41.66666667%; }

.col-xs-pull-4 {
  right: 33.33333333%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-2 {
  right: 16.66666667%; }

.col-xs-pull-1 {
  right: 8.33333333%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-push-11 {
  left: 91.66666667%; }

.col-xs-push-10 {
  left: 83.33333333%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-8 {
  left: 66.66666667%; }

.col-xs-push-7 {
  left: 58.33333333%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-5 {
  left: 41.66666667%; }

.col-xs-push-4 {
  left: 33.33333333%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-2 {
  left: 16.66666667%; }

.col-xs-push-1 {
  left: 8.33333333%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-12 {
  margin-left: 100%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-0 {
  margin-left: 0%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-11 {
    width: 91.66666667%; }
  .col-sm-10 {
    width: 83.33333333%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-8 {
    width: 66.66666667%; }
  .col-sm-7 {
    width: 58.33333333%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-5 {
    width: 41.66666667%; }
  .col-sm-4 {
    width: 33.33333333%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-2 {
    width: 16.66666667%; }
  .col-sm-1 {
    width: 8.33333333%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-pull-11 {
    right: 91.66666667%; }
  .col-sm-pull-10 {
    right: 83.33333333%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-8 {
    right: 66.66666667%; }
  .col-sm-pull-7 {
    right: 58.33333333%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-5 {
    right: 41.66666667%; }
  .col-sm-pull-4 {
    right: 33.33333333%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-2 {
    right: 16.66666667%; }
  .col-sm-pull-1 {
    right: 8.33333333%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-push-11 {
    left: 91.66666667%; }
  .col-sm-push-10 {
    left: 83.33333333%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-8 {
    left: 66.66666667%; }
  .col-sm-push-7 {
    left: 58.33333333%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-5 {
    left: 41.66666667%; }
  .col-sm-push-4 {
    left: 33.33333333%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-2 {
    left: 16.66666667%; }
  .col-sm-push-1 {
    left: 8.33333333%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-0 {
    margin-left: 0%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-12 {
    width: 100%; }
  .col-md-11 {
    width: 91.66666667%; }
  .col-md-10 {
    width: 83.33333333%; }
  .col-md-9 {
    width: 75%; }
  .col-md-8 {
    width: 66.66666667%; }
  .col-md-7 {
    width: 58.33333333%; }
  .col-md-6 {
    width: 50%; }
  .col-md-5 {
    width: 41.66666667%; }
  .col-md-4 {
    width: 33.33333333%; }
  .col-md-3 {
    width: 25%; }
  .col-md-2 {
    width: 16.66666667%; }
  .col-md-1 {
    width: 8.33333333%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-pull-11 {
    right: 91.66666667%; }
  .col-md-pull-10 {
    right: 83.33333333%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-8 {
    right: 66.66666667%; }
  .col-md-pull-7 {
    right: 58.33333333%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-5 {
    right: 41.66666667%; }
  .col-md-pull-4 {
    right: 33.33333333%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-2 {
    right: 16.66666667%; }
  .col-md-pull-1 {
    right: 8.33333333%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-push-11 {
    left: 91.66666667%; }
  .col-md-push-10 {
    left: 83.33333333%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-8 {
    left: 66.66666667%; }
  .col-md-push-7 {
    left: 58.33333333%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-5 {
    left: 41.66666667%; }
  .col-md-push-4 {
    left: 33.33333333%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-2 {
    left: 16.66666667%; }
  .col-md-push-1 {
    left: 8.33333333%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-0 {
    margin-left: 0%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-11 {
    width: 91.66666667%; }
  .col-lg-10 {
    width: 83.33333333%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-8 {
    width: 66.66666667%; }
  .col-lg-7 {
    width: 58.33333333%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-5 {
    width: 41.66666667%; }
  .col-lg-4 {
    width: 33.33333333%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-2 {
    width: 16.66666667%; }
  .col-lg-1 {
    width: 8.33333333%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-pull-11 {
    right: 91.66666667%; }
  .col-lg-pull-10 {
    right: 83.33333333%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-8 {
    right: 66.66666667%; }
  .col-lg-pull-7 {
    right: 58.33333333%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-5 {
    right: 41.66666667%; }
  .col-lg-pull-4 {
    right: 33.33333333%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-2 {
    right: 16.66666667%; }
  .col-lg-pull-1 {
    right: 8.33333333%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-push-11 {
    left: 91.66666667%; }
  .col-lg-push-10 {
    left: 83.33333333%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-8 {
    left: 66.66666667%; }
  .col-lg-push-7 {
    left: 58.33333333%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-5 {
    left: 41.66666667%; }
  .col-lg-push-4 {
    left: 33.33333333%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-2 {
    left: 16.66666667%; }
  .col-lg-push-1 {
    left: 8.33333333%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-0 {
    margin-left: 0%; } }

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table; }

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

h1, h2, h3, h4, h5, h6 {
  margin: 0; }

@font-face {
  font-family: "default";
  src: url("../../fonts/default/bmwtypewebli.eot");
  src: url("../../fonts/default/bmwtypewebli.eot?#iefix") format("embedded-opentype"), url("../../fonts/default/bmwtypewebli.woff") format("woff"), url("../../fonts/default/bmwtypewebli.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "default";
  src: url("../../fonts/default/BMWRgBd.eot");
  src: url("../../fonts/default/BMWRgBd.eot?#iefix") format("embedded-opentype"), url("../../fonts/default/BMWRgBd.woff") format("woff"), url("../../fonts/default/BMWRgBd.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: "icons";
  src: url("../../fonts/icons/icons.eot");
  src: url("../../fonts/icons/icons.eot?#iefix") format("embedded-opentype"), url("../../fonts/icons/icons.woff") format("woff"), url("../../fonts/icons/icons.ttf") format("truetype"), url("../../fonts/icons/icons.svg#untitled-font-1") format("svg");
  font-weight: normal;
  font-style: normal; }

[data-icon]:before {
  font-family: "icons" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-dropdown:before {
  content: "\61"; }

.icon-info:before {
  content: "\62"; }

.icon-car:before {
  content: "\63"; }

.icon-check:before {
  content: "\64"; }

.icon-person:before {
  content: "\65"; }

.icon-mail:before {
  content: "\66"; }

.icon-phone:before {
  content: "\67"; }

.icon-close:before {
  content: "\68"; }

.icon-info--white {
  color: #FFFFFF !important; }

/*
* Used for navbar, footer
*/
body {
  font-family: "default", Helvetica, Arial;
  font-size: 15px;
  line-height: 1;
  color: #000000;
  font-weight: 400; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.main-title {
  font-size: 59px;
  line-height: 70px;
  font-weight: 400;
  margin: 0; }
  @media (max-width: 641px) {
    .main-title {
      font-size: 28px;
      line-height: 36px; } }

.main-subtitle {
  font-size: 27px;
  font-weight: 400;
  margin: 26px 0 0; }
  .main-subtitle a {
    color: #fff;
    text-decoration: underline; }
  @media (max-width: 641px) {
    .main-subtitle {
      font-size: 22px; } }

.default-title {
  font-size: 30px; }

.small-title {
  font-size: 14px;
  line-height: 18px; }

.default-paragraph {
  font-size: 17px;
  line-height: 1.75; }
  .default-paragraph a {
    color: #1266D7; }
  .default-paragraph p {
    margin-bottom: 15px; }

.section-title {
  font-size: 28px;
  margin-bottom: 28px;
  line-height: 1; }
  @media (max-width: 641px) {
    .section-title {
      color: #FFFFFF; } }

.paragraph-small {
  font-size: 14px;
  line-height: 26px; }

.terms {
  margin: 20px 0;
  font-size: 13px;
  line-height: 16px;
  color: #444; }
  .terms p {
    font-size: 13px;
    line-height: 16px;
    color: #444; }
    .terms p a {
      color: #1266D7; }
  .terms a {
    color: #1266D7; }

.krchoice {
  position: relative; }
  .krchoice:before {
    content: "";
    width: 0;
    height: 0;
    bottom: -12px;
    left: -webkit-calc(50% - 12px);
    left: calc(50% - 12px);
    border-top: 12px solid #FFFFFF;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease; }

.krchoice__title {
  margin-bottom: 8px; }
  .krchoice__title::after {
    clear: both;
    content: "";
    display: table; }

.krchoice__radio-buttons {
  position: relative;
  top: -1px; }

.krchoice__radio-buttons__list::after {
  clear: both;
  content: "";
  display: table; }

.krchoice__radio-buttons__list__item {
  float: left;
  width: 25%;
  text-align: center; }
  .krchoice__radio-buttons__list__item span {
    cursor: pointer; }

.krchoice__icon {
  width: 100%;
  height: 24px;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease; }

.krchoice__amount {
  display: block;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  color: #5b5d5e;
  border-top: 3px solid #A8A9AA;
  padding-top: 4px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease; }

.krchoice__radio:checked + .krchoice__label .krchoice__icon {
  opacity: 1; }

.krchoice__radio:checked + .krchoice__label .krchoice__amount {
  border-top: 3px solid #1266D7;
  color: #1266D7;
  font-weight: 600; }

.krchoice__label {
  width: 100%;
  cursor: pointer;
  display: inline-block; }

.checkbox-group {
  width: 100%;
  float: left; }

.compliance-container {
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out; }

.disabled {
  opacity: .3;
  pointer-events: none; }

.compliance-checkbox {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background: none;
  border: 2px solid #A8A9AA;
  height: 20px;
  width: 20px;
  vertical-align: middle;
  float: left;
  margin-right: 10px; }

.compliance-container:not(:last-child) {
  margin-bottom: 10px; }

.compliance-container label {
  display: block;
  padding-right: 10px; }

.compliance-container input {
  vertical-align: middle; }

.compliance-container span {
  vertical-align: middle;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.compliance-btn {
  bottom: 5px;
  position: relative; }

.compliance-checkbox:checked {
  border-color: #1266D7; }

.compliance-checkbox:disabled {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none; }

.compliance-checkbox:checked:after {
  content: '';
  background-color: transparent;
  position: absolute;
  top: 5px;
  left: 5px;
  height: .55em;
  width: .85em;
  border-style: solid;
  border-color: #1266D7;
  border-width: 2px;
  border-right-style: none;
  border-top-style: none;
  pointer-events: none;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); }

.compliance-checkbox:disabled:after {
  border-color: #7b7b7b; }

.ios-toggle,
.ios-toggle:active,
.krchoice__radio,
.krchoice__radio:active {
  position: absolute;
  top: -5000px;
  height: 0;
  width: 0;
  opacity: 0;
  border: none;
  outline: none; }

.-js-toggle {
  cursor: pointer; }

.krchoice__radio, .krchoice__label {
  cursor: default; }

.radiobox {
  /* top: 20%; */
  display: table-cell;
  /* height: 100px; */
  vertical-align: middle;
  text-align: center;
  width: 100%;
  margin: auto;
  height: 100%;
  -webkit-appearance: none;
  position: absolute;
  -webkit-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out; }

.radiobox:hover {
  border: 3px solid #1266D7; }

.radiobox:checked + label {
  color: #fff; }

.radiobox:checked {
  color: #ffffff;
  background-color: #1266D7; }

.radiobox:active, .radiobox:focus {
  outline: 0; }

.radiobox div::before,
.radiobox div::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto; }

.radiobox-month-big {
  font-size: 18px;
  font-weight: 700; }

.radiobox-group {
  display: table; }

.radiobox-label {
  z-index: 1;
  /*
	margin: 0 auto;
    float: none;
    line-height:100px;
*/
  font-size: 12px;
  -webkit-transition: color 0.1s ease-out;
  -o-transition: color 0.1s ease-out;
  transition: color 0.1s ease-out;
  line-height: 1.1;
  pointer-events: none;
  color: #1266D7;
  margin: auto; }

.checkbox-label {
  display: block;
  float: left;
  position: relative;
  padding: 10px;
  width: 50px;
  height: 28px;
  margin-right: 10px;
  /*border-radius*/
  -webkit-border-radius: 15px;
  border-radius: 15px;
  background: #A8A9AA;
  cursor: pointer;
  -webkit-transition: background 0.25s ease;
  -o-transition: background 0.25s ease;
  transition: background 0.25s ease; }

.checkbox-label:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  height: 22px;
  width: 22px;
  /*border-radius*/
  -webkit-border-radius: 100%;
  border-radius: 100%;
  top: 3px;
  left: 3px;
  right: auto;
  background: #ffffff;
  -webkit-transition: left 0.25s ease;
  -o-transition: left 0.25s ease;
  transition: left 0.25s ease; }

/*
input[type="radio"]:checked + label {
	border:6px solid black;
}
*/
.ios-toggle:checked + .checkbox-label {
  background: #1266D7; }

.ios-toggle:checked + .checkbox-label:before {
  left: -webkit-calc(100% - 26px);
  left: calc(100% - 26px); }

.btn-info, .btn-select, .btn-close, .btn-plus {
  background: none;
  color: #ADADAD;
  -webkit-border-radius: 0;
          border-radius: 0;
  border: 0;
  width: 21px;
  height: 21px;
  font-size: 20px;
  margin: 2px 0 0 0;
  padding: 0; }
  .btn-info--white, .btn-select--white, .btn-close--white, .btn-plus--white {
    margin-top: 3px; }
  .btn-info:focus, .btn-select:focus, .btn-close:focus, .btn-plus:focus {
    outline: none; }

.btn-plus {
  background: transparent url(../../img/plus.svg) no-repeat center center;
  width: 20px;
  height: 20px; }

.btn-select {
  background: none;
  width: 21px;
  height: 21px;
  color: #1266D7;
  font-size: 20px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  -o-transition: transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease; }
  .btn-select:focus {
    outline: 0; }

.btn-close {
  background: none;
  width: 21px;
  height: 21px;
  color: #ADADAD;
  font-size: 20px;
  width: 20px;
  height: 20px; }

.car-selector {
  position: relative; }
  .car-selector > * {
    cursor: pointer; }
  .car-selector .flex-row__inner {
    border: 1px solid #A8A9AA;
    padding: 5px 12px; }
  .car-selector .btn-select {
    position: relative;
    top: 2px; }
  .car-selector.model-alert .flex-row__inner {
    border: 1px solid #ed3535;
    background: #ed3535; }
  .car-selector.model-alert .btn-select {
    color: #fff; }
  .car-selector.model-alert .car-selector__car-model {
    color: #fff; }

.car-select-list {
  position: absolute;
  left: 0;
  opacity: 0;
  width: 100%;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding: 20px;
  top: 0; }

.contact-form-fields {
  width: 100%; }
  .contact-form-fields__input, .contact-form-fields__select, .contact-form-fields__submit {
    width: 100%;
    font-size: 14px;
    padding: 11px;
    border: 1px solid #A8A9AA;
    background: #FFFFFF;
    -webkit-transition: color 0.25s ease;
    -o-transition: color 0.25s ease;
    transition: color 0.25s ease; }
    .contact-form-fields__input:focus, .contact-form-fields__select:focus, .contact-form-fields__submit:focus {
      outline: 0; }
  .contact-form-fields__select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 1px solid #A8A9AA;
    -webkit-border-radius: 0;
            border-radius: 0;
    padding: 12px; }
  .contact-form-fields__submit {
    border: 0;
    background: #1266D7;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 600;
    padding: 13px; }
  .contact-form-fields__row {
    margin-top: 8px;
    position: relative; }
    .contact-form-fields__row .icon {
      background: none;
      border: 0;
      position: absolute;
      top: 50%;
      color: #ADADAD;
      font-size: 23px;
      width: 23px;
      height: 24px;
      right: 3%;
      margin-top: -11px; }
      .contact-form-fields__row .icon path {
        -webkit-transition: fill 0.25s ease;
        -o-transition: fill 0.25s ease;
        transition: fill 0.25s ease; }
    .contact-form-fields__row.-valid .icon {
      color: #7FCF65; }
    .contact-form-fields__row.-error .icon {
      color: #ED6D6D; }
    .contact-form-fields__row.-error .contact-form-fields__input {
      color: #ED6D6D; }

.select-container {
  background: #FFFFFF; }
  .select-container select {
    background: transparent;
    z-index: 30;
    cursor: pointer; }
    .select-container select.model-alert {
      border: 1px solid #ed3535;
      color: #ed3535; }
  .select-container:before {
    font-family: "icons" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1266D7;
    content: "\61";
    position: absolute;
    top: 9px;
    right: 3%;
    font-size: 23px;
    z-index: 1; }

.krchoice__slider {
  width: 100%;
  cursor: default;
  cursor: pointer; }

.submit-container {
  display: block;
  width: 100%;
  text-align: center; }

.button-submit {
  outline: none;
  height: 40px;
  text-align: center;
  width: 100%;
  background: #1266D7;
  border: none;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease; }

.button-submit:hover {
  background: #105bbf; }

.button-submit:after {
  content: "SKICKA";
  font-weight: 600; }

.onclick {
  width: 40px;
  -webkit-border-radius: 40px;
          border-radius: 40px;
  border-color: #bbbbbb;
  font-size: 0;
  background: none;
  border: 2px dashed #1c69d4;
  border-spacing: 10px;
  pointer-events: none;
  -webkit-animation: rotating 2s 0.25s linear infinite;
  animation: rotating 2s 0.25s linear infinite; }

.onclick:after {
  content: ""; }

.onclick:hover {
  color: #5389d5; }

.validate {
  font-size: 13px;
  color: white;
  background: #85cd69;
  -webkit-animation: none;
  animation: none;
  border: 2px solid #85cd69; }

.validate:after {
  display: block;
  width: 40px;
  height: 40px;
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
  background: url("../../img/bock.svg") no-repeat;
  background-position-x: 2px;
  background-position-y: 8px; }

.button-large {
  display: inline-block;
  color: white;
  background: #1266D7;
  padding: 16px 48px;
  font-weight: 600;
  margin: 16px 0; }
  .button-large:hover, .button-large:active, .button-large:focus {
    background: #0f55b4;
    text-decoration: none;
    color: #fff; }

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.site-header {
  position: relative;
  background: no-repeat center center / cover; }
  .site-header__inner-container {
    position: relative;
    height: 80vh; }
    @media (max-width: 1281px) {
      .site-header__inner-container {
        width: 90%; } }
    @media (max-width: 641px) {
      .site-header__inner-container {
        height: 40vh; } }
  .site-header__video-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none; }
    .site-header__video-wrap iframe, .site-header__video-wrap object, .site-header__video-wrap video {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      max-width: 100%;
      height: 100%; }
    .site-header__video-wrap video {
      -o-object-fit: cover;
         object-fit: cover; }
      @media (screen\9) {
        .site-header__video-wrap video {
          height: auto !important; } }
      @media (screen\0) {
        .site-header__video-wrap video {
          height: auto !important; } }
    @media (max-width: 641px) {
      .site-header__video-wrap {
        display: none; } }
  .site-header__main-text {
    position: absolute;
    bottom: 120px;
    width: 60%; }
    @media (max-width: 641px) {
      .site-header__main-text {
        position: absolute;
        bottom: auto;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 80%; } }

.site-branding {
  width: auto;
  z-index: 20; }
  .site-branding a {
    display: block; }

.site-description, .site-logo {
  /* width: 89px;
	height: 109px;
	background-color: $white; */
  float: left; }
  @media (max-width: 641px) {
    .site-description, .site-logo {
      /* width: 69px;
		height: 69px;
		padding: 9px; */ } }

.site-logo {
  text-align: center;
  margin-left: 3px;
  margin-right: 27px; }

.site-logo__image {
  height: auto;
  display: inline; }
  @media (max-width: 641px) {
    .site-logo__image {
      width: 69px; } }

.site-description__text {
  font-size: 7px; }

.svgicon {
  width: 50px;
  height: 30px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -25px;
  cursor: pointer;
  -webkit-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease; }
  .svgicon:hover {
    opacity: 0.5; }

.configurator__product-details {
  overflow: hidden; }

.main-gallery {
  width: 102%;
  margin-left: -1%; }

.neutral-button {
  font: inherit;
  color: white;
  text-transform: none;
  background-color: transparent;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none; }

.search-trigger {
  display: none;
  vertical-align: top;
  color: #000; }

.search-button {
  height: 50px;
  width: 50px;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2245%22%20height%3D%2245%22%20viewBox%3D%220%200%2045%2045%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M32%2029.75l-5.417-5.416c1.823-2.852%201.458-6.65-1-9.174-2.75-2.826-7.545-2.88-10.424%200-2.88%202.88-2.88%207.545%200%2010.424%202.49%202.492%206.32%202.822%209.173%201L29.75%2032%2032%2029.75zm-14.937-6.07c-1.827-1.828-1.827-4.79%200-6.617s4.79-1.827%206.616%200%201.826%204.79%200%206.616c-1.828%201.826-4.79%201.826-6.617%200z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  -webkit-background-size: 50px 45px;
          background-size: 50px 45px;
  -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
          transform: scale(1.4); }

.search-field {
  max-width: 50%;
  color: #282828; }

.valign-middle {
  vertical-align: middle; }

.grey-search {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M29%2026.755l-5.365-5.364c.64-1.038%201.016-2.257%201.016-3.562%200-3.764-3.06-6.825-6.822-6.825C14.062%2011%2011%2014.063%2011%2017.825c0%203.764%203.062%206.825%206.825%206.825%201.308%200%202.526-.377%203.565-1.018l5.362%205.365L29%2026.755zm-15.99-8.93c0-2.655%202.16-4.814%204.815-4.814%202.655%200%204.813%202.16%204.813%204.815%200%202.655-2.16%204.813-4.813%204.813-2.655%200-4.814-2.158-4.814-4.813z%22%2F%3E%3C%2Fsvg%3E"); }

.nav-bar {
  height: 50px;
  width: 100%;
  background-color: #8e8e8e;
  position: absolute;
  left: 0;
  top: 0;
  color: white; }

.top-level-menu-item a {
  margin-right: auto;
  margin-left: auto;
  max-width: 1170px;
  height: auto;
  width: 94%; }

.container--content {
  height: auto;
  width: 94%; }

.container--article {
  height: auto;
  width: 90%; }

.z-100 {
  z-index: 100; }

.bg-8e8e8e {
  background-color: #8e8e8e; }

.fold-out-menu {
  display: none;
  background-color: #8e8e8e;
  width: 100%;
  border-bottom: solid 1px #bbb; }
  .fold-out-menu.is-active {
    display: block; }

.fold-out-search {
  display: none;
  background: white;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px; }
  .fold-out-search.is-active {
    display: block; }

.mb-25 {
  margin-bottom: 25px; }

.abs-logo-right {
  position: absolute;
  right: 0;
  top: 20px; }

.hamburger {
  outline: none;
  z-index: 15; }

.relative {
  position: relative; }

.menu-item {
  border-top: solid 1px #bbb;
  position: relative; }
  .menu-item a {
    display: block;
    width: 100%;
    padding: 10px 20px;
    color: #fff;
    font-weight: 800; }
    .menu-item a:focus {
      text-decoration: none; }
    .menu-item a:hover {
      color: #1266D7;
      cursor: pointer;
      text-decoration: none; }
  .menu-item .sub-menu {
    display: none; }
    .menu-item .sub-menu.active {
      display: block; }
  .menu-item.menu-item-has-children > a {
    position: relative; }
    .menu-item.menu-item-has-children > a:before {
      position: absolute;
      right: 25px;
      top: 50%;
      -webkit-transform: translateY(-50%) rotate(-90deg);
          -ms-transform: translateY(-50%) rotate(-90deg);
              transform: translateY(-50%) rotate(-90deg);
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s;
      content: "";
      background-image: url("./../../img/arrowdown.svg");
      -webkit-background-size: 15px 15px;
              background-size: 15px 15px;
      width: 15px;
      height: 15px; }
  .menu-item.menu-item-has-children.active a:before {
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }

.hamburger {
  padding: 12px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: white;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger:hover .hamburger-inner, .hamburger:hover .hamburger-inner::before, .hamburger:hover .hamburger-inner::after {
  background-color: #1266D7; }

.hamburger-box {
  width: 24px;
  height: 20px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 4px;
  background-color: #fff;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease; }

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block; }

.hamburger-inner::before {
  top: -10px; }

.hamburger-inner::after {
  bottom: -10px; }

.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
       -o-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  -o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }

.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  -o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

.site-content {
  position: relative;
  top: -1px; }

.configurator::after {
  clear: both;
  content: "";
  display: table; }

@media (max-width: 641px) {
  .configurator {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; } }

.configurator {
  display: block;
  background: #ffffff; }

.flickity-prev-next-button {
  z-index: 10; }

@media (max-width: 641px) {
  .single-car .site-header__inner-container {
    display: none; } }

@media (max-width: 641px) {
  .no-mb\@phone {
    margin-bottom: 0; } }

.configurator__product-details {
  float: left;
  position: relative;
  width: 66.66667%; }
  @media (max-width: 641px) {
    .configurator__product-details {
      margin-top: 50px; } }
  .configurator__product-details__info {
    padding: 60px;
    background: #ffffff; }
    .configurator__product-details__info p {
      font-size: 17px;
      line-height: 1.75; }
    @media (max-width: 641px) {
      .configurator__product-details__info {
        background: transparent;
        padding: 45px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        left: 0;
        width: 100%; }
        .configurator__product-details__info > *:not(h3) {
          display: none; } }
  @media (max-width: 1281px) {
    .configurator__product-details {
      width: 66.6666%; } }
  @media (max-width: 961px) {
    .configurator__product-details {
      width: 60%; } }
  @media (max-width: 641px) {
    .configurator__product-details {
      width: 100%; } }

.krchoice .flex-row__inner, .toggles {
  opacity: 0.5;
  -webkit-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease; }

.configurator__form {
  width: 33.33334%;
  float: right;
  background: #F4F5F6;
  /* 	display: flex;
	flex-direction: column;
 */ }
  .configurator__form .flex-row {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    padding: 12px 16px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
    .configurator__form .flex-row.configurator__form__title {
      padding: 24px 12px;
      -webkit-box-flex: 0;
      -webkit-flex: 0;
          -ms-flex: 0;
              flex: 0; }
    .configurator__form .flex-row.-whitebg.toggles:nth-of-type(odd) {
      background: #f5f5f5; }
    .configurator__form .flex-row__paragraph {
      line-height: 2.1;
      color: #5b5d5e;
      font-weight: 400;
      -webkit-transition: color 0.25s ease;
      -o-transition: color 0.25s ease;
      transition: color 0.25s ease; }
  @media (max-width: 1281px) {
    .configurator__form {
      width: 33.3333%;
      position: relative; } }
  @media (max-width: 961px) {
    .configurator__form {
      width: 40%; } }
  @media (max-width: 641px) {
    .configurator__form {
      width: 100%;
      position: relative;
      top: -3px; } }
  .configurator__form__title {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  .configurator__form__choice-fields {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    background: white; }
  .configurator__form__overlay-card {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0; }
    .configurator__form__overlay-card__header, .configurator__form__overlay-card__content, .configurator__form__overlay-card__image {
      background: #F4F5F6;
      z-index: 99999999; }
  .configurator__form__form-total {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  .configurator__form.-is-active .krchoice .flex-row__inner, .configurator__form.-is-active .toggles {
    opacity: 1; }

.configurator__form__overlay-card {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  .configurator__form__overlay-card > * {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }
  .configurator__form__overlay-card__header {
    padding: 16px;
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
        -ms-flex-positive: 2;
            flex-grow: 2; }
    .configurator__form__overlay-card__header__title {
      color: #757677;
      font-size: 14px;
      line-height: 25px; }
  .configurator__form__overlay-card__content {
    color: #000000;
    font-size: 14px;
    padding: 0 16px 16px;
    -webkit-box-flex: 10;
    -webkit-flex-grow: 10;
        -ms-flex-positive: 10;
            flex-grow: 10; }
    @media (min-width: 1920px) {
      .configurator__form__overlay-card__content {
        -webkit-box-flex: 12;
        -webkit-flex-grow: 12;
            -ms-flex-positive: 12;
                flex-grow: 12; } }
  .configurator__form__overlay-card__image {
    -webkit-box-flex: 16;
    -webkit-flex-grow: 16;
        -ms-flex-positive: 16;
            flex-grow: 16;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden; }
    .configurator__form__overlay-card__image__src {
      width: 100%;
      -webkit-align-self: flex-end;
          -ms-flex-item-align: end;
              align-self: flex-end;
      min-height: 200px;
      max-height: 200px;
      background: no-repeat center center / cover; }
    @media (min-width: 1920px) {
      .configurator__form__overlay-card__image {
        -webkit-box-flex: 12;
        -webkit-flex-grow: 12;
            -ms-flex-positive: 12;
                flex-grow: 12; } }
  .configurator__form__overlay-card.-display {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .configurator__form__overlay-card.-show {
    opacity: 1; }

.video-background {
  position: absolute;
  top: 50%;
  left: 0;
  padding-top: 56.25%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 2s opacity ease;
  -o-transition: 2s opacity ease;
  transition: 2s opacity ease;
  opacity: 1; }

.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; }

.configurator__leasing-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 3px;
  margin-bottom: 3px; }

.configurator__leasing-month {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: grid;
  position: relative;
  text-align: center;
  height: 80px;
  /*		&:nth-child(4n+5) {
			
			background: #e8e8e8;
		}

		&:nth-child(4n+6) {
			background: #edf0f3;
		}

		&:nth-child(4n+7) {
			
			background: #e8e8e8;
		}

		&:nth-child(4n+8) {
			background: #edf0f3;
		}
*/ }
  .configurator__leasing-month:nth-child(4n+1) {
    background: #edf0f3; }
  .configurator__leasing-month:nth-child(4n+2) {
    background: #e8e8e8; }
  .configurator__leasing-month:nth-child(4n+3) {
    background: #edf0f3; }
  .configurator__leasing-month:nth-child(4n+4) {
    background: #e8e8e8; }

.configurator__form__choice-fields {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease; }
  .configurator__form__choice-fields > * {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }
  .configurator__form__choice-fields.-display {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .configurator__form__choice-fields.-show {
    opacity: 1; }
    .configurator__form__choice-fields.-show .krchoice:before {
      opacity: 1; }
  .configurator__form__choice-fields .btn-info {
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out; }
    .configurator__form__choice-fields .btn-info:hover {
      -webkit-transform: scale(1.15);
          -ms-transform: scale(1.15);
              transform: scale(1.15); }

.contact-form, .contact-form-fields {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  .contact-form > *, .contact-form-fields > * {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .contact-form .flex-row, .contact-form-fields .flex-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .contact-form .flex-row__inner, .contact-form-fields .flex-row__inner {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      .contact-form .flex-row__inner > .flex-row__paragraph, .contact-form-fields .flex-row__inner > .flex-row__paragraph {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
            -ms-flex: 1;
                flex: 1; }

.contact-form {
  display: block; }

.contact-form .flex-row.contact-form-fields {
  display: block !important; }
  .contact-form .flex-row.contact-form-fields .contact-form-fields__wrapper {
    display: block; }

.flex-row.configurator__form-total {
  padding: 18px 16px;
  cursor: default;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0; }

.configurator__form-total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.configurator__form-total__container {
  font-size: 18px; }
  .configurator__form-total__container__price {
    font-size: 36px; }

.bxslider img, .bxslider video {
  width: 100%; }

.okr-container {
  display: table;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease; }
  .okr-container .okr {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #1266D7; }
    .okr-container .okr__title {
      font-size: 96px;
      font-weight: 600; }
      @media (max-width: 641px) {
        .okr-container .okr__title {
          font-size: 48px; } }
    .okr-container .okr__subtitle {
      font-size: 16px;
      font-weight: 400; }
  .okr-container:hover {
    opacity: 0.8; }

@media (max-width: 641px) {
  .products {
    margin-top: -3px; } }

.products__list {
  background: #FFFFFF;
  border-top: 1px solid #e8e8e8;
  margin-bottom: 60px; }
  .products__list::after {
    clear: both;
    content: "";
    display: table; }
  .products__list__item {
    padding: 12px 12px 0;
    float: left;
    width: 25%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #FFFFFF;
    cursor: pointer;
    /*
		&:nth-child(4n+1) {
			background: #edf0f3;
		}

		&:nth-child(4n+2) {
			background: #e8e8e8;
		}

		&:nth-child(4n+3) {
			background: #e8e8e8;
		}

		&:nth-child(4n+4) {
			background: #edf0f3;
		}
*/ }
    .products__list__item:nth-child(4n+1) {
      border-bottom: 1px solid #e8e8e8;
      border-right: 1px solid #e8e8e8; }
    .products__list__item:nth-child(4n+2) {
      border-bottom: 1px solid #e8e8e8;
      border-right: 1px solid #e8e8e8; }
    .products__list__item:nth-child(4n+3) {
      border-bottom: 1px solid #e8e8e8;
      border-right: 1px solid #e8e8e8; }
    .products__list__item:nth-child(4n+4) {
      border-bottom: 1px solid #e8e8e8;
      border-right: none; }
    @media screen and (min-width: 961px) {
      .products__list__item {
        /*
			&:nth-child(3n+3) {
				border-bottom:1px solid #e8e8e8;
				border-right:none;
			}
*/
        /*
			&:nth-child(4n+1) {
				background: initial;
			}

			&:nth-child(4n+2) {
				background: initial;
			}

			&:nth-child(4n+3) {
				background: initial;
			}

			&:nth-child(4n+4) {
				background: initial;
			}

			&:nth-child(6n+1) {
				background: #edf0f3;
			}

			&:nth-child(6n+2) {
				background: #e8e8e8;
			}

			&:nth-child(6n+3) {
				background: #edf0f3;
			}
			&:nth-child(6n+4) {
				background: #e8e8e8;
			}

			&:nth-child(6n+5) {
				background: #edf0f3;
			}

			&:nth-child(6n+6) {
				background: #e8e8e8;
			}
*/ }
        .products__list__item:nth-child(3n+1) {
          border-bottom: 1px solid #e8e8e8;
          border-right: 1px solid #e8e8e8; }
        .products__list__item:nth-child(3n+2) {
          border-bottom: 1px solid #e8e8e8;
          border-right: 1px solid #e8e8e8; } }
    @media screen and (min-width: 1281px) {
      .products__list__item {
        /*
			&:nth-child(6n+1) {
				border-bottom:1px solid #e8e8e8;
				border-right:1px solid #e8e8e8;
			}
	
			&:nth-child(6n+2) {
				border-bottom:1px solid #e8e8e8;
				border-right:none;
			}
*/
        /*
			&:nth-child(6n+1) {
				background: initial;
			}

			&:nth-child(6n+2) {
				background: initial;
			}

			&:nth-child(6n+3) {
				background: initial;
			}
			&:nth-child(6n+4) {
				background: initial;
			}

			&:nth-child(6n+5) {
				background: initial;
			}

			&:nth-child(6n+6) {
				background: initial;
			}

			&:nth-child(8n+1) {
				background: #edf0f3;
			}

			&:nth-child(8n+2) {
				background: #e8e8e8;
			}

			&:nth-child(8n+3) {
				background: #edf0f3;
			}

			&:nth-child(8n+4) {
				background: #e8e8e8;
			}
			&:nth-child(8n+5) {
				background: #e8e8e8;
			}

			&:nth-child(8n+6) {
				background: #edf0f3;
			}

			&:nth-child(8n+7) {
				background: #e8e8e8;
			}

			&:nth-child(8n+8) {
				background: #edf0f3;
			}
*/ } }
    @media (max-width: 1281px) {
      .products__list__item {
        width: 33.333%; } }
    @media (max-width: 961px) {
      .products__list__item {
        width: 50%; } }
    @media (max-width: 641px) {
      .products__list__item {
        width: 50%; } }
    .products__list__item--wide {
      width: 100vw;
      height: auto;
      padding-bottom: 30px;
      cursor: auto; }
      .products__list__item--wide p,
      .products__list__item--wide .default-paragraph {
        color: #000000; }
      .products__list__item--wide .section-title {
        color: #000000; }
        @media (max-width: 641px) {
          .products__list__item--wide .section-title {
            color: #000000; } }
      .products__list__item--wide .btn-close {
        color: #ADADAD;
        cursor: pointer;
        text-decoration: none; }
      .products__list__item--wide .btn-close:hover {
        color: #ADADAD;
        text-decoration: none; }
      .products__list__item--wide .section-title {
        color: #000000; }
        @media (max-width: 641px) {
          .products__list__item--wide .section-title {
            color: #000000; } }
      .products__list__item--wide__image {
        padding: 60px 0px;
        text-align: center; }
        .products__list__item--wide__image img {
          display: inline; }
      .products__list__item--wide .container-fluid {
        padding: 0; }
    .products__list__item__header {
      color: #000000;
      position: relative;
      z-index: 10; }
      .products__list__item__header .products__list__item__title {
        font-size: 16px;
        font-weight: normal;
        margin-bottom: 6px; }
      .products__list__item__header .products__list__item__subtitle {
        font-size: 16px;
        margin-bottom: 6px;
        font-weight: 800; }
        .products__list__item__header .products__list__item__subtitle .from, .products__list__item__header .products__list__item__subtitle .curr {
          font-size: 10px; }
        .products__list__item__header .products__list__item__subtitle .price {
          font-size: 24px; }
    .products__list__item__title {
      font-size: 28px; }
      @media (max-width: 641px) {
        .products__list__item__title {
          font-size: 20px; } }
    .products__list__item__subtitle {
      font-size: 14px;
      font-weight: 300;
      margin-top: 10px; }
    .products__list__item__readmore {
      position: relative; }
      .products__list__item__readmore svg {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        vertical-align: middle; }
    .products__list__item__image {
      z-index: 0;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%; }
      .products__list__item__image a {
        display: block; }
      .products__list__item__image img {
        display: block;
        width: auto;
        height: auto;
        max-height: 100%;
        padding: 0;
        margin: 0 auto; }
    .products__list__item.okr-container {
      padding-top: 0 !important; }
      .products__list__item.okr-container .okr {
        color: #1266D7;
        -webkit-transition: color 0.25s ease-in-out;
        -o-transition: color 0.25s ease-in-out;
        transition: color 0.25s ease-in-out; }
      @media (max-width: 641px) {
        .products__list__item.okr-container {
          height: 216px; } }
    .products__list__item:hover .products__list__hover-info {
      visibility: visible;
      opacity: 1; }
  .products__list__hover-info {
    max-width: 100%;
    width: 100%;
    padding: 18px 16px;
    background: #1266D7;
    color: #fff;
    font-weight: 600;
    text-align: center;
    display: none;
    text-transform: uppercase;
    -webkit-transition: background .25s ease-in-out;
    -o-transition: background .25s ease-in-out;
    transition: background .25s ease-in-out;
    z-index: 10;
    text-align: center;
    -webkit-transition: color 0.25s ease-in-out, background 0.25s ease-in-out, opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
    -o-transition: color 0.25s ease-in-out, background 0.25s ease-in-out, opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
    transition: color 0.25s ease-in-out, background 0.25s ease-in-out, opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
    visibility: hidden;
    opacity: 1; }
    .products__list__hover-info span {
      font-size: 14px;
      line-height: 18px;
      display: inline-block;
      max-width: 100%; }
    .products__list__hover-info:hover {
      background: #105bbf;
      color: #FFFFFF; }
    @media screen and (max-width: 1450px) and (min-width: 1200px) {
      .products__list__hover-info {
        padding: 20px 12px; } }
    @media screen and (max-width: 1199px) and (min-width: 980px) {
      .products__list__hover-info {
        padding: 16px 12px; } }

.hidden\@desktop {
  display: none; }

@media (max-width: 1281px) {
  .hidden\@desktop {
    display: block; } }

.spotlight__container {
  position: relative; }
  @media (max-width: 1281px) {
    .spotlight__container {
      width: 90%; } }

.spotlight {
  background: #FFFFFF;
  padding: 28px 0; }
  .spotlight__info {
    padding-top: 16px; }
    .spotlight__info__container {
      height: 230px; }
      .spotlight__info__container h3 {
        font-weight: 400;
        font-size: 30px; }
        .spotlight__info__container h3 strong {
          font-weight: 400; }
        .spotlight__info__container h3 span {
          font-size: 0.75em; }
      @media (max-width: 641px) {
        .spotlight__info__container {
          height: auto; } }
    .spotlight__info__additional {
      padding-top: 16px;
      /* 			position: absolute;
			bottom: 0;*/
      /* &__text {
				position: absolute;
				bottom: 3px;
				left: 80px;
				width: 180px;
			} */ }
      .spotlight__info__additional::after {
        clear: both;
        content: "";
        display: table; }
  .spotlight .promo-text {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.75; }

.faq-section {
  position: relative; }
  .faq-section__intro {
    padding: 60px; }
    @media (max-width: 641px) {
      .faq-section__intro {
        padding: 20px; } }
    @media (max-width: 641px) {
      .faq-section__intro__title {
        color: #000000; } }
  .faq-section__infolist__item {
    margin-bottom: 1.5em; }
    .faq-section__infolist__item__img {
      width: 40px;
      height: 40px;
      margin-right: 1.5em; }
    .faq-section__infolist__item__definition {
      line-height: 40px; }
  .faq-section__close-button {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 30px;
    height: 30px;
    z-index: 10;
    cursor: pointer; }
    .faq-section__close-button:hover {
      color: #ADADAD;
      text-decoration: none; }

.accordion {
  padding-top: 60px;
  padding-bottom: 20px; }
  @media (max-width: 641px) {
    .accordion {
      padding-top: 0;
      padding-bottom: 0px; } }
  .accordion__item {
    overflow: hidden;
    position: relative;
    -webkit-transition: max-height 0.15s ease;
    -o-transition: max-height 0.15s ease;
    transition: max-height 0.15s ease; }
    .accordion__item__title {
      background: #1266D7;
      color: #FFFFFF;
      padding: 9px 35px 9px 12px;
      cursor: pointer;
      border-bottom: 1px solid #fff; }
    .accordion__item__button {
      position: absolute;
      top: 10px;
      right: 10px;
      -webkit-transition: -webkit-transform 0.15s ease;
      transition: -webkit-transform 0.15s ease;
      -o-transition: transform 0.15s ease;
      transition: transform 0.15s ease;
      transition: transform 0.15s ease, -webkit-transform 0.15s ease; }
    .accordion__item__text {
      display: none;
      padding: 30px; }
    .accordion__item.-active .accordion__item__text {
      display: block; }
    .accordion__item.-active .accordion__item__button {
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg); }

/*
 * "Car" Single template
 */
.single-car #spotlight {
  display: none; }

#slider-container {
  width: -webkit-calc(100% - 84px);
  width: calc(100% - 84px);
  margin: 0 auto; }
  @media (max-width: 641px) {
    #slider-container {
      width: -webkit-calc(100% - 87px);
      width: calc(100% - 87px); } }

.noUi-handle {
  border: none;
  -webkit-border-radius: none;
          border-radius: none;
  background: none;
  cursor: ew-resize;
  -webkit-box-shadow: none;
          box-shadow: none; }

.noUi-handle:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  content: "\63";
  font-size: 60px;
  display: block;
  position: absolute;
  height: 48px;
  width: 60px;
  background: none;
  left: -12px;
  top: -0px;
  color: #1266D7; }

.noUi-handle:after {
  content: none; }

.noUi-target {
  -webkit-border-radius: 0px;
          border-radius: 0px;
  border: none;
  border-bottom: 0;
  -webkit-box-shadow: none;
          box-shadow: none; }

.noUi-horizontal {
  height: 40px; }

.noUi-horizontal .noUi-handle {
  width: 60px;
  height: 48px; }

.noUi-background {
  background: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none; }

.noUi-marker-large {
  display: none; }

.noUi-value {
  text-decoration: underline;
  cursor: pointer;
  display: none; }

.noUi-horizontal.noUi-extended {
  padding-right: 32px; }

.noUi-horizontal.noUi-extended .noUi-handle {
  left: -1px; }

.noUi-horizontal.noUi-extended .noUi-origin {
  right: -32px; }

.single-car .bg-intro {
  display: none; }
  @media (max-width: 641px) {
    .single-car .bg-intro {
      display: block; } }

.bg-intro {
  background-color: #f1f2f3;
  padding-top: 25px;
  overflow: hidden;
  width: 100%; }

.text-align-center {
  text-align: center; }

.article-text h1, .article-text h2, .article-text h3, .article-text h4, .article-text h5, .article-text h6 {
  line-height: 1;
  margin-bottom: 15px;
  margin-top: 30px; }

.article-text p {
  margin-bottom: 17px;
  line-height: 1.40; }

input {
  -webkit-border-radius: 0;
          border-radius: 0; }

.expand-section {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 150px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, #f1f2f3), to(transparent));
  background: -webkit-linear-gradient(bottom, #f1f2f3 30%, transparent);
  background: -o-linear-gradient(bottom, #f1f2f3 30%, transparent);
  background: linear-gradient(to top, #f1f2f3 30%, transparent); }
  .expand-section.hide-text {
    display: block; }
  .expand-section .button-large {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }

.icon {
  vertical-align: middle; }

.bold {
  font-weight: bold; }

.icon-xs {
  width: 12px;
  height: 12px; }

.icon-sm {
  width: 16px;
  height: 16px; }

.icon--white {
  fill: white; }

.icon--black {
  fill: black; }

.rotate90 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }

.show\@phone {
  display: none; }

.mb-20 {
  margin-bottom: 20px; }

.fs-26 {
  font-size: 26px !important; }

.fs-20 {
  font-size: 20px; }

@media (max-width: 641px) {
  .fs-24\@phone {
    font-size: 24px !important; }
  .fs-26\@phone {
    font-size: 26px !important; }
  .lh-125\@phone {
    line-height: 1.25 !important; }
  .mb-20\@phone {
    margin-bottom: 20px !important; }
  .hide\@phone {
    display: none !important; }
  .show\@phone {
    display: block !important; } }

.article-max-width {
  max-width: 500px;
  margin: auto; }

.article-padding {
  padding-left: 10px;
  padding-right: 10px; }
  @media screen and (min-width: 640px) {
    .article-padding *:first-child {
      margin-top: 0; } }
  @media (max-width: 641px) {
    .article-padding {
      padding-left: 0;
      padding-right: 0; } }

#mainFooter {
  background: #F3F3F3;
  border-top: 10px solid #1266D7;
  padding-bottom: 40px; }
  #mainFooter .container {
    width: 90%; }
  #mainFooter .copyright {
    padding-top: 50px; }
    #mainFooter .copyright a {
      color: #1266D7; }
  @media (max-width: 641px) {
    #mainFooter {
      padding-bottom: 22px; }
      #mainFooter .copyright {
        max-width: 55%;
        padding-top: 30px; } }

.like-table {
  display: table;
  height: 100%;
  width: 100%; }
  .like-table .like-table-cell {
    display: table-cell;
    vertical-align: middle; }
    .like-table .like-table-cell::after {
      clear: both;
      content: "";
      display: table; }
    .like-table .like-table-cell.-align-bottom {
      vertical-align: bottom; }

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px); }

.-center {
  text-align: center !important; }

.-align-left {
  text-align: left !important; }

.-align-right {
  text-align: right !important; }

.-float-left {
  float: left !important; }

.-float-right {
  float: right !important; }

.-uppercase {
  text-transform: uppercase !important; }

.-lowercase {
  text-transform: lowercase !important; }

.-blue {
  color: #1266D7 !important; }

.-white {
  color: #FFFFFF !important; }

.-red {
  color: #1266D7 !important; }

.-italic {
  font-style: italic !important; }

.-strong {
  font-weight: 600 !important; }

.-normal {
  font-weight: 400 !important; }

.-light {
  font-weight: 300 !important; }

.-bluebg {
  background: #1266D7 !important; }

.-bluetxt {
  color: #1266D7 !important; }

.-darkgreybg {
  background: #F4F5F6 !important; }

.js-clickable {
  cursor: pointer; }

.-small {
  font-size: 0.75em; }

.-smaller {
  font-size: 0.5em; }

.-flex-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }

.-additional-padding {
  padding: 0 8px; }

.-mb-small {
  margin-bottom: 1em; }

.-mb-medium {
  margin-bottom: 2em; }

.-mb-large {
  margin-bottom: 3em; }

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  border: 1px solid #A8A9AA; }

/* The dark background behind the dialogs */
.dialog-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 16; }

/* The dialogs themselves */
.dialog-card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 570px;
  position: absolute;
  left: 50%;
  margin-left: -285px;
  top: 30%;
  margin-top: -150px;
  font: bold 14px sans-serif;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.12);
  padding: 45px 50px; }

.dialog-card .dialog-success-sign,
.dialog-card .dialog-error-sign {
  float: left;
  width: 68px;
  height: 68px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  color: #ffffff;
  text-align: center;
  line-height: 68px;
  font-size: 40px;
  margin-right: 50px; }

.dialog-card .dialog-success-sign {
  background-color: #bbda9c; }

.dialog-card .dialog-error-sign {
  background-color: #f59087; }

.dialog-card .dialog-info {
  float: left;
  max-width: 470px; }

.dialog-card h5 {
  /* Dialog title */
  color: #383c3e;
  font-size: 24px;
  margin: 5px 0 30px; }

.dialog-card p {
  /* Dialog text */
  color: #595d60;
  font-weight: normal;
  line-height: 1.25em;
  margin: 1.25em 0; }

.dialog-card .dialog-confirm-button {
  font-weight: inherit;
  background-color: #87bae1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ffffff;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  padding: 12px 32px;
  border: 0;
  cursor: pointer;
  outline: 0; }

.dialog-card button:hover {
  opacity: 0.96; }

.dialog-card button:active {
  position: relative;
  bottom: -1px; }

/* If you don't want the dialogs to be responsive, remove these media queries */
@media (max-width: 600px) {
  .dialog-card {
    width: 100%;
    min-height: 100%;
    margin-left: -175px;
    text-align: center;
    position: absolute;
    left: 0;
    margin-left: 0;
    top: 0;
    margin-top: 0;
    padding: 45px 50px; }
  .dialog-card .dialog-success-sign,
  .dialog-card .dialog-error-sign {
    float: none;
    margin: 0 auto 25px; }
  .dialog-card .dialog-info {
    float: none; }
  .dialog-card p {
    text-align: left; } }

/*
@media (max-width: 400px) {

    .dialog-card{
        width: 250px;
        margin-left: -125px;

        padding: 25px 30px;
    }

}
*/
.default-article {
  padding: 20px;
  margin-bottom: 25px; }

.article-title {
  font-size: 28px;
  margin-bottom: 28px;
  line-height: 1; }

@media screen and (min-width: 1250px) {
  .default-article {
    padding: 0; } }
