.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: 50%;
  background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  -o-transition: 0.3s opacity;
  transition: opacity 0.3s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: top 0.2s, -webkit-transform 0.2s;
  transition: top 0.2s, -webkit-transform 0.2s;
  -o-transition: 0.2s transform, 0.2s top;
  transition: transform 0.2s, top 0.2s;
  transition: transform 0.2s, top 0.2s, -webkit-transform 0.2s;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: left 0.2s, -webkit-transform 0.2s;
  transition: left 0.2s, -webkit-transform 0.2s;
  -o-transition: 0.2s transform, 0.2s left;
  transition: transform 0.2s, left 0.2s;
  transition: transform 0.2s, left 0.2s, -webkit-transform 0.2s;
}

.swiper-container-horizontal.swiper-container-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: right 0.2s, -webkit-transform 0.2s;
  transition: right 0.2s, -webkit-transform 0.2s;
  -o-transition: 0.2s transform, 0.2s right;
  transition: transform 0.2s, right 0.2s;
  transition: transform 0.2s, right 0.2s, -webkit-transform 0.2s;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: hsla(0, 0%, 100%, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white
  .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black
  .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12) infinite;
  animation: swiper-preloader-spin 1s steps(12) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes swiper-preloader-spin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: rgba(0, 0, 0, 0);
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  -moz-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type="button"],
[type="submit"],
button {
  -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden],
template {
  display: none;
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
  margin: 0;
}

button {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset,
ol,
ul {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  line-height: 1.5;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 0 solid;
}

hr {
  border-top-width: 1px;
}

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #a0aec0;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #a0aec0;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #a0aec0;
}

input::placeholder,
textarea::placeholder {
  color: #a0aec0;
}

[role="button"],
button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.bg-primary,
.bg-red-base {
  --bg-opacity: 1;
  background-color: #cf002c;
  background-color: rgba(207, 0, 44, var(--bg-opacity));
}

.bg-black {
  --bg-opacity: 1;
  background-color: #1d1d1b;
  background-color: rgba(29, 29, 27, var(--bg-opacity));
}

.bg-true-black {
  --bg-opacity: 1;
  background-color: #000;
  background-color: rgba(0, 0, 0, var(--bg-opacity));
}

.bg-black-o-80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.bg-white {
  --bg-opacity: 1;
  background-color: #fcfcfc;
  background-color: rgba(252, 252, 252, var(--bg-opacity));
}

.bg-true-white {
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.bg-gray-brown {
  --bg-opacity: 1;
  background-color: #e8e2da;
  background-color: rgba(232, 226, 218, var(--bg-opacity));
}

.bg-gray-brown-dark {
  --bg-opacity: 1;
  background-color: #9c958b;
  background-color: rgba(156, 149, 139, var(--bg-opacity));
}

.bg-gray-brown-base {
  --bg-opacity: 1;
  background-color: #d7d2cb;
  background-color: rgba(215, 210, 203, var(--bg-opacity));
}

.bg-gray-brown-light {
  --bg-opacity: 1;
  background-color: #e8e2da;
  background-color: rgba(232, 226, 218, var(--bg-opacity));
}

.bg-gray-brown-x-light {
  --bg-opacity: 1;
  background-color: #f7f4f0;
  background-color: rgba(247, 244, 240, var(--bg-opacity));
}

.bg-gray-05 {
  --bg-opacity: 1;
  background-color: #f2f2f2;
  background-color: rgba(242, 242, 242, var(--bg-opacity));
}

.bg-danger-light {
  --bg-opacity: 1;
  background-color: #ffccce;
  background-color: rgba(255, 204, 206, var(--bg-opacity));
}

.bg-info-light {
  --bg-opacity: 1;
  background-color: #d9edf7;
  background-color: rgba(217, 237, 247, var(--bg-opacity));
}

.bg-success-dark {
  --bg-opacity: 1;
  background-color: #319e3f;
  background-color: rgba(49, 158, 63, var(--bg-opacity));
}

.focus\:bg-primary:focus,
.hover\:bg-primary:hover {
  --bg-opacity: 1;
  background-color: #cf002c;
  background-color: rgba(207, 0, 44, var(--bg-opacity));
}

.bg-opacity-85 {
  --bg-opacity: 0.85;
}

.bg-center {
  background-position: 50%;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-cover {
  -webkit-background-size: cover;
  background-size: cover;
}

.border-collapse {
  border-collapse: collapse;
}

.border-primary {
  --border-opacity: 1;
  border-color: #cf002c;
  border-color: rgba(207, 0, 44, var(--border-opacity));
}

.border-black {
  --border-opacity: 1;
  border-color: #1d1d1b;
  border-color: rgba(29, 29, 27, var(--border-opacity));
}

.border-true-black {
  --border-opacity: 1;
  border-color: #000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
}

.border-black-o-50 {
  border-color: rgba(29, 29, 27, 0.5);
}

.border-white-o-50 {
  border-color: hsla(0, 0%, 100%, 0.5);
}

.border-gray-brown {
  --border-opacity: 1;
  border-color: #e8e2da;
  border-color: rgba(232, 226, 218, var(--border-opacity));
}

.border-gray-brown-dark {
  --border-opacity: 1;
  border-color: #9c958b;
  border-color: rgba(156, 149, 139, var(--border-opacity));
}

.border-gray-brown-base {
  --border-opacity: 1;
  border-color: #d7d2cb;
  border-color: rgba(215, 210, 203, var(--border-opacity));
}

.border-gray-brown-light {
  --border-opacity: 1;
  border-color: #e8e2da;
  border-color: rgba(232, 226, 218, var(--border-opacity));
}

.border-danger-base {
  --border-opacity: 1;
  border-color: #fb3740;
  border-color: rgba(251, 55, 64, var(--border-opacity));
}

.border-info-base {
  --border-opacity: 1;
  border-color: #0870a3;
  border-color: rgba(8, 112, 163, var(--border-opacity));
}

.children\:not-last\:border-gray-brown-base > :not(:last-child) {
  --border-opacity: 1;
  border-color: #d7d2cb;
  border-color: rgba(215, 210, 203, var(--border-opacity));
}

.children\:not-last\:border-gray-brown-light > :not(:last-child) {
  --border-opacity: 1;
  border-color: #e8e2da;
  border-color: rgba(232, 226, 218, var(--border-opacity));
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-5 {
  border-radius: 5px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

.focus\:rounded:focus {
  border-radius: 0.25rem;
}

.border-solid {
  border-style: solid;
}

.border-2 {
  border-width: 2px;
}

.border-6 {
  border-width: 6px;
}

.border {
  border-width: 1px;
}

.border-t-1 {
  border-top-width: 1px;
}

.border-b-1 {
  border-bottom-width: 1px;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.children\:not-last\:border-b > :not(:last-child) {
  border-bottom-width: 1px;
}

.box-content {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.cursor-pointer {
  cursor: pointer;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.table {
  display: table;
}

.table-cell {
  display: table-cell;
}

.table-row {
  display: table-row;
}

.hidden {
  display: none;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row,
.flex-row-reverse {
  -webkit-box-orient: horizontal;
}

.flex-row-reverse {
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.items-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.self-end {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.justify-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0%;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}

.font-bold {
  font-weight: 400;
}

.h-1 {
  height: 1px;
}

.h-8 {
  height: 8px;
}

.h-16 {
  height: 16px;
}

.h-18 {
  height: 18px;
}

.h-20 {
  height: 20px;
}

.h-22 {
  height: 22px;
}

.h-24 {
  height: 24px;
}

.h-34 {
  height: 34px;
}

.h-40 {
  height: 40px;
}

.h-48 {
  height: 48px;
}

.h-56 {
  height: 56px;
}

.h-64 {
  height: 64px;
}

.h-72 {
  height: 72px;
}

.h-80 {
  height: 80px;
}

.h-96 {
  height: 96px;
}

.h-104 {
  height: 104px;
}

.h-120 {
  height: 120px;
}

.h-128 {
  height: 128px;
}

.h-138 {
  height: 138px;
}

.h-160 {
  height: 160px;
}

.h-212 {
  height: 212px;
}

.h-224 {
  height: 224px;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.h-11\/12-of-50vw {
  height: 45.83333vw;
}

.h-10\/12-of-50vw {
  height: 41.66667vw;
}

.h-full-64 {
  height: -webkit-calc(100% - 64px);
  height: calc(100% - 64px);
}

.h-41vw {
  height: 41vw;
}

.h-screen-210 {
  height: -webkit-calc(100vh - 210px);
  height: calc(100vh - 210px);
}

.text-12 {
  font-size: 12px;
}

.text-14 {
  font-size: 14.5px;
}

.text-16 {
  font-size: 16px;
}

.text-20 {
  font-size: 20px;
}

.text-24 {
  font-size: 24px;
}

.text-30 {
  font-size: 30px;
}

.text-32 {
  font-size: 32px;
}

.text-40 {
  font-size: 40px;
}

.text-48 {
  font-size: 48px;
}

.text-56 {
  font-size: 56px;
}

.text-64 {
  font-size: 64px;
}

.text-80 {
  font-size: 80px;
}

.leading-14 {
  line-height: 14px;
}

.leading-xl {
  line-height: 1.75em;
}

.leading-md {
  line-height: 1.5em;
}

.leading-sm {
  line-height: 1.25em;
}

.leading-xs {
  line-height: 1.1em;
}

.leading-2xs {
  line-height: 0.9em;
}

.leading-none {
  line-height: 1em;
}

.children\:mx-20 > * {
  margin-left: 20px;
  margin-right: 20px;
}

.children\:mb-12 > * {
  margin-bottom: 12px;
}

.children\:mb-24 > * {
  margin-bottom: 24px;
}

.children\:mt-28 > * {
  margin-top: 28px;
}

.-m-20 {
  margin: -20px;
}

.mx-4 {
  margin-left: 4px;
  margin-right: 4px;
}

.my-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.my-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.my-24 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-64 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.my-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.my-104 {
  margin-top: 104px;
  margin-bottom: 104px;
}

.my-132 {
  margin-top: 132px;
  margin-bottom: 132px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.-mx-8 {
  margin-left: -8px;
  margin-right: -8px;
}

.-mx-10 {
  margin-left: -10px;
  margin-right: -10px;
}

.-mx-12 {
  margin-left: -12px;
  margin-right: -12px;
}

.-mx-20 {
  margin-left: -20px;
  margin-right: -20px;
}

.-my-40 {
  margin-top: -40px;
  margin-bottom: -40px;
}

.mr-0 {
  margin-right: 0;
}

.mt-4 {
  margin-top: 4px;
}

.mr-4 {
  margin-right: 4px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mt-6 {
  margin-top: 6px;
}

.ml-6 {
  margin-left: 6px;
}

.mt-8 {
  margin-top: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-14 {
  margin-bottom: 14px;
}

.ml-14 {
  margin-left: 14px;
}

.mt-16 {
  margin-top: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mt-18 {
  margin-top: 18px;
}

.mb-18 {
  margin-bottom: 18px;
}

.mt-20 {
  margin-top: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.mb-28 {
  margin-bottom: 28px;
}

.ml-28 {
  margin-left: 28px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-34 {
  margin-bottom: 34px;
}

.mt-40 {
  margin-top: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mt-56 {
  margin-top: 56px;
}

.mb-56 {
  margin-bottom: 56px;
}

.mt-64 {
  margin-top: 64px;
}

.mb-64 {
  margin-bottom: 64px;
}

.ml-64 {
  margin-left: 64px;
}

.mt-72 {
  margin-top: 72px;
}

.mr-72 {
  margin-right: 72px;
}

.mt-78 {
  margin-top: 78px;
}

.mt-80 {
  margin-top: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mb-96 {
  margin-bottom: 96px;
}

.mt-104 {
  margin-top: 104px;
}

.mr-104 {
  margin-right: 104px;
}

.mt-112 {
  margin-top: 112px;
}

.mb-112 {
  margin-bottom: 112px;
}

.mt-128 {
  margin-top: 128px;
}

.mr-128 {
  margin-right: 128px;
}

.mb-132 {
  margin-bottom: 132px;
}

.mt-160 {
  margin-top: 160px;
}

.mr-160 {
  margin-right: 160px;
}

.mt-212 {
  margin-top: 212px;
}

.mt-292 {
  margin-top: 292px;
}

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.-mt-10 {
  margin-top: -10px;
}

.-mt-16 {
  margin-top: -16px;
}

.-mr-20 {
  margin-right: -20px;
}

.-mt-24 {
  margin-top: -24px;
}

.-mr-30 {
  margin-right: -30px;
}

.-ml-30 {
  margin-left: -30px;
}

.-mb-40 {
  margin-bottom: -40px;
}

.-mt-56 {
  margin-top: -56px;
}

.-mt-64 {
  margin-top: -64px;
}

.-mt-72 {
  margin-top: -72px;
}

.-mt-80 {
  margin-top: -80px;
}

.-mb-80 {
  margin-bottom: -80px;
}

.-mt-112 {
  margin-top: -112px;
}

.-mb-112 {
  margin-bottom: -112px;
}

.-mt-128 {
  margin-top: -128px;
}

.-mt-160 {
  margin-top: -160px;
}

.-mt-212 {
  margin-top: -212px;
}

.children\:not-last\:mb-6 > :not(:last-child) {
  margin-bottom: 6px;
}

.children\:not-last\:mr-12 > :not(:last-child) {
  margin-right: 12px;
}

.children\:not-last\:mr-16 > :not(:last-child) {
  margin-right: 16px;
}

.children\:not-last\:mr-24 > :not(:last-child) {
  margin-right: 24px;
}

.children\:not-last\:mr-28 > :not(:last-child) {
  margin-right: 28px;
}

.children\:not-last\:mr-32 > :not(:last-child) {
  margin-right: 32px;
}

.children\:not-last\:mr-40 > :not(:last-child) {
  margin-right: 40px;
}

.children\:not-last\:mr-48 > :not(:last-child) {
  margin-right: 48px;
}

.max-h-38 {
  max-height: 38px;
}

.max-h-200 {
  max-height: 200px;
}

.max-h-300 {
  max-height: 300px;
}

.max-h-540 {
  max-height: 540px;
}

.max-h-650 {
  max-height: 650px;
}

.max-h-700 {
  max-height: 700px;
}

.max-h-full {
  max-height: 100%;
}

.max-h-screen {
  max-height: 100vh;
}

.max-w-120 {
  max-width: 120px;
}

.max-w-140 {
  max-width: 140px;
}

.max-w-180 {
  max-width: 180px;
}

.max-w-230 {
  max-width: 230px;
}

.max-w-360 {
  max-width: 360px;
}

.max-w-437 {
  max-width: 437px;
}

.max-w-480 {
  max-width: 480px;
}

.max-w-720 {
  max-width: 720px;
}

.max-w-880 {
  max-width: 880px;
}

.max-w-970 {
  max-width: 970px;
}

.max-w-1066 {
  max-width: 1066px;
}

.max-w-1100 {
  max-width: 1100px;
}

.max-w-1320 {
  max-width: 1320px;
}

.max-w-full {
  max-width: 100%;
}

.max-w-4\/5 {
  max-width: 80%;
}

.min-h-80 {
  min-height: 80px;
}

.min-h-92 {
  min-height: 92px;
}

.min-h-172 {
  min-height: 172px;
}

.min-h-300 {
  min-height: 300px;
}

.min-h-320 {
  min-height: 320px;
}

.min-h-350 {
  min-height: 350px;
}

.min-h-600 {
  min-height: 600px;
}

.min-h-full {
  min-height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.min-h-40vh {
  min-height: 40vh;
}

.min-w-17 {
  min-width: 17px;
}

.min-w-24 {
  min-width: 24px;
}

.min-w-34 {
  min-width: 34px;
}

.min-w-48 {
  min-width: 48px;
}

.min-w-96 {
  min-width: 96px;
}

.min-w-128 {
  min-width: 128px;
}

.min-w-200 {
  min-width: 200px;
}

.min-w-full {
  min-width: 100%;
}

.min-w-1\/2 {
  min-width: 50%;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-50 {
  opacity: 0.5;
}

.focus\:outline-none:focus,
.outline-none {
  outline: 2px solid rgba(0, 0, 0, 0);
  outline-offset: 2px;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.children\:py-8 > * {
  padding-top: 8px;
  padding-bottom: 8px;
}

.children\:py-10 > * {
  padding-top: 10px;
  padding-bottom: 10px;
}

.children\:pr-16 > * {
  padding-right: 16px;
}

.children\:pr-96 > * {
  padding-right: 96px;
}

.p-10 {
  padding: 10px;
}

.p-12 {
  padding: 12px;
}

.p-16 {
  padding: 16px;
}

.p-20 {
  padding: 20px;
}

.p-24 {
  padding: 24px;
}

.p-32 {
  padding: 32px;
}

.p-40 {
  padding: 40px;
}

.p-48 {
  padding: 48px;
}

.py-2 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.px-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.py-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.px-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.py-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.px-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.py-14 {
  padding-top: 14px;
  padding-bottom: 14px;
}

.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.px-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.py-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.py-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.py-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-56 {
  padding-top: 56px;
  padding-bottom: 56px;
}

.py-64 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.px-64 {
  padding-left: 64px;
  padding-right: 64px;
}

.py-72 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-128 {
  padding-top: 128px;
  padding-bottom: 128px;
}

.px-200 {
  padding-left: 200px;
  padding-right: 200px;
}

.py-1\/12 {
  padding-top: 8.333333%;
  padding-bottom: 8.333333%;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pr-12 {
  padding-right: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.pt-14 {
  padding-top: 14px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-20 {
  padding-right: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pr-28 {
  padding-right: 28px;
}

.pb-28 {
  padding-bottom: 28px;
}

.pr-32 {
  padding-right: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.pt-40 {
  padding-top: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pt-48 {
  padding-top: 48px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pr-56 {
  padding-right: 56px;
}

.pt-64 {
  padding-top: 64px;
}

.pr-64 {
  padding-right: 64px;
}

.pb-64 {
  padding-bottom: 64px;
}

.pl-64 {
  padding-left: 64px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pt-96 {
  padding-top: 96px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-128 {
  padding-top: 128px;
}

.pb-128 {
  padding-bottom: 128px;
}

.pt-138 {
  padding-top: 138px;
}

.pb-148 {
  padding-bottom: 148px;
}

.pt-172 {
  padding-top: 172px;
}

.pt-9\/16 {
  padding-top: 56.25%;
}

.pt-14\/10 {
  padding-top: 140%;
}

.children\:not-last\:pb-18 > :not(:last-child) {
  padding-bottom: 18px;
}

.placeholder-gray-brown-dark::-webkit-input-placeholder {
  --placeholder-opacity: 1;
  color: #9c958b;
  color: rgba(156, 149, 139, var(--placeholder-opacity));
}

.placeholder-gray-brown-dark::-moz-placeholder {
  --placeholder-opacity: 1;
  color: #9c958b;
  color: rgba(156, 149, 139, var(--placeholder-opacity));
}

.placeholder-gray-brown-dark:-ms-input-placeholder {
  --placeholder-opacity: 1;
  color: #9c958b;
  color: rgba(156, 149, 139, var(--placeholder-opacity));
}

.placeholder-gray-brown-dark::placeholder {
  --placeholder-opacity: 1;
  color: #9c958b;
  color: rgba(156, 149, 139, var(--placeholder-opacity));
}

.pointer-events-none {
  pointer-events: none;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-6 {
  right: 6px;
}

.right-8 {
  right: 8px;
}

.left-8 {
  left: 8px;
}

.top-10 {
  top: 10px;
}

.top-12 {
  top: 12px;
}

.left-12 {
  left: 12px;
}

.right-28 {
  right: 28px;
}

.top-32 {
  top: 32px;
}

.right-32 {
  right: 32px;
}

.left-32 {
  left: 32px;
}

.bottom-50 {
  bottom: 50px;
}

.top-80 {
  top: 80px;
}

.bottom-106 {
  bottom: 106px;
}

.top-112 {
  top: 112px;
}

.-top-1 {
  top: -1px;
}

.-bottom-6 {
  bottom: -6px;
}

.-top-96 {
  top: -96px;
}

.top-full {
  top: 100%;
}

.-top-24 {
  top: -24px;
}

.shadow-sm {
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.focus\:shadow-outline:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.fill-white {
  fill: #fcfcfc;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-primary,
.text-red-base {
  --text-opacity: 1;
  color: #cf002c;
  color: rgba(207, 0, 44, var(--text-opacity));
}

.text-black {
  --text-opacity: 1;
  color: #1d1d1b;
  color: rgba(29, 29, 27, var(--text-opacity));
}

.text-black-o-30 {
  color: rgba(29, 29, 27, 0.3);
}

.text-white {
  --text-opacity: 1;
  color: #fcfcfc;
  color: rgba(252, 252, 252, var(--text-opacity));
}

.text-gray-brown-dark {
  --text-opacity: 1;
  color: #9c958b;
  color: rgba(156, 149, 139, var(--text-opacity));
}

.text-gray-brown-base {
  --text-opacity: 1;
  color: #d7d2cb;
  color: rgba(215, 210, 203, var(--text-opacity));
}

.text-gray-brown-light {
  --text-opacity: 1;
  color: #e8e2da;
  color: rgba(232, 226, 218, var(--text-opacity));
}

.text-gray-40 {
  --text-opacity: 1;
  color: #999;
  color: rgba(153, 153, 153, var(--text-opacity));
}

.text-gray-black {
  --text-opacity: 1;
  color: #2f171f;
  color: rgba(47, 23, 31, var(--text-opacity));
}

.text-danger-base {
  --text-opacity: 1;
  color: #fb3740;
  color: rgba(251, 55, 64, var(--text-opacity));
}

.text-info-base {
  --text-opacity: 1;
  color: #0870a3;
  color: rgba(8, 112, 163, var(--text-opacity));
}

.hover\:text-black:hover {
  --text-opacity: 1;
  color: #1d1d1b;
  color: rgba(29, 29, 27, var(--text-opacity));
}

.focus\:text-white:focus,
.hover\:text-white:hover {
  --text-opacity: 1;
  color: #fcfcfc;
  color: rgba(252, 252, 252, var(--text-opacity));
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.align-top {
  vertical-align: top;
}

.visible {
  visibility: visible;
}

.whitespace-no-wrap {
  white-space: nowrap;
}

.break-words {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.children\:w-1\/2 > * {
  width: 50%;
}

.children\:w-1\/3 > * {
  width: 33.333333%;
}

.w-16 {
  width: 16px;
}

.w-18 {
  width: 18px;
}

.w-20 {
  width: 20px;
}

.w-24 {
  width: 24px;
}

.w-34 {
  width: 34px;
}

.w-40 {
  width: 40px;
}

.w-48 {
  width: 48px;
}

.w-60 {
  width: 60px;
}

.w-64 {
  width: 64px;
}

.w-80 {
  width: 80px;
}

.w-96 {
  width: 96px;
}

.w-128 {
  width: 128px;
}

.w-138 {
  width: 138px;
}

.w-160 {
  width: 160px;
}

.w-200 {
  width: 200px;
}

.w-212 {
  width: 212px;
}

.w-320 {
  width: 320px;
}

.w-350 {
  width: 350px;
}

.w-auto {
  width: auto;
}

.w-1\/12 {
  width: 8.333333%;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-2\/3 {
  width: 66.666667%;
}

.w-1\/5 {
  width: 20%;
}

.w-2\/5 {
  width: 40%;
}

.w-3\/5 {
  width: 60%;
}

.w-4\/5 {
  width: 80%;
}

.w-5\/6 {
  width: 83.333333%;
}

.w-3\/12 {
  width: 25%;
}

.w-4\/12 {
  width: 33.333333%;
}

.w-5\/12 {
  width: 41.666667%;
}

.w-6\/12 {
  width: 50%;
}

.w-7\/12 {
  width: 58.333333%;
}

.w-8\/12 {
  width: 66.666667%;
}

.w-9\/12 {
  width: 75%;
}

.w-10\/12 {
  width: 83.333333%;
}

.w-11\/12 {
  width: 91.666667%;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.w-full-40 {
  width: -webkit-calc(100% + 40px);
  width: calc(100% + 40px);
}

.w-full-16 {
  width: -webkit-calc(100% + 16px);
  width: calc(100% + 16px);
}

.z-1 {
  z-index: 1;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-100 {
  z-index: 100;
}

.gap-16 {
  grid-gap: 16px;
  gap: 16px;
}

.gap-40 {
  grid-gap: 40px;
  gap: 40px;
}

.transform {
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  -webkit-transform: translateX(var(--transform-translate-x))
    translateY(var(--transform-translate-y)) rotate(var(--transform-rotate))
    skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y))
    scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  -ms-transform: translateX(var(--transform-translate-x))
    translateY(var(--transform-translate-y)) rotate(var(--transform-rotate))
    skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y))
    scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  -o-transform: translateX(var(--transform-translate-x))
    translateY(var(--transform-translate-y)) rotate(var(--transform-rotate))
    skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y))
    scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  transform: translateX(var(--transform-translate-x))
    translateY(var(--transform-translate-y)) rotate(var(--transform-rotate))
    skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y))
    scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
}

.transition {
  -webkit-transition-property: background-color, border-color, color, fill,
    stroke, opacity, -webkit-box-shadow, -webkit-transform;
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, -webkit-box-shadow, -webkit-transform;
  -o-transition-property: background-color, border-color, color, fill, stroke,
    opacity, box-shadow, -o-transform;
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, box-shadow, transform;
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, box-shadow, transform, -webkit-box-shadow, -webkit-transform,
    -o-transform;
}

.transition-colors {
  -webkit-transition-property: background-color, border-color, color, fill,
    stroke;
  -o-transition-property: background-color, border-color, color, fill, stroke;
  transition-property: background-color, border-color, color, fill, stroke;
}

.duration-200 {
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-o-keyframes spin {
  to {
    -o-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(1turn);
    -o-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes ping {
  75%,
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@-o-keyframes ping {
  75%,
  to {
    -o-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping {
  75%,
  to {
    -webkit-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@-o-keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@-webkit-keyframes bounce {
  0%,
  to {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    -webkit-transform: none;
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@-o-keyframes bounce {
  0%,
  to {
    -o-transform: translateY(-25%);
    transform: translateY(-25%);
    -o-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    -o-transform: none;
    transform: none;
    -o-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes bounce {
  0%,
  to {
    -webkit-transform: translateY(-25%);
    -o-transform: translateY(-25%);
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    -o-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    -o-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.container {
  width: 100%;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}

.social-media-icon {
  padding: 6px;
  border-radius: 4px;
  background-color: #9c958b;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.social-media-icon--small {
  padding: 4px;
  border-radius: 3px;
  background-color: #111010;
}

.social-media-icon:hover {
  background-color: #cf002c;
}

.social-media-icon svg path {
  fill: #fff;
}

.social-media-icon--small svg path {
  fill: #e6e2de;
}

.filter-tag {
  width: auto;
  margin-top: 16px;
  margin-right: 16px;
  background-color: #e8e2da;
  padding: 0 28px 0 12px;
  position: relative;
  border-radius: 13px;
}

.filter-tag svg {
  position: absolute;
  top: 4px;
  right: 4px;
  cursor: pointer;
}

.info-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid;
  border-radius: 100%;
  margin-left: 6px;
  cursor: pointer;
  color: #9c958b;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.info-icon:hover {
  color: #cf002c;
}

.info-icon:hover .info-tooltip {
  visibility: visible;
  opacity: 1;
}

@font-face {
  font-family: "Pluto-Regular";
  src: url(../fonts/Pluto-Regular.woff);
}

@font-face {
  font-family: "Pluto-Bold";
  src: url(../fonts/Pluto-Bold.woff);
}

@font-face {
  font-family: ProstoSans-Regular;
  src: url(../fonts/ProstoSans-Regular.woff);
}

@font-face {
  font-family: ProstoSans-Bold;
  src: url(../fonts/ProstoSans-Bold.woff);
}

@font-face {
  font-family: AmasisMTPro-Regular;
  src: url(../fonts/AmasisMTPro-Regular.woff);
}

@font-face {
  font-family: AmasisMTPro-Bold;
  src: url(../fonts/AmasisMTPro-Bold.woff);
}

body,
html {
  position: relative;
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #1d1d1b;
}

.fontface-gl body,
.fontface-gl html {
  font-family: "Pluto-Regular";
}

.fontface-ru body,
.fontface-ru html {
  font-family: ProstoSans-Regular;
}

.fontface-cn body,
.fontface-cn html {
  font-family: AmasisMTPro-Regular;
}

body {
  overflow-x: hidden;
}

.css-transitions-only-after-page-load * {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.container {
  width: 91.666667%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.container--md {
  max-width: 1320px;
}

.container--md-right {
  width: 95.8333335%;
  margin-left: auto;
  margin-right: 0;
  max-width: 100%;
}

@media (min-width: 1440px) {
  .container--md-right {
    width: -webkit-calc(50vw + 660px);
    width: calc(50vw + 660px);
  }
}

.container--sm {
  max-width: 1100px;
}

.container--xs {
  max-width: 800px;
}

.container--2xs {
  max-width: 660px;
}

@media (max-width: 767px) {
  .container--full-width-xs {
    width: 100%;
    max-width: 100%;
  }
}

.container .container {
  width: 100%;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

a.active {
  color: #1d1d1b;
}

.box-shadow {
  -webkit-box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.5);
}

@media (max-width: 1279px) {
  nav:after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(29, 29, 27, 0.7019607843137254);
    width: 100%;
    height: 100vh;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  }
}

@media (max-width: 1279px) {
  .no-scroll {
    position: fixed;
    width: 100%;
    overflow-y: scroll;
  }
}

.no-scroll nav:after {
  opacity: 1;
  visibility: visible;
}

.no-scroll-desktop {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

.centered {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.centered-y {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.centered-x {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 1280px) {
  .centered-x-lg {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .centered-x-xs {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.translateY-100 {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}

.-translate-50 {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (min-width: 1280px) {
  .translateY-100-lg {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.checkmark-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 10px;
  height: 20px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  border: 2px solid #cf002c;
  border-right: rgba(0, 0, 0, 0);
  position: relative;
  margin-right: 20px;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}

.checkmark-icon:after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 15px;
  left: 5px;
  bottom: 4px;
  -webkit-transform: rotate(8deg);
  -ms-transform: rotate(8deg);
  -o-transform: rotate(8deg);
  transform: rotate(8deg);
  border-right: 2px solid #cf002c;
  border-bottom: 2px solid #cf002c;
}

.checkmark-icon:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 20px;
  left: 100%;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  -o-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  -o-transform: rotate(50deg);
  transform: rotate(50deg);
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  border: 2px solid #cf002c;
  border-left: rgba(0, 0, 0, 0);
}

.fontface-gl .fr-view b,
.fontface-gl .rich-text b {
  font-family: "Pluto-Bold";
}

.fontface-ru .fr-view b,
.fontface-ru .rich-text b {
  font-family: ProstoSans-Bold;
}

.fontface-cn .fr-view b,
.fontface-cn .rich-text b {
  font-family: AmasisMTPro-Bold;
}

.fr-view a:not(.link):not(.btn),
.rich-text a:not(.link):not(.btn) {
  color: #cf002c !important;
  text-decoration: underline;
}

.fr-view a:not(.link):not(.btn):hover,
.rich-text a:not(.link):not(.btn):hover {
  color: #931004 !important;
}

.fr-view ul,
.rich-text ul {
  margin-top: 16px;
  list-style-type: none !important;
  padding-left: 0;
}

.fr-view ul li,
.rich-text ul li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 12px;
}

.fr-view ul li:before,
.rich-text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #cf002c;
}

.fr-view--separator ul li,
.rich-text--separator ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.fr-view--separator ul li:not(:last-child),
.rich-text--separator ul li:not(:last-child) {
  border-bottom: 1px solid #eaebf2;
}

.fr-view--no-bullet ul li,
.rich-text--no-bullet ul li {
  padding-left: 0;
}

.fr-view--no-bullet ul li:before,
.rich-text--no-bullet ul li:before {
  display: none;
}

.fr-view h1,
.rich-text h1 {
  font-size: 56px;
  margin-bottom: 16px;
  line-height: 1.1em;
}

.fontface-gl .fr-view h1,
.fontface-gl .rich-text h1 {
  font-family: "Pluto-Bold";
}

.fontface-ru .fr-view h1,
.fontface-ru .rich-text h1 {
  font-family: ProstoSans-Bold;
}

.fontface-cn .fr-view h1,
.fontface-cn .rich-text h1 {
  font-family: AmasisMTPro-Bold;
}

@media (max-width: 1439px) {
  .fr-view h1,
  .rich-text h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .fr-view h1,
  .rich-text h1 {
    font-size: 32px;
  }
}

@media (max-width: 639px) {
  .fr-view h1,
  .rich-text h1 {
    font-size: 24px;
  }
}

.fr-view h2,
.rich-text h2 {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1.1em;
}

.fontface-gl .fr-view h2,
.fontface-gl .rich-text h2 {
  font-family: "Pluto-Bold";
}

.fontface-ru .fr-view h2,
.fontface-ru .rich-text h2 {
  font-family: ProstoSans-Bold;
}

.fontface-cn .fr-view h2,
.fontface-cn .rich-text h2 {
  font-family: AmasisMTPro-Bold;
}

@media (max-width: 1599px) {
  .fr-view h2,
  .rich-text h2 {
    font-size: 32px;
  }
}

@media (max-width: 1023px) {
  .fr-view h2,
  .rich-text h2 {
    font-size: 24px;
  }
}

.fr-view h3,
.rich-text h3 {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.1em;
}

.fontface-gl .fr-view h3,
.fontface-gl .rich-text h3 {
  font-family: "Pluto-Bold";
}

.fontface-ru .fr-view h3,
.fontface-ru .rich-text h3 {
  font-family: ProstoSans-Bold;
}

.fontface-cn .fr-view h3,
.fontface-cn .rich-text h3 {
  font-family: AmasisMTPro-Bold;
}

@media (max-width: 1279px) {
  .fr-view h3,
  .rich-text h3 {
    font-size: 24px;
  }
}

.fr-view h4,
.rich-text h4 {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.1em;
}

.fontface-gl .fr-view h4,
.fontface-gl .rich-text h4 {
  font-family: "Pluto-Bold";
}

.fontface-ru .fr-view h4,
.fontface-ru .rich-text h4 {
  font-family: ProstoSans-Bold;
}

.fontface-cn .fr-view h4,
.fontface-cn .rich-text h4 {
  font-family: AmasisMTPro-Bold;
}

@media (max-width: 1023px) {
  .fr-view h4,
  .rich-text h4 {
    font-size: 20px;
    line-height: 1.25em;
  }
}

.fr-view h5,
.rich-text h5 {
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 1.25em;
}

.fontface-gl .fr-view h5,
.fontface-gl .rich-text h5 {
  font-family: "Pluto-Bold";
}

.fontface-ru .fr-view h5,
.fontface-ru .rich-text h5 {
  font-family: ProstoSans-Bold;
}

.fontface-cn .fr-view h5,
.fontface-cn .rich-text h5 {
  font-family: AmasisMTPro-Bold;
}

.fr-view :last-child,
.rich-text :last-child {
  margin-bottom: 0;
}

.ktc-form-wrapper .ktc-form .mce-content-body p {
  margin-bottom: 0;
  line-height: 1.5;
  color: #1d1d1b;
  font-size: 16px;
}

.fontface-gl .ktc-form-wrapper .ktc-form .mce-content-body p {
  font-family: "Pluto-Regular";
}

.fontface-ru .ktc-form-wrapper .ktc-form .mce-content-body p {
  font-family: ProstoSans-Regular;
}

.fontface-cn .ktc-form-wrapper .ktc-form .mce-content-body p {
  font-family: AmasisMTPro-Regular;
}

.ktc-form-wrapper .ktc-form .mce-content-body h1,
.ktc-form-wrapper .ktc-form .mce-content-body h2,
.ktc-form-wrapper .ktc-form .mce-content-body h3,
.ktc-form-wrapper .ktc-form .mce-content-body h4,
.ktc-form-wrapper .ktc-form .mce-content-body h5 {
  color: #1d1d1b;
}

.mce-content-body {
  line-height: 1.5;
  font-size: 16px;
  color: #1d1d1b;
}

.fontface-gl .mce-content-body {
  font-family: "Pluto-Regular";
}

.fontface-ru .mce-content-body {
  font-family: ProstoSans-Regular;
}

.fontface-cn .mce-content-body {
  font-family: AmasisMTPro-Regular;
}

.fontface-gl .mce-content-body b {
  font-family: "Pluto-Bold";
}

.fontface-ru .mce-content-body b {
  font-family: ProstoSans-Bold;
}

.fontface-cn .mce-content-body b {
  font-family: AmasisMTPro-Bold;
}

.mce-content-body a:not(.link):not(.btn) {
  color: #cf002c !important;
  text-decoration: underline;
}

.mce-content-body a:not(.link):not(.btn):hover {
  color: #931004 !important;
}

.mce-content-body ul {
  margin-top: 16px !important;
  list-style-type: none !important;
  padding-left: 0;
}

.mce-content-body ul li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 16px;
  color: #1d1d1b;
}

.fontface-gl .mce-content-body ul li {
  font-family: "Pluto-Regular";
}

.fontface-ru .mce-content-body ul li {
  font-family: ProstoSans-Regular;
}

.fontface-cn .mce-content-body ul li {
  font-family: AmasisMTPro-Regular;
}

.mce-content-body ul li::marker {
  font-size: 0;
}

.mce-content-body ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #cf002c;
}

.mce-content-body h1,
.mce-content-body h1 > span {
  font-size: 56px !important;
  margin-bottom: 16px !important;
  line-height: 1.1em !important;
}

.fontface-gl .mce-content-body h1,
.fontface-gl .mce-content-body h1 > span {
  font-family: "Pluto-Bold" !important;
}

.fontface-ru .mce-content-body h1,
.fontface-ru .mce-content-body h1 > span {
  font-family: ProstoSans-Bold !important;
}

.fontface-cn .mce-content-body h1,
.fontface-cn .mce-content-body h1 > span {
  font-family: AmasisMTPro-Bold !important;
}

@media (max-width: 1439px) {
  .mce-content-body h1,
  .mce-content-body h1 > span {
    font-size: 40px !important;
  }
}

@media (max-width: 767px) {
  .mce-content-body h1,
  .mce-content-body h1 > span {
    font-size: 32px !important;
  }
}

@media (max-width: 639px) {
  .mce-content-body h1,
  .mce-content-body h1 > span {
    font-size: 24px !important;
  }
}

.mce-content-body h2,
.mce-content-body h2 > span {
  font-size: 40px !important;
  margin-bottom: 16px !important;
  line-height: 1.1em !important;
}

.fontface-gl .mce-content-body h2,
.fontface-gl .mce-content-body h2 > span {
  font-family: "Pluto-Bold" !important;
}

.fontface-ru .mce-content-body h2,
.fontface-ru .mce-content-body h2 > span {
  font-family: ProstoSans-Bold !important;
}

.fontface-cn .mce-content-body h2,
.fontface-cn .mce-content-body h2 > span {
  font-family: AmasisMTPro-Bold !important;
}

@media (max-width: 1599px) {
  .mce-content-body h2,
  .mce-content-body h2 > span {
    font-size: 32px !important;
  }
}

@media (max-width: 1023px) {
  .mce-content-body h2,
  .mce-content-body h2 > span {
    font-size: 24px !important;
  }
}

.mce-content-body h3,
.mce-content-body h3 > span {
  font-size: 32px !important;
  margin-bottom: 16px !important;
  line-height: 1.1em !important;
}

.fontface-gl .mce-content-body h3,
.fontface-gl .mce-content-body h3 > span {
  font-family: "Pluto-Bold" !important;
}

.fontface-ru .mce-content-body h3,
.fontface-ru .mce-content-body h3 > span {
  font-family: ProstoSans-Bold !important;
}

.fontface-cn .mce-content-body h3,
.fontface-cn .mce-content-body h3 > span {
  font-family: AmasisMTPro-Bold !important;
}

@media (max-width: 1279px) {
  .mce-content-body h3,
  .mce-content-body h3 > span {
    font-size: 24px !important;
  }
}

.mce-content-body h4,
.mce-content-body h4 > span {
  font-size: 24px !important;
  margin-bottom: 16px !important;
  line-height: 1.1em !important;
}

.fontface-gl .mce-content-body h4,
.fontface-gl .mce-content-body h4 > span {
  font-family: "Pluto-Bold" !important;
}

.fontface-ru .mce-content-body h4,
.fontface-ru .mce-content-body h4 > span {
  font-family: ProstoSans-Bold !important;
}

.fontface-cn .mce-content-body h4,
.fontface-cn .mce-content-body h4 > span {
  font-family: AmasisMTPro-Bold !important;
}

@media (max-width: 1023px) {
  .mce-content-body h4,
  .mce-content-body h4 > span {
    font-size: 20px !important;
    line-height: 1.25em !important;
  }
}

.mce-content-body h5,
.mce-content-body h5 > span {
  font-size: 20px !important;
  margin-bottom: 16px !important;
  line-height: 1.25em !important;
}

.fontface-gl .mce-content-body h5,
.fontface-gl .mce-content-body h5 > span {
  font-family: "Pluto-Bold" !important;
}

.fontface-ru .mce-content-body h5,
.fontface-ru .mce-content-body h5 > span {
  font-family: ProstoSans-Bold !important;
}

.fontface-cn .mce-content-body h5,
.fontface-cn .mce-content-body h5 > span {
  font-family: AmasisMTPro-Bold !important;
}

.mce-content-body :last-child {
  margin-bottom: 0;
}

.mce-content-body :not(li):first-child {
  margin-bottom: 0;
}

.ktc-widget-body-wrapper {
  font-size: 16px;
  line-height: 1.5;
  color: #1d1d1b;
}

.fontface-gl .ktc-widget-body-wrapper {
  font-family: "Pluto-Regular";
}

.fontface-ru .ktc-widget-body-wrapper {
  font-family: ProstoSans-Regular;
}

.fontface-cn .ktc-widget-body-wrapper {
  font-family: AmasisMTPro-Regular;
}

.two-cols {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

@media (max-width: 1279px) {
  .two-cols {
    -webkit-column-count: initial;
    -moz-column-count: initial;
    column-count: auto;
    -webkit-column-gap: initial;
    -moz-column-gap: initial;
    column-gap: normal;
  }
}

@media (min-width: 1024px) {
  .js-animate-offset {
    -webkit-transition: -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    transition: -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: -o-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1.5s cubic-bezier(0, 0, 0.2, 1),
      -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1),
      -o-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (max-width: 1023px) {
  .pushed-down {
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    -o-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
}

@media (min-width: 1024px) {
  .pushed-down {
    -webkit-transform: translateY(128px);
    -ms-transform: translateY(128px);
    -o-transform: translateY(128px);
    transform: translateY(128px);
  }
}

kentico-form-modal-dialog .ktc-form-modal-dialog {
  width: 80% !important;
}

.ktc-form-wrapper
  .ktc-form
  .ktc-editing-form-value-cell
  .ktc-form-control.mce-content-body {
  max-width: 100%;
}

.table-children-border .table-row:not(:last-child) > * {
  border-bottom: 1px solid #e8e2da;
}

.products .even {
  position: relative;
}

@media (min-width: 1024px) {
  .products .even {
    padding-right: 32px;
  }
}

.products .even:after {
  content: "";
  position: absolute;
  width: 200%;
  left: 0;
  top: 0;
  height: 1px;
  background-color: #e8e2da;
}

@media (max-width: 1023px) {
  .products .even:after {
    width: 100%;
  }
}

.products .odd {
  position: relative;
}

@media (min-width: 1024px) {
  .products .odd {
    padding-left: 32px;
  }
}

@media (max-width: 1023px) {
  .products .odd {
    position: relative;
  }

  .products .odd:after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 1px;
    background-color: #e8e2da;
  }
}

.error {
  display: none;
  color: #fb3740;
  font-size: 12px;
  line-height: 1;
  margin-top: 8px;
}

.label {
  margin-top: 24px;
  margin-bottom: 8px;
  line-height: 1em;
  display: block;
}

.fontface-gl .label {
  font-family: "Pluto-Bold";
}

.fontface-ru .label {
  font-family: ProstoSans-Bold;
}

.fontface-cn .label {
  font-family: AmasisMTPro-Bold;
}

.label--required:after {
  content: " *";
  color: #cf002c;
}

.label--checkbox {
  margin-top: 0;
  padding-left: 32px;
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 12px;
  color: #9c958b;
  min-height: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.fontface-gl .label--checkbox {
  font-family: "Pluto-Regular";
}

.fontface-ru .label--checkbox {
  font-family: ProstoSans-Regular;
}

.fontface-cn .label--checkbox {
  font-family: AmasisMTPro-Regular;
}

.always-hidden {
  display: none !important;
}

.tab-focus {
  -webkit-box-shadow: 0 0 0 3px #1f97de;
  box-shadow: 0 0 0 3px #1f97de;
}

.tab-focus,
a:focus {
  outline: none;
}

.ktc-border-root.ktc-editable-area {
  margin-top: 32px;
}

.text-nowrap {
  white-space: nowrap;
}

.fontface-gl .font-regular {
  font-family: "Pluto-Regular";
}

.fontface-ru .font-regular {
  font-family: ProstoSans-Regular;
}

.fontface-cn .font-regular {
  font-family: AmasisMTPro-Regular;
}

.font-regular.fontface-gl {
  font-family: "Pluto-Regular";
}

.font-regular.fontface-ru {
  font-family: ProstoSans-Regular;
}

.font-regular.fontface-cn {
  font-family: AmasisMTPro-Regular;
}

.fontface-gl .font-bold {
  font-family: "Pluto-Bold";
}

.fontface-ru .font-bold {
  font-family: ProstoSans-Bold;
}

.fontface-cn .font-bold {
  font-family: AmasisMTPro-Bold;
}

.font-bold.fontface-gl {
  font-family: "Pluto-Bold";
}

.font-bold.fontface-ru {
  font-family: ProstoSans-Bold;
}

.font-bold.fontface-cn {
  font-family: AmasisMTPro-Bold;
}

@media (max-width: 767px) {
  .js-filters-swiper {
    overflow: visible;
  }

  .js-filters-swiper:before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    height: 1px;
    width: 32px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    background-color: #e8e2da;
  }

  .js-filters-swiper:after {
    content: "";
    position: absolute;
    right: 0;
    top: -1px;
    height: 1px;
    width: 32px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    background-color: #e8e2da;
  }

  .js-filters-swiper .filter-tag {
    padding: 4px 32px 4px 12px;
    border-radius: 20px;
  }

  .js-filters-swiper .filter-tag svg {
    padding: 4px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }
}

@media (min-width: 768px) {
  .js-filters-swiper .swiper-wrapper {
    -webkit-transform: translateX(0) !important;
    -ms-transform: translateX(0) !important;
    -o-transform: translateX(0) !important;
    transform: translateX(0) !important;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.loader-container {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loader {
  border-radius: 50%;
  width: 8em;
  height: 8em;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s linear infinite;
  -o-animation: load8 1.1s infinite linear;
  animation: load8 1.1s linear infinite;
  border: 1.1em solid rgba(207, 0, 44, 0.2);
  border-left-color: #cf002c;
}

.loader:after {
  border-radius: 50%;
  width: 8em;
  height: 8em;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-o-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    -o-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    -o-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.gm-fullscreen-control,
.gmnoprint {
  display: none;
}

.map-element > div {
  background-color: #e8e2da !important;
}

.map-cluster {
  width: 30px !important;
  height: 30px !important;
}

.map-cluster div {
  background-color: #cf002c;
  border-radius: 50%;
  color: #fff !important;
  width: 100% !important;
  height: 100% !important;
  line-height: 30px !important;
  font-size: 14px !important;
}

.fontface-gl .map-cluster div {
  font-family: "Pluto-Bold";
}

.fontface-ru .map-cluster div {
  font-family: ProstoSans-Bold;
}

.fontface-cn .map-cluster div {
  font-family: AmasisMTPro-Bold;
}

.map-cluster img {
  display: none;
}

.gm-style .gm-style-iw-t:after {
  content: none !important;
}

.gm-style .gm-style-iw-c {
  background-color: #cf002c !important;
  border-radius: 0 !important;
  color: #fff !important;
  padding: 0 !important;
  -webkit-box-shadow: 0 16px 17px -14px rgba(0, 0, 0, 0.5) !important;
  box-shadow: 0 16px 17px -14px rgba(0, 0, 0, 0.5) !important;
  max-width: 280px !important;
}

.fontface-gl .gm-style .gm-style-iw-c {
  font-family: "Pluto-Regular";
}

.fontface-ru .gm-style .gm-style-iw-c {
  font-family: ProstoSans-Regular;
}

.fontface-cn .gm-style .gm-style-iw-c {
  font-family: AmasisMTPro-Regular;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
}

.gm-style [role="button"]:focus {
  outline: none;
}

button.gm-ui-hover-effect {
  display: none !important;
}

.search-box-shadow {
  -webkit-box-shadow: 0 16px 17px -14px rgba(0, 0, 0, 0.5);
  box-shadow: 0 16px 17px -14px rgba(0, 0, 0, 0.5);
}

.disabled {
  pointer-events: none;
}

.select {
  position: relative;
}

.select__selected-option {
  width: 100%;
  background-color: #fff;
  border: 1px solid #9c958b;
  padding: 11px 37px 11px 11px;
  height: 40px;
  border-radius: 4px;
  line-height: 1;
  cursor: pointer;
  color: #1d1d1b;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.select__selected-option:focus {
  border-color: #1d1d1b;
}

.select__selected-option:after {
  content: "";
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-down-gray-brown.svg);
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}

.select__selected-option:hover {
  border-color: #1d1d1b;
}

.select__selected-option:hover:after {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-down-black.svg);
}

.select__selected-option:focus {
  outline: none;
}

.select__selected-option[data-selected="true"] {
  color: #1d1d1b;
}

.select__container {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 100%;
  width: 100%;
  margin-top: 10px;
  padding: 6px;
  border-radius: 8px;
  border: 2px solid #9c958b;
  background-color: #fff;
  -webkit-box-shadow: 0 7px 11px 0 rgba(0, 0, 0, 0.29);
  box-shadow: 0 7px 11px 0 rgba(0, 0, 0, 0.29);
}

.select__container:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #9c958b;
  border-style: solid;
  border-width: 0 12px 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -12px;
}

.select__wrapper {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
}

.select__wrapper::-webkit-scrollbar {
  width: 4px;
}

.select__wrapper::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}

.select__wrapper::-webkit-scrollbar-thumb {
  background-color: #9c958b;
}

.select__option {
  width: 100%;
  font-size: 16px;
  line-height: 1.25;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
  background-color: #fff;
}

.select__option:hover {
  background-color: #e8e2da;
}

.select__option.selected {
  background-color: #cf002c;
  color: #fff;
}

@media (min-width: 1024px) {
  .col-2-desktop {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}

.avoid-col-break {
  -webkit-column-break-inside: avoid;
  break-inside: avoid-column;
}

.corner-icon {
  position: absolute;
  left: -40px;
  bottom: -40px;
  z-index: 5;
}

.corner-icon--right {
  right: -40px;
  left: auto;
}

@media (max-width: 1279px) {
  .corner-icon {
    display: none;
  }
}

.img-gradient {
  position: relative;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.img-gradient:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(79%, rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.73))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 79%,
    rgba(0, 0, 0, 0.73)
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 79%,
    rgba(0, 0, 0, 0.73)
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 79%,
    rgba(0, 0, 0, 0.73)
  );
}

.img-ring {
  position: relative;
  background-color: #fff;
}

.img-ring:before {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  width: 56px;
  height: 56px;
  border: 8px solid #fff;
  pointer-events: none;
  z-index: 10;
  border-radius: 50%;
}

.img--contain {
  -webkit-background-size: contain !important;
  background-size: contain !important;
  background-repeat: no-repeat;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.fade-in {
  opacity: 1;
}

.fade-bg {
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.4s ease-out;
  -o-transition: background-color 0.4s ease-out;
  transition: background-color 0.4s ease-out;
}

.fade-bg-in {
  background-color: rgba(0, 0, 0, 0.8);
}

.art-overlay .swiper-container {
  overflow: visible;
}

.art-overlay .swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

.slide {
  -webkit-transition: height 0.4s ease-in-out;
  -o-transition: height 0.4s ease-in-out;
  transition: height 0.4s ease-in-out;
  overflow: hidden;
}

.art-votes {
  position: absolute;
  cursor: auto;
  z-index: 40;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  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;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  width: 138px;
  height: 138px;
  padding-bottom: 20px;
}

@media (max-width: 1279px) {
  .art-votes {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .art-votes {
    width: 80px;
    height: 80px;
    padding-bottom: 8px;
  }
}

.art-votes:after {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  width: -webkit-calc(100% + 6px);
  width: calc(100% + 6px);
  height: 50%;
  background: #fff;
  z-index: 50;
}

.highlighted:before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: -webkit-calc(100% + 2px);
  width: calc(100% + 2px);
  height: 100%;
  border: 8px solid #cf002c;
  pointer-events: none;
  z-index: 10;
  border-radius: inherit;
  -webkit-transition: opacity 0.1s ease-out;
  -o-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
}

@media (max-width: 480px) {
  .highlighted:before {
    border: 5px solid #cf002c;
  }
}

.arrow-img {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/down-arrow-red.png);
  background-position: 50%;
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin-top: -2px;
  margin-left: 4px;
}

#CookiebotWidget {
  z-index: 80 !important;
}

.underline {
  text-decoration: underline;
}

.title-stars:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/stars.png);
  background-repeat: no-repeat;
  position: relative;
  top: 8px;
  margin-right: 16px;
}

.aspect-\[4\/3\] {
  aspect-ratio: 4/3;
}

.ally [type="radio"] {
  position: static !important;
  left: auto !important;
}

.ally [type="radio"] + label {
  padding-left: 0;
}

.ally [type="radio"] + label:after,
.ally [type="radio"] + label:before {
  display: none;
}

.btn {
  line-height: 1;
  padding: 20px 24px;
  display: inline-block;
  position: relative;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;
  text-decoration: none !important;
}

.fontface-gl .btn {
  font-family: "Pluto-Bold";
}

.fontface-ru .btn {
  font-family: ProstoSans-Bold;
}

.fontface-cn .btn {
  font-family: AmasisMTPro-Bold;
}

@media (max-width: 768px) {
  .btn {
    padding: 12px;
  }
}

.btn--primary {
  --bg-opacity: 1;
  background-color: #cf002c;
  background-color: rgba(207, 0, 44, var(--bg-opacity));
  --text-opacity: 1;
  color: #fcfcfc;
  color: rgba(252, 252, 252, var(--text-opacity));
  padding: 18px 22px;
  border: 2px solid #cf002c;
}

.btn--primary.btn--disabled {
  border-color: #e5e5e5;
  background-color: #e5e5e5;
  color: #999;
}

.btn--primary:hover {
  --bg-opacity: 1;
  background-color: #82001c;
  background-color: rgba(130, 0, 28, var(--bg-opacity));
  border: 2px solid #82001c;
}

.btn--primary.disabled {
  background-color: #9c958b;
  cursor: default;
}

.btn--primary-active,
.btn--primary-active:hover {
  background-color: rgba(29, 29, 27, 0.5);
  border-color: #fff;
}

.btn--primary-active:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .btn--big {
    padding: 20px 24px;
  }
}

.btn--small {
  padding: 12px;
}

.btn--small.btn--primary {
  padding: 10px;
}

.btn--small.btn--arrow-right,
.btn--small.btn--arrow-right-svg {
  padding-right: 36px;
}

.btn--small.btn--arrow-right-svg svg,
.btn--small.btn--arrow-right svg {
  right: 11px;
}

.btn--primary-light {
  --bg-opacity: 1;
  background-color: #fcfcfc;
  background-color: rgba(252, 252, 252, var(--bg-opacity));
  --text-opacity: 1;
  color: #cf002c;
  color: rgba(207, 0, 44, var(--text-opacity));
}

.btn--primary-light:hover {
  color: #fff;
  background-color: #931004;
}

.btn--primary-light.btn--disabled {
  background-color: #e5e5e5;
  color: #999;
}

.btn--secondary {
  --border-opacity: 1;
  border: 2px solid #cf002c;
  border-color: rgba(207, 0, 44, var(--border-opacity));
  padding: 18px 22px;
  background-color: rgba(0, 0, 0, 0);
  color: #2f171f;
}

@media (max-width: 768px) {
  .btn--secondary {
    padding: 10px;
  }
}

.btn--secondary:hover {
  color: #cf002c;
}

.btn--secondary.btn--disabled {
  color: #b2b2b2;
  border-color: #e5e5e5;
  background-color: #f2f2f2;
}

.btn--secondary-light {
  --border-opacity: 1;
  border: 2px solid #cf002c;
  border-color: rgba(207, 0, 44, var(--border-opacity));
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  padding: 18px 22px;
}

@media (max-width: 768px) {
  .btn--secondary-light {
    padding: 10px;
  }
}

.btn--secondary-light:hover {
  background-color: #b70e0c;
}

.btn--secondary-light.btn--disabled {
  color: #b2b2b2;
  border-color: #e5e5e5;
  background-color: #f2f2f2;
}

.btn--arrow-left svg,
.btn--arrow-right-svg svg,
.btn--arrow-right svg,
.btn--external-link-svg svg,
.btn--external-link svg {
  width: 18px;
  height: 9px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn--arrow-left svg path,
.btn--arrow-right-svg svg path,
.btn--arrow-right svg path,
.btn--external-link-svg svg path,
.btn--external-link svg path {
  -webkit-transition: fill 0.2s ease-in-out;
  -o-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
}

.btn--arrow-left.btn--primary svg path,
.btn--arrow-right.btn--primary svg path,
.btn--external-link.btn--primary svg path,
.btn--primary.btn--arrow-right-svg svg path,
.btn--primary.btn--external-link-svg svg path {
  fill: #fff;
}

.btn--arrow-left.btn--primary-light svg path,
.btn--arrow-right.btn--primary-light svg path,
.btn--external-link.btn--primary-light svg path,
.btn--primary-light.btn--arrow-right-svg svg path,
.btn--primary-light.btn--external-link-svg svg path {
  fill: #cf002c;
}

.btn--arrow-left.btn--primary-light:hover svg path,
.btn--arrow-right.btn--primary-light:hover svg path,
.btn--external-link.btn--primary-light:hover svg path,
.btn--primary-light.btn--arrow-right-svg:hover svg path,
.btn--primary-light.btn--external-link-svg:hover svg path {
  fill: #fff;
}

.btn--arrow-left.btn--primary-light.btn--disabled svg path,
.btn--arrow-left.btn--primary.btn--disabled svg path,
.btn--arrow-right.btn--primary-light.btn--disabled svg path,
.btn--arrow-right.btn--primary.btn--disabled svg path,
.btn--external-link.btn--primary-light.btn--disabled svg path,
.btn--external-link.btn--primary.btn--disabled svg path,
.btn--primary-light.btn--disabled.btn--arrow-right-svg svg path,
.btn--primary-light.btn--disabled.btn--external-link-svg svg path,
.btn--primary.btn--disabled.btn--arrow-right-svg svg path,
.btn--primary.btn--disabled.btn--external-link-svg svg path {
  fill: #999;
}

.btn--arrow-left.btn--secondary svg path,
.btn--arrow-right.btn--secondary svg path,
.btn--external-link.btn--secondary svg path,
.btn--secondary.btn--arrow-right-svg svg path,
.btn--secondary.btn--external-link-svg svg path {
  fill: #1d1d1b;
}

.btn--arrow-left.btn--secondary:hover svg path,
.btn--arrow-right.btn--secondary:hover svg path,
.btn--external-link.btn--secondary:hover svg path,
.btn--secondary.btn--arrow-right-svg:hover svg path,
.btn--secondary.btn--external-link-svg:hover svg path {
  fill: #cf002c;
}

.btn--arrow-left.btn--secondary-light svg path,
.btn--arrow-right.btn--secondary-light svg path,
.btn--external-link.btn--secondary-light svg path,
.btn--secondary-light.btn--arrow-right-svg svg path,
.btn--secondary-light.btn--external-link-svg svg path {
  fill: #fff;
}

.btn--arrow-left.btn--secondary-light.btn--disabled svg path,
.btn--arrow-left.btn--secondary.btn--disabled svg path,
.btn--arrow-right.btn--secondary-light.btn--disabled svg path,
.btn--arrow-right.btn--secondary.btn--disabled svg path,
.btn--external-link.btn--secondary-light.btn--disabled svg path,
.btn--external-link.btn--secondary.btn--disabled svg path,
.btn--secondary-light.btn--disabled.btn--arrow-right-svg svg path,
.btn--secondary-light.btn--disabled.btn--external-link-svg svg path,
.btn--secondary.btn--disabled.btn--arrow-right-svg svg path,
.btn--secondary.btn--disabled.btn--external-link-svg svg path {
  fill: #b2b2b2;
}

.btn--external-link,
.btn--external-link-svg {
  padding: 12px 36px 12px 12px;
}

.btn--external-link-svg svg,
.btn--external-link svg {
  width: 18px;
  height: 18px;
  right: 11px;
}

.btn--arrow-left {
  padding-left: 48px;
}

@media (max-width: 768px) {
  .btn--arrow-left {
    padding-left: 36px;
  }
}

.btn--arrow-left svg {
  left: 19px;
}

@media (max-width: 768px) {
  .btn--arrow-left svg {
    left: 11px;
  }
}

.btn--arrow-right,
.btn--arrow-right-svg {
  padding-right: 48px;
}

@media (max-width: 768px) {
  .btn--arrow-right,
  .btn--arrow-right-svg {
    padding-right: 36px;
  }
}

.btn--arrow-right-svg svg,
.btn--arrow-right svg {
  right: 19px;
}

@media (max-width: 768px) {
  .btn--arrow-right-svg svg,
  .btn--arrow-right svg {
    right: 11px;
  }
}

.btn--disabled {
  pointer-events: none;
}

.btn:focus {
  outline: none;
}

.btn.focused {
  -webkit-box-shadow: 0 0 0 3px #1f97de;
  box-shadow: 0 0 0 3px #1f97de;
  outline: none;
}

.btn--no-wrap {
  white-space: nowrap;
}

.btn--linkhub {
  padding: 12px;
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  min-width: 100%;
}

.btn--vote {
  min-width: 115px;
}

.btn--arrow-right-svg {
  position: relative;
}

.btn--arrow-right-svg:after {
  content: "";
  -webkit-mask-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-right.svg);
  mask-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-right.svg);
  width: 20px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 19px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn--arrow-right-svg.btn--primary:after {
  background-color: #fff;
}

.btn--arrow-right-svg.btn--secondary:after {
  background-color: #000;
}

.btn--external-link-svg {
  position: relative;
}

.btn--external-link-svg:after {
  content: "";
  -webkit-mask-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/external-link-icon.svg);
  mask-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/external-link-icon.svg);
  width: 18px;
  height: 18px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 11px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
}

.btn--auto-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  min-height: 56px;
  line-height: 1.5;
  padding: 6px 12px;
}

.dropdown {
  position: relative;
  width: 100%;
}

.dropdown input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dropdown--lang {
  height: 100%;
}

.dropdown--lang-mobile {
  text-align: center;
  background-color: #e8e2da;
  margin-bottom: 4px;
  border-radius: 5px;
}

.dropdown--lang-footer {
  width: auto;
  background-color: #e8e2da;
  border-radius: 4px;
  font-size: 14.5px;
}

.fontface-gl .dropdown--lang-footer {
  font-family: "Pluto-Bold";
}

.fontface-ru .dropdown--lang-footer {
  font-family: ProstoSans-Bold;
}

.fontface-cn .dropdown--lang-footer {
  font-family: AmasisMTPro-Bold;
}

.dropdown--small {
  max-width: 250px;
}

.dropdown--hidden {
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
}

.dropdown--tabs {
  max-width: 100%;
}

.dropdown--links {
  width: auto;
  display: inline-block;
}

.dropdown--links:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #fff;
  border-style: solid;
  border-width: 0 12px 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -webkit-calc(100% + 12px);
  top: calc(100% + 12px);
  visibility: hidden;
  opacity: 0;
  z-index: 12;
}

.dropdown:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #9c958b;
  border-style: solid;
  border-width: 0 12px 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -webkit-calc(100% + 9px);
  top: calc(100% + 9px);
  visibility: hidden;
  opacity: 0;
}

.dropdown.open:after,
.dropdown.open:before {
  visibility: visible;
  opacity: 1;
}

.dropdown__selected-option {
  width: 100%;
  background-color: #fff;
  border: 1px solid #9c958b;
  padding: 11px 37px 11px 11px;
  height: 40px;
  border-radius: 4px;
  line-height: 1;
  cursor: pointer;
  color: #9c958b;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.dropdown__selected-option:focus {
  border-color: #1d1d1b;
}

.dropdown--lang .dropdown__selected-option {
  background-color: rgba(0, 0, 0, 0);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
  padding: inherit;
  color: #cf002c;
  border-radius: 0;
  border: none;
  text-transform: uppercase;
}

.dropdown--lang .dropdown__selected-option svg {
  width: 20px;
  height: 20px;
}

.dropdown--lang .dropdown__selected-option svg path {
  fill: #cf002c;
}

.dropdown--lang-mobile .dropdown__selected-option {
  border: none;
  color: #1d1d1b;
  background-color: rgba(0, 0, 0, 0);
  height: auto;
  padding: 29px 12px 12px;
  line-height: 1.25em;
}

.fontface-gl .dropdown--lang-mobile .dropdown__selected-option {
  font-family: "Pluto-Bold";
}

.fontface-ru .dropdown--lang-mobile .dropdown__selected-option {
  font-family: ProstoSans-Bold;
}

.fontface-cn .dropdown--lang-mobile .dropdown__selected-option {
  font-family: AmasisMTPro-Bold;
}

.dropdown--lang-footer .dropdown__selected-option {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  text-transform: uppercase;
  color: #1d1d1b;
  padding: 12px 28px 12px 12px;
  line-height: 17px;
}

.dropdown--lang-footer .dropdown__selected-option svg {
  width: 17px;
  height: 17px;
  margin: 0 auto;
}

.dropdown--lang-footer .dropdown__selected-option svg path {
  fill: #1d1d1b;
}

.dropdown--off-white .dropdown__selected-option {
  background-color: #e8e2da;
  border: none;
}

.dropdown--tabs .dropdown__selected-option {
  display: none;
}

.dropdown--links .dropdown__selected-option {
  background-color: #cf002c;
  border-color: #cf002c;
  color: #fff;
}

.dropdown--links .dropdown__selected-option:hover {
  background-color: #82001c;
}

.dropdown__selected-option:after {
  content: "";
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-down-gray-brown.svg);
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 12px;
  top: 13px;
  pointer-events: none;
}

.dropdown--disabled .dropdown__selected-option:after {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-down-gray.svg);
}

.dropdown--error .dropdown__selected-option:after {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-down-red.svg);
}

.dropdown--success .dropdown__selected-option:after {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-down-green.svg);
}

.dropdown--links .dropdown__selected-option:after {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-down-white.svg);
}

.dropdown--lang-mobile .dropdown__selected-option:after,
.dropdown--lang .dropdown__selected-option:after,
.dropdown--tabs .dropdown__selected-option:after {
  display: none;
}

.dropdown--lang-footer .dropdown__selected-option:after {
  right: 9px;
}

.dropdown.open .dropdown__selected-option:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.dropdown__selected-option:hover {
  border-color: #1d1d1b;
}

.dropdown__selected-option:hover:after {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-down-black.svg);
}

.dropdown--links .dropdown__selected-option:hover {
  border-color: #82001c;
}

.dropdown--links .dropdown__selected-option:hover:after {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-down-white.svg);
}

.dropdown__selected-option:focus {
  outline: none;
}

.dropdown__selected-option[data-selected="true"] {
  color: #1d1d1b;
}

.dropdown--lang .dropdown__selected-option[data-selected="true"] {
  color: #cf002c;
}

.dropdown--links .dropdown__selected-option[data-selected="true"] {
  color: #fff;
}

.dropdown__menu {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 100%;
  width: 100%;
  margin-top: 18px;
  padding: 6px;
  border-radius: 8px;
  border: 2px solid #9c958b;
  background-color: #fff;
  -webkit-box-shadow: 0 7px 11px 0 rgba(0, 0, 0, 0.29);
  box-shadow: 0 7px 11px 0 rgba(0, 0, 0, 0.29);
  visibility: hidden;
  opacity: 0;
}

.dropdown.open .dropdown__menu {
  visibility: visible;
  opacity: 1;
}

.dropdown--lang-footer .dropdown__menu,
.dropdown--lang .dropdown__menu {
  left: auto;
  right: 0;
  width: auto;
}

.dropdown--tabs .dropdown__menu {
  position: relative;
  top: auto;
  left: auto;
  visibility: visible;
  opacity: 1;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #e8e2da;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  margin-top: 0;
}

.dropdown--links .dropdown__menu {
  padding: 24px 4px 24px 24px;
  width: 400px;
  max-width: -webkit-calc(100vw - 32px);
  max-width: calc(100vw - 32px);
}

@media (max-width: 639px) {
  .dropdown--links .dropdown__menu {
    padding: 12px 4px 12px 12px;
  }
}

.dropdown--links .dropdown__menu:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 24px;
  left: 0;
  z-index: 2;
}

@media (max-width: 639px) {
  .dropdown--links .dropdown__menu:after {
    bottom: 12px;
  }
}

.dropdown--links-single .dropdown__menu {
  width: 200px;
}

.dropdown__menu-wrapper {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
}

.dropdown__menu-wrapper::-webkit-scrollbar {
  width: 4px;
}

.dropdown__menu-wrapper::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}

.dropdown__menu-wrapper::-webkit-scrollbar-thumb {
  background-color: #9c958b;
}

.dropdown--lang-footer .dropdown__menu-wrapper {
  max-height: 140px;
}

.dropdown--tabs .dropdown__menu-wrapper {
  max-height: 100%;
  overflow-y: initial;
  padding-right: 0;
}

.dropdown--links .dropdown__menu-wrapper {
  max-height: 376px;
  padding-right: 20px;
}

@media (max-width: 639px) {
  .dropdown--links .dropdown__menu-wrapper {
    padding-right: 8px;
  }
}

.dropdown--tabs .dropdown__list {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.dropdown--links .dropdown__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.dropdown__option {
  width: 100%;
  font-size: 16px;
  line-height: 1.25;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
  background-color: #fff;
}

.dropdown--tabs .dropdown__option {
  background-color: rgba(0, 0, 0, 0);
}

.dropdown--lang .dropdown__option svg {
  width: 17px;
  height: 17px;
  margin-right: 10px;
}

.dropdown--lang .dropdown__option svg path {
  fill: #cf002c;
}

.dropdown--lang-footer .dropdown__option svg {
  width: 17px;
  height: 17px;
  margin-right: 10px;
}

.dropdown--lang-footer .dropdown__option svg path {
  fill: #1d1d1b;
}

.dropdown__option:hover {
  background-color: #e8e2da;
}

.dropdown--tabs .dropdown__option:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #cf002c;
}

.dropdown--links .dropdown__option:hover {
  background-color: #fff;
}

.dropdown__option.selected {
  background-color: #cf002c;
  color: #fff;
}

.dropdown--tabs .dropdown__option.selected {
  color: #cf002c;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 2px solid #cf002c;
}

.dropdown--lang-footer .dropdown__option.selected svg path,
.dropdown--lang .dropdown__option.selected svg path {
  fill: #fff;
}

.dropdown--links .dropdown__option.selected {
  background-color: rgba(0, 0, 0, 0);
}

.dropdown--lang-footer .dropdown__option,
.dropdown--lang .dropdown__option {
  font-size: 14.5px;
  padding: 0;
}

.dropdown--lang-footer .dropdown__option a,
.dropdown--lang .dropdown__option a {
  padding: 8px;
  line-height: 1.25;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.dropdown--lang-mobile .dropdown__option,
.dropdown--links .dropdown__option {
  padding: 0;
}

.dropdown--lang-mobile .dropdown__option a,
.dropdown--links .dropdown__option a {
  width: 100%;
  padding: 8px;
  line-height: 1.25;
  display: block;
}

.dropdown--tabs .dropdown__option {
  border-radius: 0;
  width: auto;
  margin-bottom: -2px;
  white-space: nowrap;
}

.dropdown--tabs .dropdown__option a {
  padding: 0 0 15px;
}

.dropdown--tabs .dropdown__option:not(:last-child) {
  margin-right: 40px;
}

.dropdown--links .dropdown__option {
  width: 50%;
  height: 94px;
  padding: 4px;
  border-radius: 0;
  border-bottom: 1px solid #e8e2da;
}

.dropdown--links .dropdown__option img {
  width: auto;
  height: auto;
  max-width: 110px;
  max-height: 60px;
}

.dropdown--links .dropdown__option:nth-child(odd) {
  border-right: 1px solid #e8e2da;
}

.dropdown--links .dropdown__option:last-child,
.dropdown--links .dropdown__option:nth-last-child(2) {
  border-bottom: none;
}

.dropdown--links .dropdown__option:nth-last-child(2):nth-child(2n) {
  border-bottom: 1px solid #e8e2da;
}

.dropdown--links-single .dropdown__option {
  width: 100%;
  border-bottom: none;
}

.dropdown--links-single .dropdown__option:nth-child(odd) {
  border-right: none;
}

.dropdown__option--no-link {
  cursor: default;
}

.dropdown__option-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.dropdown__option-link svg {
  position: absolute;
  right: 4px;
  top: 4px;
}

.dropdown__option.selected .dropdown__option-link svg path,
.dropdown__option:hover .dropdown__option-link svg path {
  fill: #9c958b;
}

.dropdown__option:hover .dropdown__option-link {
  background-color: #f7f4f0;
}

.dropdown__option--no-link:hover .dropdown__option-link {
  background-color: rgba(0, 0, 0, 0);
}

.dropdown__option.selected .dropdown__option-link {
  background-color: #f7f4f0;
}

.dropdown-filter {
  position: relative;
  width: 196px;
}

@media (max-width: 639px) {
  .dropdown-filter {
    width: 100%;
  }
}

.dropdown-filter input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dropdown-filter:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #9c958b;
  border-style: solid;
  border-width: 0 12px 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -webkit-calc(100% + 2px);
  top: calc(100% + 2px);
  visibility: hidden;
  opacity: 0;
}

.dropdown-filter.open:after {
  visibility: visible;
  opacity: 1;
}

.dropdown-filter__title {
  width: 100%;
  background-color: #e8e2da;
  border: 1px solid #e8e2da;
  padding: 11px 37px 11px 11px;
  height: 40px;
  border-radius: 4px;
  line-height: 1;
  cursor: pointer;
  color: #191919;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.dropdown-filter__title:focus {
  border-color: #1d1d1b;
}

.dropdown-filter__title:after {
  content: "";
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-down-gray-brown.svg);
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}

.dropdown-filter__title:hover {
  border-color: #1d1d1b;
}

.dropdown-filter__title:hover:after {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-down-black.svg);
}

.dropdown-filter__title:focus {
  outline: none;
}

.dropdown-filter__menu {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 100%;
  width: 100%;
  margin-top: 10px;
  padding: 0 16px 16px;
  border-radius: 8px;
  border: 2px solid #9c958b;
  background-color: #fff;
  -webkit-box-shadow: 0 7px 11px 0 rgba(0, 0, 0, 0.29);
  box-shadow: 0 7px 11px 0 rgba(0, 0, 0, 0.29);
  visibility: hidden;
  opacity: 0;
}

.dropdown-filter.open .dropdown-filter__menu {
  visibility: visible;
  opacity: 1;
}

.dropdown-filter__menu label,
.textbox {
  display: block;
}

.textbox {
  border: 1px solid #9c958b;
  width: 100%;
  height: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 11px;
  border-radius: 4px;
  overflow: hidden;
  color: #1d1d1b;
  line-height: 1;
  cursor: text;
}

.textbox--search {
  padding: 15px 20px 15px 40px;
  max-width: 100%;
}

.textbox::-webkit-input-placeholder {
  color: #9c958b;
}

.textbox::-moz-placeholder {
  color: #9c958b;
}

.textbox:-ms-input-placeholder {
  color: #9c958b;
}

.textbox::placeholder {
  color: #9c958b;
}

@media (max-width: 639px) {
  .textbox::-webkit-input-placeholder {
    font-size: 14.5px;
  }

  .textbox::-moz-placeholder {
    font-size: 14.5px;
  }

  .textbox:-ms-input-placeholder {
    font-size: 14.5px;
  }

  .textbox::placeholder {
    font-size: 14.5px;
  }
}

.textbox:hover:enabled {
  border-color: #1d1d1b;
}

.textbox:focus {
  outline: none;
  border-color: #1d1d1b;
}

.textbox:disabled {
  background: #f2f2f2;
}

.textbox:disabled::-webkit-input-placeholder {
  color: #b2b2b2;
}

.textbox:disabled::-moz-placeholder {
  color: #b2b2b2;
}

.textbox:disabled:-ms-input-placeholder {
  color: #b2b2b2;
}

.textbox:disabled::placeholder {
  color: #b2b2b2;
}

.textbox.focused {
  -webkit-box-shadow: 0 0 0 3px #1f97de;
  box-shadow: 0 0 0 3px #1f97de;
  outline: none;
}

.textbox--error {
  background-color: #ffccce;
  border-color: #fb3740;
  color: #fb3740;
}

.textbox--error + .error {
  display: block;
}

.textbox--success {
  border-color: #51b95f;
  color: #51b95f;
}

.textbox--textarea {
  overflow: auto;
  height: 312px;
  resize: none;
}

.textbox--textarea::-webkit-scrollbar {
  width: 4px;
}

.textbox--textarea::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}

.textbox--textarea::-webkit-scrollbar-thumb {
  background-color: #9c958b;
}

input[type="radio"]:checked,
input[type="radio"]:not(:checked) {
  position: absolute;
  pointer-events: none;
  width: 18px;
  height: 18px;
  -webkit-transform: translate(1px, 1px);
  -ms-transform: translate(1px, 1px);
  -o-transform: translate(1px, 1px);
  transform: translate(1px, 1px);
  opacity: 0;
}

input[type="radio"]:checked + label,
input[type="radio"]:not(:checked) + label {
  position: relative;
  cursor: pointer;
}

input[type="radio"]:checked:focus,
input[type="radio"]:not(:checked):focus {
  outline: none;
}

input[type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #b2b2b2;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

input[type="radio"]:not(:checked):enabled + label:hover:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  background: #e5e5e5;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 1;
}

input[type="radio"]:checked:enabled + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 4px solid #cf002c;
  background: #fff;
  border-radius: 50%;
}

input[type="radio"]:disabled:checked + label:before,
input[type="radio"]:disabled:not(:checked) + label:before {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #ccc;
  background-color: #f2f2f2;
}

input[type="radio"]:disabled + label {
  color: #aaa;
}

input[type="radio"].error:not(:checked) + label {
  color: #fb3740;
}

input[type="radio"].error:not(:checked) + label:before {
  border-color: #fb3740;
  background: #ffccce;
}

input[type="radio"].error:not(:checked) + label:hover:after {
  background: #fb3740;
}

input[type="radio"].success:not(:checked) + label {
  color: #51b95f;
}

input[type="radio"].success:not(:checked) + label:before {
  border-color: #51b95f;
  background: #fff;
}

input[type="radio"].success:not(:checked) + label:after {
  content: "";
  background: #51b95f;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.quizz-option {
  width: 20%;
  max-width: 240px;
  padding: 8px;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  opacity: 0;
}

.quizz-widget .quizz-option {
  max-width: 150px;
}

@media (max-width: 1023px) {
  .quizz-option {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
    padding: 4px 0;
    width: 100%;
  }

  .quizz-option,
  .quizz-widget .quizz-option {
    max-width: 343px;
  }
}

.quizz-widget .quizz-option--large {
  width: 320px;
  max-width: 320px;
}

@media (max-width: 1023px) {
  .quizz-widget .quizz-option--large {
    max-width: 343px;
    width: 100%;
  }
}

.quizz-option.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.quizz-option label:after,
.quizz-option label:before {
  content: none !important;
}

.quizz-option__container,
.quizz-option__text {
  width: 100%;
  position: relative;
}

.quizz-option__text {
  font-size: 20px;
  padding-top: calc(100% - 4px);
  border: 2px solid #cf002c;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.fontface-gl .quizz-option__text {
  font-family: "Pluto-Bold";
}

.fontface-ru .quizz-option__text {
  font-family: ProstoSans-Bold;
}

.fontface-cn .quizz-option__text {
  font-family: AmasisMTPro-Bold;
}

.quizz-widget .quizz-option__text {
  padding-top: 0;
  padding-bottom: 0;
  height: 240px;
}

@media (max-width: 1023px) {
  .quizz-option__text {
    font-size: 14.5px;
    min-height: 64px;
    padding: 12px;
  }

  .quizz-widget .quizz-option__text {
    padding-top: 0;
    padding-bottom: 0;
    height: auto;
  }
}

.quizz-option__text:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #cf002c;
  color: #fff;
  opacity: 0.7;
}

.checked .quizz-option__text {
  background-color: #cf002c;
  color: #fff;
  opacity: 1 !important;
}

.animated .quizz-option__text {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.quizz-option__text span {
  width: 100%;
  padding: 10px;
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 639px) {
  .quizz-option__text span {
    position: relative;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    left: auto;
    top: auto;
    padding: 0;
  }
}

.quizz-option__text--small {
  font-size: 14.5px;
  line-height: 1.14;
}

.quizz-option input {
  visibility: hidden;
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.quizz-option.animated {
  -webkit-transition: opacity 0.6s ease-in-out,
    -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out, -o-transform 0.5s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.5s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.5s ease-in-out,
    -webkit-transform 0.5s ease-in-out, -o-transform 0.5s ease-in-out;
}

.quizz-option.animated:nth-child(1n) {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.quizz-option.animated:nth-child(2n) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.quizz-option.animated:nth-child(3n) {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.quizz-option.animated:nth-child(4n) {
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.quizz-option.animated:nth-child(5n) {
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.quizz-option.animated:nth-child(6n) {
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

.quizz-option.animated:nth-child(7n) {
  -webkit-transition-delay: 1.8s;
  -o-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

.quizz-option.animated:nth-child(8n) {
  -webkit-transition-delay: 2.1s;
  -o-transition-delay: 2.1s;
  transition-delay: 2.1s;
}

.quizz-option--img {
  margin: 0;
  padding: 20px;
}

@media (max-width: 1279px) {
  .quizz-option--img {
    padding: 14px;
  }
}

@media (max-width: 1023px) {
  .quizz-option--img {
    padding: 10px;
    width: 25%;
    max-width: 168px;
  }

  .max-options .quizz-option--img {
    width: 20%;
  }
}

@media (max-width: 767px) {
  .quizz-option--img {
    width: 50%;
    margin-left: 0;
  }

  .max-options .quizz-option--img {
    width: 50%;
    max-width: 120px;
  }
}

.quizz-option--img .quizz-option__text {
  padding: 0;
  border: none;
}

@media (max-width: 1279px) {
  .quizz-option--img .quizz-option__text {
    font-size: 16px;
  }
}

@media (max-width: 1023px) {
  .quizz-option--img .quizz-option__text {
    min-height: 0;
    line-height: 1.14;
    font-size: 14.5px;
  }
}

@media (max-width: 639px) {
  .quizz-option--img .quizz-option__text {
    padding: 0;
  }
}

.quizz-option--img .quizz-option__text:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #cf002c;
  opacity: 1;
}

.quizz-option--img .quizz-option__text span {
  padding: 0;
  position: relative;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  left: auto;
  top: auto;
  margin-top: 16px;
}

@media (max-width: 639px) {
  .quizz-option--img .quizz-option__text span {
    margin-top: 10px;
  }
}

.quizz-option--img.checked .quizz-option__text {
  background-color: rgba(0, 0, 0, 0);
  color: #cf002c;
}

.quizz-option__image {
  width: 100%;
  padding-top: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50%;
  border-radius: 100%;
}

.checked .quizz-option__image,
.quizz-option__image:hover {
  -webkit-box-shadow: inset 0 0 0 2px #fff, 0 0 0 5px #cf002c;
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 5px #cf002c;
}

.animated .quizz-option__image {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.quizz-widget-answer {
  position: relative;
  width: 150px;
  height: 240px;
  margin: 8px;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  opacity: 0;
}

@media (max-width: 1023px) {
  .quizz-widget-answer {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.quizz-widget-answer.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.quizz-widget-answer.animated {
  -webkit-transition: opacity 0.6s ease-in-out, border-color 0.2s ease-in-out,
    -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.6s ease-in-out, border-color 0.2s ease-in-out,
    -webkit-transform 0.5s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out, border-color 0.2s ease-in-out,
    -o-transform 0.5s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.5s ease-in-out,
    border-color 0.2s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.5s ease-in-out,
    border-color 0.2s ease-in-out, -webkit-transform 0.5s ease-in-out,
    -o-transform 0.5s ease-in-out;
}

.quizz-widget-answer.animated:nth-child(1n) {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.quizz-widget-answer.animated:nth-child(2n) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.quizz-widget-answer.animated:nth-child(3n) {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.quizz-widget-answer.animated:nth-child(4n) {
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.quizz-widget-answer.animated:nth-child(5n) {
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.quizz-widget-answer.animated:nth-child(6n) {
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

.quizz-widget-answer.animated:nth-child(7n) {
  -webkit-transition-delay: 1.8s;
  -o-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

.quizz-widget-answer.animated:nth-child(8n) {
  -webkit-transition-delay: 2.1s;
  -o-transition-delay: 2.1s;
  transition-delay: 2.1s;
}

.quizz-widget-answer--large {
  width: 320px;
}

.quizz-widget-answer label {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 12px;
  position: relative;
}

.quizz-widget-answer label:after,
.quizz-widget-answer label:before {
  content: none !important;
}

.quizz-widget-answer--bg-img label {
  display: block;
  padding-top: 0;
}

.quizz-widget-answer__container {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 2px solid #cf002c;
  overflow: hidden;
  position: relative;
}

.quizz-widget-answer--bg-img .quizz-widget-answer__container {
  border-color: #fff;
}

.animated .quizz-widget-answer__container {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.quizz-widget-answer__container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(1%, rgba(0, 0, 0, 0)),
      to(rgba(0, 0, 0, 0.5))
    ),
    -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3)));
  background: -webkit-linear-gradient(
      top,
      rgba(0, 0, 0, 0) 1%,
      rgba(0, 0, 0, 0.5)
    ),
    -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.5)),
    -o-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  display: none;
}

.quizz-widget-answer--bg-img .quizz-widget-answer__container:before {
  display: block;
}

.quizz-widget-answer__container:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(207, 0, 44, 0.3);
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}

.animated .quizz-widget-answer__container:after {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.quizz-widget-answer--bg-img .quizz-widget-answer__container:after {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(30%, rgba(0, 0, 0, 0)),
    to(#cf002c)
  );
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 30%, #cf002c);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 30%, #cf002c);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, #cf002c);
}

.checked .quizz-widget-answer__container {
  border-color: #cf002c;
}

.checked .quizz-widget-answer__container:after {
  opacity: 1;
}

.quizz-widget-answer__container:hover {
  border-color: #cf002c;
}

.quizz-widget-answer__container:hover:after {
  opacity: 1;
}

.quizz-widget-answer__text {
  position: relative;
  font-size: 16px;
  width: 100%;
  color: #191919;
  text-align: center;
  bottom: 0;
  padding: 12px 6px 24px;
  z-index: 3;
}

.fontface-gl .quizz-widget-answer__text {
  font-family: "Pluto-Bold";
}

.fontface-ru .quizz-widget-answer__text {
  font-family: ProstoSans-Bold;
}

.fontface-cn .quizz-widget-answer__text {
  font-family: AmasisMTPro-Bold;
}

@media (max-width: 1023px) {
  .quizz-widget-answer__text {
    font-size: 14.5px;
    min-height: 64px;
    padding: 12px;
  }
}

.quizz-widget-answer--bg-img .quizz-widget-answer__text {
  position: absolute;
  padding: 8px 6px;
  color: #fff;
}

.quizz-widget-answer__img-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: -webkit-calc(100% - 60px);
  height: calc(100% - 60px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.quizz-widget-answer--bg-img .quizz-widget-answer__img-wrapper {
  height: 100%;
}

.quizz-widget-answer__img {
  position: relative;
  max-height: 100%;
}

.quizz-widget-answer--bg-img .quizz-widget-answer__img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.quizz-widget-answer input {
  visibility: hidden;
  position: absolute;
  left: -9999px;
  top: -9999px;
}

input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton):checked,
input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton):not(:checked) {
  position: absolute;
  pointer-events: none;
  width: 18px;
  height: 18px;
  -webkit-transform: translate(1px, 1px);
  -ms-transform: translate(1px, 1px);
  -o-transform: translate(1px, 1px);
  transform: translate(1px, 1px);
  opacity: 0;
}

input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton):checked
  + label,
input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton):not(:checked)
  + label {
  position: relative;
  cursor: pointer;
}

input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton):checked:focus,
input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton):not(
    :checked
  ):focus {
  outline: none;
}

input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton):not(:checked)
  + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #b2b2b2;
  background: #fff;
  border-radius: 4px;
  z-index: 1;
}

input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton):not(
    :checked
  ):enabled
  + label:hover:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  background: #e5e5e5;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  z-index: 1;
}

input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton).focused
  + label:before,
input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton):checked:enabled
  + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 4px solid #cf002c;
  background: #fff;
  border-radius: 4px;
}

input[type="checkbox"]:not(
    .CybotCookiebotDialogBodyLevelButton
  ):disabled:checked
  + label:before,
input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton):disabled:not(
    :checked
  )
  + label:before {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #ccc;
  background-color: #f2f2f2;
}

input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton):disabled
  + label {
  color: #aaa;
}

input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton).error:not(
    :checked
  )
  + label {
  color: #fb3740;
}

input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton).error:not(
    :checked
  )
  + label:before {
  border-color: #fb3740;
  background: #ffccce;
}

input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton).error:not(
    :checked
  )
  + label:hover:after {
  background: #fb3740;
}

input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton).success:not(
    :checked
  )
  + label {
  color: #51b95f;
}

input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton).success:not(
    :checked
  )
  + label:before {
  border-color: #51b95f;
  background: #fff;
}

input[type="checkbox"]:not(.CybotCookiebotDialogBodyLevelButton).success:not(
    :checked
  )
  + label:after {
  content: "";
  background: #51b95f;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
}

.upload-input {
  width: 100%;
}

.upload-input input {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.upload-input__icon {
  width: 14px;
  margin-bottom: 2px;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.upload-input__icon path {
  fill: #1d1d1b;
}

.upload-input__file {
  padding: 8px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.upload-input__file:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.upload-input__file svg {
  padding: 3px 0 3px 16px;
  height: 24px;
  width: 34px;
  min-width: 34px;
  cursor: pointer;
}

.upload-input__file svg:focus {
  outline: none;
}

.upload-input__file svg path {
  fill: #9c958b;
}

.breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14.5px;
}

.breadcrumbs a {
  position: relative;
}

.breadcrumbs a:not(:last-child) {
  margin-right: 20px;
}

.breadcrumbs a:not(:last-child):after {
  content: "";
  position: absolute;
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/right-arrow-breadcrumbs-10.png);
  right: -20px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  width: 10px;
  height: 10px;
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}

.breadcrumbs a:last-child {
  color: #9c958b;
  pointer-events: none;
}

[data-nav="lev-1"] > a {
  position: relative;
}

[data-nav="lev-1"] > a:after {
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #d7d2cb;
  border-style: solid;
  border-width: 0 10.5px 9px;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.2s;
  -o-transition: opacity 0.2s 0.2s;
  transition: opacity 0.2s 0.2s;
}

[data-nav="lev-1"] > a:before {
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  bottom: -1px;
  width: 0;
  height: 0;
  z-index: 1;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #fcfcfc;
  border-style: solid;
  border-width: 0 10px 8px;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.2s;
  -o-transition: opacity 0.2s 0.2s;
  transition: opacity 0.2s 0.2s;
}

[data-nav="lev-1"]:hover > a {
  color: #1d1d1b;
}

[data-nav="lev-1"]:hover > a:after,
[data-nav="lev-1"]:hover > a:before {
  opacity: 1;
}

[data-menu="lev-1"] {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.2s 0.2s, opacity 0.2s 0.2s;
  -o-transition: visibility 0.2s 0.2s, opacity 0.2s 0.2s;
  transition: visibility 0.2s 0.2s, opacity 0.2s 0.2s;
}

[data-nav="lev-1"]:hover [data-menu="lev-1"] {
  visibility: visible;
  opacity: 1;
}

[data-nav="mobile"] {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  -o-transition: -o-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out,
    -o-transform 0.4s ease-in-out;
  max-width: 480px;
}

[data-nav="mobile"]::-webkit-scrollbar {
  width: 4px;
}

[data-nav="mobile"]::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}

[data-nav="mobile"]::-webkit-scrollbar-thumb {
  background-color: #9c958b;
}

@media (min-width: 1280px) {
  [data-nav="mobile"] {
    display: none !important;
  }
}

[data-nav="mobile"].open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

[data-nav-mobile="lev-1"] a br {
  display: none;
}

[data-nav-mobile="lev-1"] svg {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  -o-transition: -o-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out,
    -o-transform 0.4s ease-in-out;
}

[data-nav-mobile="lev-1"] svg.active {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

nav {
  -webkit-transition: background-color 0.4s ease-in-out;
  -o-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

nav .ml-80,
nav .mr-80 {
  -webkit-transition: margin 0.4s ease-in-out;
  -o-transition: margin 0.4s ease-in-out;
  transition: margin 0.4s ease-in-out;
}

.nav-white {
  background-color: #fff;
}

.nav-white .ml-80 {
  margin-left: 40px;
}

.nav-white .mr-80 {
  margin-right: 40px;
}

.nav-logo {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  -o-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}

@media (max-width: 1599px) {
  .nav-logo {
    width: 128px;
    height: 128px;
  }
}

@media (max-width: 1023px) {
  .nav-logo {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 767px) {
  .nav-logo {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 639px) {
  .nav-logo {
    width: 96px;
    height: 96px;
  }
}

.nav-logo--shrinked {
  width: 80px;
  height: 80px;
}

@media (max-width: 1023px) {
  .nav-logo--shrinked {
    width: 64px;
    height: 64px;
  }
}

.link {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1em;
  line-height: 1em;
  cursor: pointer;
  -webkit-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  text-decoration: none !important;
}

.fontface-gl .link {
  font-family: "Pluto-Regular";
}

.fontface-ru .link {
  font-family: ProstoSans-Regular;
}

.fontface-cn .link {
  font-family: AmasisMTPro-Regular;
}

.link--primary {
  color: #cf002c !important;
}

.link--primary svg path {
  fill: #cf002c;
}

.link--primary:focus,
.link--primary:hover {
  color: #931004 !important;
}

.link--primary:focus svg path,
.link--primary:hover svg path {
  fill: #931004;
}

.link--primary:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.link--secondary {
  color: #1d1d1b !important;
}

.link--secondary svg path {
  fill: #1d1d1b;
}

.link--light {
  color: #fff !important;
}

.link--light svg path {
  fill: #fff;
}

.link--arrow-left svg,
.link--arrow-right-svg svg,
.link--arrow-right svg {
  width: 16px;
  height: 9px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.link--arrow-left svg path,
.link--arrow-right-svg svg path,
.link--arrow-right svg path {
  -webkit-transition: fill 0.2s ease-in-out;
  -o-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
}

.link--arrow-right,
.link--arrow-right-svg {
  padding-right: 22px;
}

.link--arrow-right-svg svg,
.link--arrow-right svg {
  right: 0;
}

.link--arrow-left {
  padding-left: 22px;
}

.link--arrow-left svg {
  left: 0;
}

.link--linkhub {
  font-size: 12px;
  letter-spacing: 0.8px;
}

.link--arrow-right-svg {
  position: relative;
}

.link--arrow-right-svg:after {
  content: "";
  -webkit-mask-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-right.svg);
  mask-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-right.svg);
  width: 16px;
  height: 8px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #cf002c;
}

.link--arrow-right-svg:after:hover {
  background-color: #931004;
}

.img {
  width: 100%;
  display: block;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50%;
  position: relative;
  overflow: hidden;
}

.img--full-screen {
  height: 100%;
}

.img--16x9 {
  padding-top: 56.25%;
}

.img--3x2 {
  padding-top: 66.67%;
}

.img--4x3 {
  padding-top: 75%;
}

.img--1x1 {
  padding-top: 100%;
}

.img--banner {
  height: 20vh;
  min-height: 190px;
}

@media (max-width: 767px) {
  .img--xs-16x9 {
    padding-top: 56.25%;
  }
}

@media (max-width: 1023px) {
  .img--sm-16x9 {
    padding-top: 56.25%;
  }
}

.img--circle {
  border-radius: 50%;
  border: 1px solid #e8e2da;
}

.img--rounded {
  border-radius: 50%;
}

.img--rounded-border-3 {
  border-radius: 50%;
  padding-top: calc(100% - 6px);
  border: 3px solid #d7d2cb;
}

.img--offset-32 {
  width: -webkit-calc(100% + 32px);
  width: calc(100% + 32px);
  max-width: unset;
}

.img--header-product {
  max-width: 720px;
  margin-right: auto;
  width: 91.666667%;
  position: relative;
  overflow: visible;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
}

.img--header-product .product-detail-slider img {
  max-height: 500px;
  max-width: 500px;
}

@media (max-width: 1190px) {
  .img--header-product .product-detail-slider img {
    max-width: 100%;
  }
}

.img--header-product-mobile {
  overflow: visible;
  max-width: 75%;
  margin: 0 auto;
}

.img--header-product-mobile .product-detail-slider img {
  max-height: 530px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .img--header-product-mobile .product-detail-slider img {
    max-height: 330px;
  }
}

.img__wrapper {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -o-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: -o-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 1.5s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 1.5s cubic-bezier(0, 0, 0.2, 1),
    -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1),
    -o-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.img--header .img__wrapper {
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
}

.img--contain .img__wrapper {
  -webkit-background-size: contain;
  background-size: contain;
}

.img__wrapper--zoomed {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  -ms-transform: translate(-50%, -50%) scale(1.2);
  -o-transform: translate(-50%, -50%) scale(1.2);
  transform: translate(-50%, -50%) scale(1.2);
}

.img--header .img__wrapper--zoomed {
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
}

.bg {
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg--white {
  background-color: #fff;
}

.bg--gray-brown {
  background-color: #e8e2da;
}

.bg--gray-brown-light {
  background-color: #f7f4f0;
}

.bg--search-result-item {
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}

.bg--coffee-beans {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/coffee-beans-opacity-50.png);
  -webkit-background-size: 250px 250px;
  background-size: 250px;
  background-position: -webkit-calc(100% - 45px) 64px;
  background-position: calc(100% - 45px) 64px;
  background-color: #e9e2d9;
}

@media (max-width: 767px) {
  .bg--coffee-beans {
    background-position: -webkit-calc(100% + 30px) 20px;
    background-position: calc(100% + 30px) 20px;
    -webkit-background-size: 150px 150px;
    background-size: 150px;
  }
}

.bg--coffee-beans-middle {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/coffee-beans-opacity-50.png);
  -webkit-background-size: 250px 250px;
  background-size: 250px;
  background-position: -webkit-calc(100% - 45px) 50%;
  background-position: calc(100% - 45px) 50%;
  background-color: #e9e2d9;
}

@media (max-width: 767px) {
  .bg--coffee-beans-middle {
    background-position: -webkit-calc(100% + 30px) 20px;
    background-position: calc(100% + 30px) 20px;
    -webkit-background-size: 150px 150px;
    background-size: 150px;
  }
}

.bg--coffee-cup {
  -webkit-background-size: auto 100%;
  background-size: auto 100%;
  background-color: #e9e2d9;
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/rectangle-copy-10.png);
}

.bg--leaf {
  background-color: #e9e2d9;
  background-position: 50%;
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/bg-leaf-lg.png);
}

.bg--coffee-cup-red {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/rectangle-red.jpg);
}

.bg--espresso-beans {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/bg-coffee-beans.png);
  background-color: #e9e2d9;
  -webkit-background-size: 560px 560px;
  background-size: 560px;
  background-position: 50% -webkit-calc(100% - 10px);
  background-position: 50% calc(100% - 10px);
}

@media (max-width: 1439px) {
  .bg--espresso-beans {
    -webkit-background-size: 490px 490px;
    background-size: 490px;
  }
}

@media (max-width: 1023px) {
  .bg--espresso-beans {
    -webkit-background-size: 370px 370px;
    background-size: 370px;
    background-position: 100% 100%;
  }
}

@media (max-width: 767px) {
  .bg--espresso-beans {
    -webkit-background-size: 340px 340px;
    background-size: 340px;
  }
}

@media (max-width: 639px) {
  .bg--espresso-beans {
    -webkit-background-size: 100% 100%;
    background-size: 100%;
    background-position: bottom;
  }
}

.bg--hidden {
  opacity: 0;
  visibility: hidden;
}

.bg--copy {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/bitmap-copy-3.png);
  background-position: 50%;
  -webkit-background-size: contain;
  background-size: contain;
}

.bg--beans {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/bg_beans.svg);
  background-position: 100% 0;
}

.bg--beans,
.bg--coffee-cup {
  background-color: #e8e2da;
  -webkit-background-size: auto auto;
  background-size: auto;
}

.bg--coffee-cup {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/bg_cup.svg);
  background-position: 0 100%;
}

.bg--portafilter-milkjug-beans {
  background-color: #e8e2da;
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/bg_portafilter_milk-jug_beans.svg);
  background-position: 0 100%;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
}

@media (max-width: 1320px) {
  .bg--portafilter-milkjug-beans {
    -webkit-background-size: auto auto;
    background-size: auto;
  }
}

.bg--chair-cup-teapot-tamper-portafilter {
  background-color: #e8e2da;
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/bg_chair_cup_tea-pot_tamper_portafilter.svg);
  background-position: 50%;
  -webkit-background-size: auto 100%;
  background-size: auto 100%;
}

.bg--red-portafilter-cup {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/bg-red_portafilter_cup.svg);
}

.bg--red-tamper {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/bg-red_tamper.svg);
}

.bg--red-tea {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/bg-red_tea-leaf_tea-pot.svg);
}

.quote {
  position: relative;
  z-index: 10;
  display: inline-block;
  padding-right: 64px;
  margin-top: 20px;
}

.quote:after,
.quote:before {
  content: "\201C";
  position: absolute;
  color: #f7f4f0;
  font-size: 6.5em;
  z-index: -1;
}

.quote:before {
  top: 0.12em;
  left: 0;
}

@media (max-width: 639px) {
  .quote:before {
    left: -8px;
  }
}

@media (max-width: 1023px) {
  .quote {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media (max-width: 639px) {
  .quote {
    padding-right: 0;
    padding-left: 0;
  }
}

.quote--left {
  margin-top: 0;
}

@media (max-width: 1023px) {
  .quote--left {
    padding-left: 0;
  }
}

@media (max-width: 639px) {
  .quote--left {
    margin-bottom: 20px;
    margin-top: 0;
  }
}

.quote--left:before {
  left: -0.27em;
}

@media (max-width: 639px) {
  .quote--left:before {
    left: -8px;
  }
}

.quote:after {
  content: "\201D";
  right: 0;
  bottom: -0.37em;
}

.quote--tabs-widget:before {
  left: -0.13em;
}

@media (max-width: 767px) {
  .quote--tabs-widget:after,
  .quote--tabs-widget:before {
    font-size: 4.5em;
  }
}

.hero-slider {
  position: relative;
}

.hero-slider__next-wrapper,
.hero-slider__prev-wrapper {
  position: absolute;
  top: 50%;
  width: 4em;
  height: 4em;
  background: rgba(15, 14, 14, 0.81);
  border-radius: 100%;
  border: 2px solid hsla(0, 0%, 98.8%, 0.5);
  z-index: 5;
}

@media (max-width: 1023px) {
  .hero-slider__next-wrapper,
  .hero-slider__prev-wrapper {
    width: 3em;
    height: 3em;
  }
}

@media (max-width: 639px) {
  .hero-slider__next-wrapper,
  .hero-slider__prev-wrapper {
    display: none !important;
  }
}

.hero-slider__next-wrapper .swiper-button-next,
.hero-slider__next-wrapper .swiper-button-prev,
.hero-slider__prev-wrapper .swiper-button-next,
.hero-slider__prev-wrapper .swiper-button-prev {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 0;
  padding: 32px;
  border-radius: 100%;
  left: 50%;
  right: auto;
  color: #fcfcfc;
  -webkit-background-size: 20px 20px;
  background-size: 20px;
}

.hero-slider__next-wrapper .swiper-button-next:after,
.hero-slider__next-wrapper .swiper-button-prev:after,
.hero-slider__prev-wrapper .swiper-button-next:after,
.hero-slider__prev-wrapper .swiper-button-prev:after {
  font-size: 1.3em;
}

@media (max-width: 1023px) {
  .hero-slider__next-wrapper .swiper-button-next,
  .hero-slider__next-wrapper .swiper-button-prev,
  .hero-slider__prev-wrapper .swiper-button-next,
  .hero-slider__prev-wrapper .swiper-button-prev {
    padding: 24px;
    width: 3em;
    height: 3em;
  }
}

@media (max-width: 639px) {
  .hero-slider__next-wrapper .swiper-button-next,
  .hero-slider__next-wrapper .swiper-button-prev,
  .hero-slider__prev-wrapper .swiper-button-next,
  .hero-slider__prev-wrapper .swiper-button-prev {
    display: none;
  }
}

.hero-slider__next-wrapper .swiper-button-prev,
.hero-slider__prev-wrapper .swiper-button-prev {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/angle-arrow-left.png);
}

.hero-slider__next-wrapper .swiper-button-next,
.hero-slider__prev-wrapper .swiper-button-next {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/angle-arrow-right.png);
}

.hero-slider__next-wrapper {
  right: 2.5em;
}

@media (max-width: 1023px) {
  .hero-slider__next-wrapper {
    right: 2em;
  }
}

@media (max-width: 767px) {
  .hero-slider__next-wrapper {
    right: 1em;
  }
}

.hero-slider__prev-wrapper {
  left: 2.5em;
}

@media (max-width: 1023px) {
  .hero-slider__prev-wrapper {
    left: 2em;
  }
}

@media (max-width: 767px) {
  .hero-slider__prev-wrapper {
    left: 1em;
  }
}

.hero-slider .swiper-container {
  overflow: visible;
  width: 88%;
  margin-left: 0;
}

.hero-slider .swiper-slide {
  margin: 0 -1px;
  overflow: hidden;
}

.hero-slider .swiper-slide .img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 4.2s cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 4.2s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: -o-transform 4.2s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 4.2s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 4.2s cubic-bezier(0, 0, 0.2, 1),
    -webkit-transform 4.2s cubic-bezier(0, 0, 0.2, 1),
    -o-transform 4.2s cubic-bezier(0, 0, 0.2, 1);
}

.hero-slider .swiper-slide .img.zoom-in {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.hero-slider .swiper-slide .img.zoom-out {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.hero-slider .swiper-pagination {
  width: 100%;
  bottom: 10px;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d7d2cb;
  opacity: 1;
  margin: 0 4px;
}

.hero-slider .swiper-pagination-bullet-active {
  background: #cf002c;
}

.article-slider {
  position: relative;
}

.article-slider__navigation {
  position: absolute;
  width: 91.666667%;
  max-width: 1320px;
  margin: 0 auto;
}

.article-slider .swiper-container {
  overflow: visible;
  margin: 0 -20px;
}

@media (max-width: 639px) {
  .article-slider .swiper-container {
    margin: 0 -10px;
  }
}

.article-slider .swiper-slide {
  width: 41.5%;
  padding: 0 20px;
  -webkit-transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  -o-transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1023px) {
  .article-slider .swiper-slide {
    width: 64%;
  }
}

@media (max-width: 767px) {
  .article-slider .swiper-slide {
    width: 82%;
  }
}

@media (max-width: 639px) {
  .article-slider .swiper-slide {
    width: 89%;
    padding: 0 10px;
  }
}

.article-slider .swiper-slide--hidden {
  visibility: hidden;
  opacity: 0;
}

.article-slider .swiper-button-next,
.article-slider .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  margin-top: 0;
  background: rgba(15, 14, 14, 0.81);
  border-radius: 100%;
  border: 2px solid hsla(0, 0%, 98.8%, 0.5);
  z-index: 5;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-background-size: 20px 20px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 50%;
}

.article-slider .swiper-button-next:focus,
.article-slider .swiper-button-prev:focus {
  outline: none;
}

@media (max-width: 1279px) {
  .article-slider .swiper-button-next,
  .article-slider .swiper-button-prev {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 767px) {
  .article-slider .swiper-button-next,
  .article-slider .swiper-button-prev {
    display: none;
  }
}

.article-slider .swiper-button-prev {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/angle-arrow-left.png);
  left: 0;
}

.article-slider .swiper-button-next {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/angle-arrow-right.png);
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.article-slider .swiper-scrollbar {
  margin-bottom: 40px;
  background: #9c958b;
  height: 8px;
  width: 175px;
  margin-left: auto;
  margin-right: auto;
}

.article-slider .swiper-scrollbar-drag {
  background: #cf002c;
}

.simple-cols-4-col-left > div:nth-child(odd) .ml-auto {
  padding-left: 112px;
}

@media (max-width: 1439px) {
  .simple-cols-4-col-left > div:nth-child(odd) .ml-auto {
    padding-left: 96px;
  }
}

@media (max-width: 1279px) {
  .simple-cols-4-col-left > div:nth-child(odd) .ml-auto {
    padding-left: 72px;
  }
}

@media (max-width: 1023px) {
  .simple-cols-4-col-left > div:nth-child(odd) .ml-auto {
    padding-left: 0;
  }
}

.simple-cols-4-col-left > div:nth-child(2n) {
  padding-left: 112px;
}

@media (max-width: 1439px) {
  .simple-cols-4-col-left > div:nth-child(2n) {
    padding-left: 96px;
  }
}

@media (max-width: 1279px) {
  .simple-cols-4-col-left > div:nth-child(2n) {
    padding-left: 72px;
  }
}

@media (max-width: 1023px) {
  .simple-cols-4-col-left > div:nth-child(2n) {
    padding-left: 0;
  }
}

.simple-cols-4-col-left > div:not(:last-child) {
  margin-bottom: 80px;
}

@media (max-width: 1023px) {
  .simple-cols-4-col-left > div:not(:last-child) {
    margin-bottom: 40px;
  }
}

@media (max-width: 639px) {
  .simple-cols-4-col-left > div:last-child {
    margin-bottom: 40px;
  }
}

.simple-cols-4-col-right > div:nth-child(odd) {
  padding-right: 112px;
}

@media (max-width: 1439px) {
  .simple-cols-4-col-right > div:nth-child(odd) {
    padding-right: 96px;
  }
}

@media (max-width: 1279px) {
  .simple-cols-4-col-right > div:nth-child(odd) {
    padding-right: 72px;
  }
}

@media (max-width: 1023px) {
  .simple-cols-4-col-right > div:nth-child(odd) {
    padding-right: 0;
  }
}

.simple-cols-4-col-right > div:nth-child(2n) .mr-auto {
  padding-right: 112px;
}

@media (max-width: 1439px) {
  .simple-cols-4-col-right > div:nth-child(2n) .mr-auto {
    padding-right: 96px;
  }
}

@media (max-width: 1279px) {
  .simple-cols-4-col-right > div:nth-child(2n) .mr-auto {
    padding-right: 72px;
  }
}

@media (max-width: 1023px) {
  .simple-cols-4-col-right > div:nth-child(2n) .mr-auto {
    padding-right: 0;
  }
}

.simple-cols-4-col-right > div:not(:last-child) {
  margin-bottom: 80px;
}

@media (max-width: 1023px) {
  .simple-cols-4-col-right > div:not(:last-child) {
    margin-bottom: 40px;
  }
}

.hero2 {
  position: relative;
  padding: 64px 0;
}

@media (max-width: 767px) {
  .hero2 {
    padding: 40px 0;
  }
}

.hero2-bg-cropped-bot {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (max-width: 767px) {
  .hero2-bg-cropped-bot {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.hero2-bg-cropped-top.hero2-red-square {
  margin-top: 128px;
  padding-top: 64px;
}

@media (max-width: 1023px) {
  .hero2-bg-cropped-top.hero2-red-square {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .hero2-bg-cropped-top.hero2-red-square {
    padding-top: 40px;
  }
}

.hero2-red-square {
  padding-top: 192px;
}

@media (max-width: 1023px) {
  .hero2-red-square {
    padding-top: 64px;
  }
}

@media (max-width: 767px) {
  .hero2-red-square {
    padding-top: 40px;
  }
}

.timeline-2-block {
  margin-top: 146px;
}

@media (max-width: 1279px) {
  .timeline-2-block {
    margin-top: 120px;
  }
}

@media (max-width: 1023px) {
  .timeline-2-block {
    margin-top: 100px;
  }
}

@media (max-width: 767px) {
  .timeline-2-block {
    margin-top: 80px;
  }
}

.timeline-2-block:first-child {
  margin-top: 104px;
}

@media (max-width: 1279px) {
  .timeline-2-block:first-child {
    margin-top: 96px;
  }
}

@media (max-width: 1023px) {
  .timeline-2-block:first-child {
    margin-top: 64px;
  }
}

@media (max-width: 767px) {
  .timeline-2-block:first-child {
    margin-top: 48px;
  }
}

.timeline-2-block:last-child {
  padding-bottom: 64px;
}

@media (max-width: 767px) {
  .timeline-2-block:last-child {
    padding-bottom: 40px;
  }
}

.timeline-2-century {
  position: absolute;
  top: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  font-size: 240px;
}

@media (max-width: 1279px) {
  .timeline-2-century {
    top: 10px;
    font-size: 180px;
  }
}

@media (max-width: 1023px) {
  .timeline-2-century {
    top: 7px;
    font-size: 120px;
  }
}

@media (max-width: 767px) {
  .timeline-2-century {
    top: 5px;
    font-size: 80px;
  }
}

.timeline-2-item {
  padding: 20px 0;
  position: relative;
}

@media (max-width: 1023px) {
  .timeline-2-item {
    padding: 14px 0;
  }
}

.timeline-2-item:first-child {
  padding-top: 40px;
}

@media (max-width: 1023px) {
  .timeline-2-item:first-child {
    padding-top: 48px;
  }
}

.timeline-2-item:last-child {
  padding-bottom: 40px;
}

@media (max-width: 1023px) {
  .timeline-2-item:last-child {
    padding-bottom: 28px;
  }
}

.timeline-2-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #cf002c;
}

@media (max-width: 767px) {
  .timeline-2-item:before {
    left: -webkit-calc(33.33333% - 16px);
    left: calc(33.33333% - 16px);
  }
}

@media (max-width: 639px) {
  .timeline-2-item:before {
    left: -webkit-calc(33.33333% - 8px);
    left: calc(33.33333% - 8px);
  }
}

.timeline-2-block:not(:first-child) .timeline-2-item:first-child:before {
  height: -webkit-calc(100% + 146px);
  height: calc(100% + 146px);
  top: -146px;
}

@media (max-width: 1279px) {
  .timeline-2-block:not(:first-child) .timeline-2-item:first-child:before {
    height: -webkit-calc(100% + 120px);
    height: calc(100% + 120px);
    top: -120px;
  }
}

@media (max-width: 1023px) {
  .timeline-2-block:not(:first-child) .timeline-2-item:first-child:before {
    height: -webkit-calc(100% + 100px);
    height: calc(100% + 100px);
    top: -100px;
  }
}

@media (max-width: 767px) {
  .timeline-2-block:not(:first-child) .timeline-2-item:first-child:before {
    height: -webkit-calc(100% + 80px);
    height: calc(100% + 80px);
    top: -80px;
  }
}

.timeline-2-block:first-child .timeline-2-item:first-child:before {
  top: 30%;
  height: 70%;
}

@media (max-width: 767px) {
  .timeline-2-block:first-child .timeline-2-item:first-child:before {
    top: 40px;
    height: -webkit-calc(100% - 40px);
    height: calc(100% - 40px);
  }
}

.timeline-2-block:first-child .timeline-2-item:first-child:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 14px;
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-double-head-down.png);
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  top: 30%;
  left: 1px;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  -o-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
}

@media (max-width: 767px) {
  .timeline-2-block:first-child .timeline-2-item:first-child:after {
    top: 40px;
    left: -webkit-calc(33.33333% - 15px);
    left: calc(33.33333% - 15px);
  }
}

@media (max-width: 639px) {
  .timeline-2-block:first-child .timeline-2-item:first-child:after {
    left: -webkit-calc(33.33333% - 7px);
    left: calc(33.33333% - 7px);
  }
}

.timeline-2-block:last-child .timeline-2-item:last-child:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cf002c;
  bottom: 0;
  left: -3px;
}

@media (max-width: 767px) {
  .timeline-2-block:last-child .timeline-2-item:last-child:after {
    left: -webkit-calc(33.33333% - 19px);
    left: calc(33.33333% - 19px);
  }
}

@media (max-width: 639px) {
  .timeline-2-block:last-child .timeline-2-item:last-child:after {
    left: -webkit-calc(33.33333% - 11px);
    left: calc(33.33333% - 11px);
  }
}

.timeline-2-item-date {
  position: absolute;
  z-index: 1;
  left: 10px;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  -o-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}

.timeline-2-item:first-child .timeline-2-item-date {
  top: -webkit-calc(50% + 10px);
  top: calc(50% + 10px);
}

@media (max-width: 1023px) {
  .timeline-2-item:first-child .timeline-2-item-date {
    top: -webkit-calc(50% + 17px);
    top: calc(50% + 17px);
  }
}

.timeline-2-item:last-child .timeline-2-item-date {
  top: -webkit-calc(50% - 10px);
  top: calc(50% - 10px);
}

@media (max-width: 1023px) {
  .timeline-2-item:last-child .timeline-2-item-date {
    top: -webkit-calc(50% - 7px);
    top: calc(50% - 7px);
  }
}

.product-slider .swiper-slide {
  width: 160px;
  -webkit-transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  -o-transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  visibility: visible;
  opacity: 1;
}

.product-slider .swiper-slide--hidden {
  visibility: hidden;
  opacity: 0;
}

.product-slider .swiper-scrollbar {
  margin-top: 24px;
  background: #d8d8d8;
  height: 4px;
  width: 124px;
  margin-left: auto;
  margin-right: auto;
}

.product-slider .swiper-scrollbar-drag {
  background: #cf002c;
}

.product-detail-slider .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.product-detail-slider .swiper-button-next,
.product-detail-slider .swiper-button-prev {
  width: 51px;
  height: 51px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-background-size: 13px 13px;
  background-size: 13px;
  background-color: #cf002c;
  border-radius: 4px;
  top: auto;
  bottom: 100px;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
}

@media (max-width: 1599px) {
  .product-detail-slider .swiper-button-next,
  .product-detail-slider .swiper-button-prev {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 1439px) {
  .product-detail-slider .swiper-button-next,
  .product-detail-slider .swiper-button-prev {
    width: 39px;
    height: 39px;
  }
}

@media (max-width: 1279px) {
  .product-detail-slider .swiper-button-next,
  .product-detail-slider .swiper-button-prev {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 1023px) {
  .product-detail-slider .swiper-button-next,
  .product-detail-slider .swiper-button-prev {
    bottom: 80px;
  }
}

@media (max-width: 480px) {
  .product-detail-slider .swiper-button-next,
  .product-detail-slider .swiper-button-prev {
    width: 39px;
    height: 39px;
  }
}

.product-detail-slider .swiper-button-prev {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/small-arrow-left.png);
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -o-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  left: 0;
}

@media (max-width: 480px) {
  .product-detail-slider .swiper-button-prev {
    -webkit-transform: translate(-100%, 50%);
    -ms-transform: translate(-100%, 50%);
    -o-transform: translate(-100%, 50%);
    transform: translate(-100%, 50%);
  }
}

.product-detail-slider .swiper-button-next {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/small-arrow-right.png);
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
  -o-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
  right: 0;
}

@media (max-width: 480px) {
  .product-detail-slider .swiper-button-next {
    -webkit-transform: translate(100%, 50%);
    -ms-transform: translate(100%, 50%);
    -o-transform: translate(100%, 50%);
    transform: translate(100%, 50%);
  }
}

.product-detail-slider .swiper-pagination {
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: 8px;
}

.product-detail-slider .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: #e8e2da;
  opacity: 1;
}

.product-detail-slider .swiper-pagination-bullet:not(:last-child) {
  margin-right: 9px;
}

.product-detail-slider .swiper-pagination-bullet-active {
  background-color: #cf002c;
}

.header-slider {
  position: relative;
}

.header-slider__next-wrapper,
.header-slider__prev-wrapper {
  position: absolute;
  top: -webkit-calc(50% + 40px);
  top: calc(50% + 40px);
  width: 28px;
  height: 28px;
  border-radius: 100%;
  border: 2px solid #fcfcfc;
  z-index: 20;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1023px) {
  .header-slider__next-wrapper,
  .header-slider__prev-wrapper {
    display: none !important;
  }
}

.header-slider__next-wrapper .swiper-button-next,
.header-slider__next-wrapper .swiper-button-prev,
.header-slider__prev-wrapper .swiper-button-next,
.header-slider__prev-wrapper .swiper-button-prev {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 0;
  padding: 0;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  left: 50%;
  right: auto;
  color: #fcfcfc;
  -webkit-background-size: 14px 14px;
  background-size: 14px;
}

.header-slider__next-wrapper .swiper-button-next:after,
.header-slider__next-wrapper .swiper-button-prev:after,
.header-slider__prev-wrapper .swiper-button-next:after,
.header-slider__prev-wrapper .swiper-button-prev:after {
  font-size: 1.3em;
}

@media (max-width: 1023px) {
  .header-slider__next-wrapper .swiper-button-next,
  .header-slider__next-wrapper .swiper-button-prev,
  .header-slider__prev-wrapper .swiper-button-next,
  .header-slider__prev-wrapper .swiper-button-prev {
    padding: 24px;
    width: 3em;
    height: 3em;
  }
}

@media (max-width: 639px) {
  .header-slider__next-wrapper .swiper-button-next,
  .header-slider__next-wrapper .swiper-button-prev,
  .header-slider__prev-wrapper .swiper-button-next,
  .header-slider__prev-wrapper .swiper-button-prev {
    display: none;
  }
}

.header-slider__next-wrapper .swiper-button-prev,
.header-slider__prev-wrapper .swiper-button-prev {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/angle-arrow-left.png);
}

.header-slider__next-wrapper .swiper-button-next,
.header-slider__prev-wrapper .swiper-button-next {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/angle-arrow-right.png);
}

.header-slider__next-wrapper {
  right: 2.5em;
}

@media (max-width: 1023px) {
  .header-slider__next-wrapper {
    right: 2em;
  }
}

@media (max-width: 767px) {
  .header-slider__next-wrapper {
    right: 1em;
  }
}

.header-slider__prev-wrapper {
  left: 2.5em;
}

@media (max-width: 1023px) {
  .header-slider__prev-wrapper {
    left: 2em;
  }
}

@media (max-width: 767px) {
  .header-slider__prev-wrapper {
    left: 1em;
  }
}

.header-slider .swiper-container {
  height: 100vh;
  position: relative;
}

.header-slider .swiper-slide {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 60px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .header-slider .swiper-slide {
    padding-bottom: 44px;
  }
}

.header-slider .swiper-slide:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(#000)
  );
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), #000);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0), #000);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000);
  opacity: 0.92;
  pointer-events: none;
  z-index: 1;
}

.header-slider .swiper-slide .img {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 6s ease-out;
  transition: -webkit-transform 6s ease-out;
  -o-transition: -o-transform 6s ease-out;
  transition: transform 6s ease-out;
  transition: transform 6s ease-out, -webkit-transform 6s ease-out,
    -o-transform 6s ease-out;
}

.header-slider .swiper-slide .img.zoom-in {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.header-slider .swiper-slide .img.zoom-out {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.header-slider .swiper-pagination {
  width: 100%;
  bottom: 10px;
}

.header-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #f7f4f0;
  opacity: 1;
  margin: 0 4px;
}

.header-slider .swiper-pagination-bullet-active {
  background: #cf002c;
}

.tabs-widget__tab {
  display: none;
}

.tabs-widget__tab:first-child {
  display: block;
}

.tabs-widget__nav {
  width: 51px;
  height: 51px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  -o-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  top: 50%;
  background-color: #cf002c;
  border-radius: 4px;
}

@media (max-width: 1599px) {
  .tabs-widget__nav {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 1439px) {
  .tabs-widget__nav {
    width: 39px;
    height: 39px;
  }
}

@media (max-width: 1279px) {
  .tabs-widget__nav {
    width: 48px;
    height: 48px;
  }
}

.tabs-widget__nav--prev {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/small-arrow-left.png);
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  -o-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  left: -26px;
}

@media (max-width: 1599px) {
  .tabs-widget__nav--prev {
    left: -20px;
  }
}

.tabs-widget__nav--next {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/small-arrow-right.png);
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  -o-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  right: -26px;
}

@media (max-width: 1599px) {
  .tabs-widget__nav--next {
    right: -20px;
  }
}

.tabs-widget .swiper-button-disabled {
  opacity: 0.4;
}

.tabs-widget .swiper-container {
  overflow: visible;
}

.tabs-widget .swiper-pagination {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: 8px;
}

.tabs-widget .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: #f7f4f0;
  opacity: 1;
}

.tabs-widget .swiper-pagination-bullet:not(:last-child) {
  margin-right: 9px;
}

.tabs-widget .swiper-pagination-bullet-active {
  background-color: #cf002c;
}

.tabs-widget .bg {
  height: -webkit-calc(100% - 84px);
  height: calc(100% - 84px);
}

@media (max-width: 1599px) {
  .tabs-widget .bg {
    height: -webkit-calc(100% - 76px);
    height: calc(100% - 76px);
  }
}

@media (max-width: 1439px) {
  .tabs-widget .bg {
    height: -webkit-calc(100% - 64px);
    height: calc(100% - 64px);
  }
}

.tab-link {
  color: #cf002c;
  cursor: pointer;
}

.tab-link--active {
  color: #1d1d1b;
  border-bottom: 2px solid #1d1d1b;
}

.leaf-img {
  max-width: none;
  max-height: 94vw;
  -webkit-transform: translate(29%, -8%);
  -ms-transform: translate(29%, -8%);
  -o-transform: translate(29%, -8%);
  transform: translate(29%, -8%);
  pointer-events: none;
}

@media (max-width: 767px) {
  .leaf-img {
    -webkit-transform: translate(41%, -7%);
    -ms-transform: translate(41%, -7%);
    -o-transform: translate(41%, -7%);
    transform: translate(41%, -7%);
    max-height: none;
  }
}

.woman-img {
  max-width: none;
  max-height: 67vw;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .woman-img {
    max-height: 71.2vw;
    max-height: 60vw;
    -webkit-transform: translate(2.5vw, 8vw);
    -ms-transform: translate(2.5vw, 8vw);
    -o-transform: translate(2.5vw, 8vw);
    transform: translate(2.5vw, 8vw);
  }
}

@media (max-width: 767px) {
  .woman-img {
    max-height: 58vw;
    -webkit-transform: translate(2.5vw);
    -ms-transform: translate(2.5vw);
    -o-transform: translate(2.5vw);
    transform: translate(2.5vw);
  }
}

@media (max-width: 639px) {
  #CybotCookiebotDialog {
    padding-top: 6px !important;
  }
}

.fontface-gl #CybotCookiebotDialog a,
.fontface-gl #CybotCookiebotDialogBodyContentControls,
.fontface-gl #CybotCookiebotDialogBodyContentTitle,
.fontface-gl #CybotCookiebotDialog div {
  font-family: "Pluto-Regular" !important;
}

.fontface-ru #CybotCookiebotDialog a,
.fontface-ru #CybotCookiebotDialogBodyContentControls,
.fontface-ru #CybotCookiebotDialogBodyContentTitle,
.fontface-ru #CybotCookiebotDialog div {
  font-family: ProstoSans-Regular !important;
}

.fontface-cn #CybotCookiebotDialog a,
.fontface-cn #CybotCookiebotDialogBodyContentControls,
.fontface-cn #CybotCookiebotDialogBodyContentTitle,
.fontface-cn #CybotCookiebotDialog div {
  font-family: AmasisMTPro-Regular !important;
}

.CybotCookiebotDialogBodyButton {
  padding: 8px 12px !important;
  width: auto !important;
  border-radius: 4px !important;
  font-weight: 400 !important;
  margin: 6px 12px 6px 0 !important;
}

@media (max-width: 440px) {
  .CybotCookiebotDialogBodyButton {
    width: 100% !important;
    margin-right: 0 !important;
  }
}

#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelectionWrapper {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
  -webkit-flex-wrap: wrap !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  float: none !important;
  margin-left: 80px !important;
}

@media (max-width: 639px) {
  #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelectionWrapper {
    margin-left: 0 !important;
  }
}

#CybotCookiebotDialogBody {
  max-width: 720px !important;
  padding-right: 0 !important;
}

@media (max-width: 639px) {
  #CybotCookiebotDialogBody {
    padding: 0 16px !important;
  }
}

#CybotCookiebotDialogDetailBody {
  max-width: 720px !important;
  padding-left: 80px !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

@media (max-width: 639px) {
  #CybotCookiebotDialogDetailBody {
    padding-left: 0 !important;
  }
}

#CybotCookiebotDialogBodyLevelButtons {
  margin-left: 0 !important;
  padding-left: 80px !important;
  width: 100% !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

@media (max-width: 639px) {
  #CybotCookiebotDialogBodyLevelButtons {
    padding-left: 0 !important;
  }
}

#CybotCookiebotDialogBodyLevelButtonsTable {
  width: 100% !important;
}

input[type="checkbox"].CybotCookiebotDialogBodyLevelButton + label,
input[type="checkbox"].CybotCookiebotDialogBodyLevelButton.CybotCookiebotDialogBodyLevelButtonDisabled
  + label {
  padding: 3px 0 0 17px !important;
}

@media (max-width: 639px) {
  #CybotCookiebotDialogPoweredbyLink {
    display: none !important;
  }
}

@media (max-width: 639px) {
  #CybotCookiebotDialogBodyContent {
    padding-left: 0 !important;
  }
}

@media (max-width: 639px) {
  #CybotCookiebotDialogDetailBodyContentTextOverview {
    max-width: 100% !important;
  }
}

.CybotCookiebotDialogDetailBodyContentCookieTypeTable tbody td {
  max-width: none !important;
}

@media (max-width: 639px) {
  #CybotCookiebotDialogDetail {
    padding: 0 16px !important;
  }
}

a#CybotCookiebotDialogBodyLevelDetailsButton {
  padding-top: 3px !important;
  background-position: right 50% !important;
}

@media (max-width: 440px) {
  .CybotCookiebotDialogBodyLevelButtonWrapper label {
    min-width: 80px !important;
  }
}

.image-slider .swiper-slide {
  width: auto;
  width: 200px;
  height: 150px;
  -webkit-transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  -o-transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  visibility: visible;
  opacity: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-slider .swiper-slide--hidden {
  visibility: hidden;
  opacity: 0;
}

.image-slider .swiper-slide img {
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  max-width: 200px;
}

.image-slider__next-wrapper,
.image-slider__prev-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
  z-index: 5;
}

.image-slider__next-wrapper .swiper-button-next,
.image-slider__next-wrapper .swiper-button-prev,
.image-slider__prev-wrapper .swiper-button-next,
.image-slider__prev-wrapper .swiper-button-prev {
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 0;
  left: 50%;
  right: auto;
  color: #fcfcfc;
  -webkit-background-size: 20px 20px;
  background-size: 20px;
}

.image-slider__next-wrapper .swiper-button-next:after,
.image-slider__next-wrapper .swiper-button-prev:after,
.image-slider__prev-wrapper .swiper-button-next:after,
.image-slider__prev-wrapper .swiper-button-prev:after {
  font-size: 1.3em;
}

@media (max-width: 1023px) {
  .image-slider__next-wrapper .swiper-button-next,
  .image-slider__next-wrapper .swiper-button-prev,
  .image-slider__prev-wrapper .swiper-button-next,
  .image-slider__prev-wrapper .swiper-button-prev {
    padding: 24px;
    width: 3em;
    height: 3em;
  }
}

.image-slider__next-wrapper .swiper-button-prev,
.image-slider__prev-wrapper .swiper-button-prev {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-left-red.svg);
}

.image-slider__next-wrapper .swiper-button-next,
.image-slider__prev-wrapper .swiper-button-next {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/arrow-right-red.svg);
}

.image-slider .swiper-scrollbar {
  background: #9c958b;
  height: 8px;
  width: 120px;
}

.image-slider .swiper-scrollbar-drag {
  background: #cf002c;
}

.info-tooltip {
  position: absolute;
  cursor: auto;
  width: 240px;
  border: 2px solid #9c958b;
  border-radius: 8px;
  background-color: #f7f4f0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  top: -17px;
  left: -webkit-calc(100% + 20px);
  left: calc(100% + 20px);
  z-index: 20;
}

@media (max-width: 767px) {
  .info-tooltip {
    top: -14px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    left: auto;
  }
}

.info-tooltip:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  z-index: 12;
  border-color: rgba(0, 0, 0, 0) #9c958b rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 12px 10px 12px 0;
  left: 0;
  -webkit-transform: translate(-100%);
  -ms-transform: translate(-100%);
  -o-transform: translate(-100%);
  transform: translate(-100%);
  top: 10px;
}

@media (max-width: 767px) {
  .info-tooltip:before {
    border-width: 10px 12px 0;
    border-color: #9c958b rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 100%;
  }
}

.info-tooltip .level {
  min-width: 28px;
  position: relative;
}

.info-tooltip .level:after {
  content: "-";
  color: #1d1d1b;
  position: absolute;
  right: 0;
}

.fontface-gl .info-tooltip .level:after {
  font-family: "Pluto-Regular";
}

.fontface-ru .info-tooltip .level:after {
  font-family: ProstoSans-Regular;
}

.fontface-cn .info-tooltip .level:after {
  font-family: AmasisMTPro-Regular;
}

.voucher-swiper {
  position: relative;
}

.voucher-swiper__navigation {
  position: absolute;
  width: 91.666667%;
  max-width: 1320px;
  margin: 0 auto;
}

.voucher-swiper .swiper-container {
  overflow: visible;
  margin: 0 -20px;
}

@media (max-width: 639px) {
  .voucher-swiper .swiper-container {
    margin: 0 -10px;
  }
}

.voucher-swiper .swiper-slide {
  width: 41.5%;
  padding: 0 20px;
  -webkit-transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  -o-transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1023px) {
  .voucher-swiper .swiper-slide {
    width: 64%;
  }
}

@media (max-width: 767px) {
  .voucher-swiper .swiper-slide {
    width: 82%;
  }
}

@media (max-width: 639px) {
  .voucher-swiper .swiper-slide {
    width: 89%;
    padding: 0 10px;
  }
}

.voucher-swiper .swiper-slide--hidden {
  visibility: hidden;
  opacity: 0;
}

.voucher-swiper .swiper-button-next,
.voucher-swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  margin-top: 0;
  background: rgba(15, 14, 14, 0.81);
  border-radius: 100%;
  border: 2px solid hsla(0, 0%, 98.8%, 0.5);
  z-index: 5;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-background-size: 20px 20px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 50%;
}

.voucher-swiper .swiper-button-next:focus,
.voucher-swiper .swiper-button-prev:focus {
  outline: none;
}

@media (max-width: 1279px) {
  .voucher-swiper .swiper-button-next,
  .voucher-swiper .swiper-button-prev {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 767px) {
  .voucher-swiper .swiper-button-next,
  .voucher-swiper .swiper-button-prev {
    display: none;
  }
}

.voucher-swiper .swiper-button-prev {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/angle-arrow-left.png);
  left: 0;
}

.voucher-swiper .swiper-button-next {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/angle-arrow-right.png);
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.voucher-swiper .swiper-scrollbar {
  margin-bottom: 40px;
  background: #9c958b;
  height: 8px;
  width: 175px;
  margin-left: auto;
  margin-right: auto;
}

.voucher-swiper .swiper-scrollbar-drag {
  background: #cf002c;
}

.you-may-also-like-widget {
  position: relative;
}

.you-may-also-like-widget__navigation {
  position: absolute;
  width: 91.666667%;
  max-width: 1320px;
  margin: 0 auto;
}

.you-may-also-like-widget .swiper-container {
  overflow: visible;
  margin: 0 -20px;
}

@media (max-width: 639px) {
  .you-may-also-like-widget .swiper-container {
    margin: 0 -10px;
  }
}

.you-may-also-like-widget .swiper-slide {
  width: 41.5%;
  padding: 0 20px;
  -webkit-transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  -o-transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition: visibility 0.6s ease-in-out, opacity 0.6s ease-in-out;
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1023px) {
  .you-may-also-like-widget .swiper-slide {
    width: 64%;
  }
}

@media (max-width: 767px) {
  .you-may-also-like-widget .swiper-slide {
    width: 82%;
  }
}

@media (max-width: 639px) {
  .you-may-also-like-widget .swiper-slide {
    width: 89%;
    padding: 0 10px;
  }
}

.you-may-also-like-widget .swiper-slide--hidden {
  visibility: hidden;
  opacity: 0;
}

.you-may-also-like-widget .swiper-button-next,
.you-may-also-like-widget .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  margin-top: 0;
  background: rgba(15, 14, 14, 0.81);
  border-radius: 100%;
  border: 2px solid hsla(0, 0%, 98.8%, 0.5);
  z-index: 5;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-background-size: 20px 20px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 50%;
}

.you-may-also-like-widget .swiper-button-next:focus,
.you-may-also-like-widget .swiper-button-prev:focus {
  outline: none;
}

@media (max-width: 1279px) {
  .you-may-also-like-widget .swiper-button-next,
  .you-may-also-like-widget .swiper-button-prev {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 767px) {
  .you-may-also-like-widget .swiper-button-next,
  .you-may-also-like-widget .swiper-button-prev {
    display: none;
  }
}

.you-may-also-like-widget .swiper-button-prev {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/angle-arrow-left.png);
  left: 0;
}

.you-may-also-like-widget .swiper-button-next {
  background-image: url(https://juliusmeinl.com/App_Themes/Emakina/images/angle-arrow-right.png);
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.you-may-also-like-widget .swiper-scrollbar {
  background: #9c958b;
  height: 8px;
  width: 175px;
  margin: 40px auto;
}

.you-may-also-like-widget .swiper-scrollbar-drag {
  background: #cf002c;
}

.sticky-menu--sticky {
  position: fixed;
  top: 96px;
  margin: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 1320px;
}

.js-multistep-form h2 {
  font-size: 40px;
  color: #cf002c;
  text-align: center;
  line-height: 0.88;
}

.fontface-gl .js-multistep-form h2 {
  font-family: "Pluto-Bold";
}

.fontface-ru .js-multistep-form h2 {
  font-family: ProstoSans-Bold;
}

.fontface-cn .js-multistep-form h2 {
  font-family: AmasisMTPro-Bold;
}

.js-multistep-form .steps-indicator {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 64px 0;
}

@media (max-width: 480px) {
  .js-multistep-form .steps-indicator {
    margin: 48px 0;
  }
}

.js-multistep-form .step {
  position: relative;
  font-size: 14px;
  width: 90px;
  height: 33px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 1px;
  border-radius: 2px;
  border: 1px solid #d7d2cb;
  background-color: #f7f4f0;
  text-transform: uppercase;
  margin: 0 34px;
}

.fontface-gl .js-multistep-form .step {
  font-family: "Pluto-Bold";
}

.fontface-ru .js-multistep-form .step {
  font-family: ProstoSans-Bold;
}

.fontface-cn .js-multistep-form .step {
  font-family: AmasisMTPro-Bold;
}

.js-multistep-form .step--active {
  color: #fff;
  background-color: #cf002c;
  border-color: #cf002c;
}

@media (max-width: 900px) {
  .js-multistep-form .step {
    margin: 0 24px;
  }
}

@media (max-width: 639px) {
  .js-multistep-form .step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
}

.js-multistep-form .step:first-child {
  margin-left: 0;
}

.js-multistep-form .step:last-child {
  margin-right: 0;
}

.js-multistep-form .step:not(:last-child):after {
  content: "";
  position: absolute;
  left: -webkit-calc(100% + 8px);
  left: calc(100% + 8px);
  width: 52px;
  border: 1px solid #9c958b;
}

@media (max-width: 900px) {
  .js-multistep-form .step:not(:last-child):after {
    width: 32px;
  }
}

@media (min-width: 640px) {
  .js-multistep-form .step:before {
    content: "Step";
    margin-right: 4px;
  }
}

.js-multistep-form div[data-stepid] {
  display: none;
}

.js-multistep-form div[data-stepid] > h4 {
  text-align: center;
  font-size: 24px;
  line-height: 1.3;
}

.fontface-gl .js-multistep-form div[data-stepid] > h4 {
  font-family: "Pluto-Bold";
}

.fontface-ru .js-multistep-form div[data-stepid] > h4 {
  font-family: ProstoSans-Bold;
}

.fontface-cn .js-multistep-form div[data-stepid] > h4 {
  font-family: AmasisMTPro-Bold;
}

.js-multistep-form div[data-stepid] > p {
  text-align: center;
  color: #9c958b;
  margin-top: 16px;
  margin-bottom: 64px;
}

@media (max-width: 639px) {
  .js-multistep-form div[data-stepid] > p {
    margin-bottom: 40px;
  }
}

.js-multistep-form .step-file-upload {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.js-multistep-form .step-file-upload > h4,
.js-multistep-form .step-file-upload > p {
  width: 100%;
}

.js-multistep-form [data-file-type="image"],
.js-multistep-form [data-file-type="video"] {
  position: relative;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 12px;
}

.js-multistep-form [data-file-type="image"] .ktc-uploader-text,
.js-multistep-form [data-file-type="video"] .ktc-uploader-text {
  display: none;
}

.js-multistep-form [data-file-type="image"] input[type="file"],
.js-multistep-form [data-file-type="video"] input[type="file"] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.js-multistep-form [data-file-type="image"] > label,
.js-multistep-form [data-file-type="video"] > label {
  cursor: pointer;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #cf002c;
  line-height: 1.71;
  width: 250px;
  min-height: 180px;
  background-color: #f7f4f0;
  padding: 20px 20px 40px;
  text-align: center;
}

.fontface-gl .js-multistep-form [data-file-type="image"] > label,
.fontface-gl .js-multistep-form [data-file-type="video"] > label {
  font-family: "Pluto-Bold";
}

.fontface-ru .js-multistep-form [data-file-type="image"] > label,
.fontface-ru .js-multistep-form [data-file-type="video"] > label {
  font-family: ProstoSans-Bold;
}

.fontface-cn .js-multistep-form [data-file-type="image"] > label,
.fontface-cn .js-multistep-form [data-file-type="video"] > label {
  font-family: AmasisMTPro-Bold;
}

.js-multistep-form [data-file-type="image"] > label.required-field-star:after,
.js-multistep-form [data-file-type="video"] > label.required-field-star:after {
  content: "" !important;
}

.js-multistep-form [data-file-type="image"] .explanation-text,
.js-multistep-form [data-file-type="video"] .explanation-text {
  display: none;
}

.js-multistep-form [data-file-type="image"] .file-input-empty,
.js-multistep-form [data-file-type="image"] .ktc-uploader-text-button,
.js-multistep-form [data-file-type="video"] .file-input-empty,
.js-multistep-form [data-file-type="video"] .ktc-uploader-text-button {
  position: absolute;
  left: 50%;
  font-size: 12px;
  top: -webkit-calc(100% - 36px);
  top: calc(100% - 36px);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.js-multistep-form [data-file-type="image"] .ktc-uploader-text-button,
.js-multistep-form [data-file-type="video"] .ktc-uploader-text-button {
  cursor: pointer;
}

.js-multistep-form .file-input-icon {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 74px;
  margin-bottom: 8px;
}

.js-multistep-form .file-input-icon,
.js-multistep-form .file-input-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.js-multistep-form .file-input-info {
  font-size: 10px;
  color: #9c958b;
  line-height: 2.4;
}

.fontface-gl .js-multistep-form .file-input-info {
  font-family: "Pluto-Regular";
}

.fontface-ru .js-multistep-form .file-input-info {
  font-family: ProstoSans-Regular;
}

.fontface-cn .js-multistep-form .file-input-info {
  font-family: AmasisMTPro-Regular;
}

.js-multistep-form .file-input-info-name {
  max-width: 140px;
  text-overflow: ellipsis;
  height: 24px;
  width: auto;
  overflow: hidden;
  margin-right: 4px;
  white-space: nowrap;
}

.js-multistep-form .file-input-info-size {
  margin-left: 4px;
}

.js-multistep-form input[type="submit"] {
  display: block;
  margin: 40px auto 0;
  display: none;
  min-width: 240px;
}

.js-multistep-form label.control-label {
  line-height: 1.5;
}

.fontface-gl .js-multistep-form label.control-label {
  font-family: "Pluto-Bold";
}

.fontface-ru .js-multistep-form label.control-label {
  font-family: ProstoSans-Bold;
}

.fontface-cn .js-multistep-form label.control-label {
  font-family: AmasisMTPro-Bold;
}

.js-multistep-form label.control-label.required-field-star:after {
  content: " *";
  color: #cf002c;
}

.js-multistep-form .ktc-checkbox {
  display: block;
}

.js-multistep-form .ktc-checkbox label {
  padding-left: 35px;
  display: block;
}

.js-multistep-form .ktc-checkbox label:before {
  top: 2px !important;
}

.js-multistep-form .ktc-checkbox label:hover:after {
  top: 6px !important;
}

.js-multistep-form .ktc-checkbox label.required-field-star:after {
  content: " *";
  color: #cf002c;
}

.js-multistep-form .ktc-checkbox-list .ktc-checkbox {
  margin-top: 18px;
}

.js-multistep-form input[type="email"],
.js-multistep-form input[type="text"],
.js-multistep-form textarea {
  border: 1px solid #9c958b;
  width: 100%;
  height: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 11px;
  border-radius: 4px;
  overflow: hidden;
  color: #1d1d1b;
  line-height: 1;
  display: block;
  cursor: text;
}

.js-multistep-form input[type="email"]::-webkit-input-placeholder,
.js-multistep-form input[type="text"]::-webkit-input-placeholder,
.js-multistep-form textarea::-webkit-input-placeholder {
  color: #9c958b;
}

.js-multistep-form input[type="email"]::-moz-placeholder,
.js-multistep-form input[type="text"]::-moz-placeholder,
.js-multistep-form textarea::-moz-placeholder {
  color: #9c958b;
}

.js-multistep-form input[type="email"]:-ms-input-placeholder,
.js-multistep-form input[type="text"]:-ms-input-placeholder,
.js-multistep-form textarea:-ms-input-placeholder {
  color: #9c958b;
}

.js-multistep-form input[type="email"]::placeholder,
.js-multistep-form input[type="text"]::placeholder,
.js-multistep-form textarea::placeholder {
  color: #9c958b;
}

@media (max-width: 639px) {
  .js-multistep-form input[type="email"]::-webkit-input-placeholder,
  .js-multistep-form input[type="text"]::-webkit-input-placeholder,
  .js-multistep-form textarea::-webkit-input-placeholder {
    font-size: 14.5px;
  }

  .js-multistep-form input[type="email"]::-moz-placeholder,
  .js-multistep-form input[type="text"]::-moz-placeholder,
  .js-multistep-form textarea::-moz-placeholder {
    font-size: 14.5px;
  }

  .js-multistep-form input[type="email"]:-ms-input-placeholder,
  .js-multistep-form input[type="text"]:-ms-input-placeholder,
  .js-multistep-form textarea:-ms-input-placeholder {
    font-size: 14.5px;
  }

  .js-multistep-form input[type="email"]::placeholder,
  .js-multistep-form input[type="text"]::placeholder,
  .js-multistep-form textarea::placeholder {
    font-size: 14.5px;
  }
}

.js-multistep-form input[type="email"]:hover:enabled,
.js-multistep-form input[type="text"]:hover:enabled,
.js-multistep-form textarea:hover:enabled {
  border-color: #1d1d1b;
}

.js-multistep-form input[type="email"]:focus,
.js-multistep-form input[type="text"]:focus,
.js-multistep-form textarea:focus {
  outline: none;
  border-color: #1d1d1b;
}

.js-multistep-form input[type="email"]:disabled,
.js-multistep-form input[type="text"]:disabled,
.js-multistep-form textarea:disabled {
  background: #f2f2f2;
}

.js-multistep-form input[type="email"]:disabled::-webkit-input-placeholder,
.js-multistep-form input[type="text"]:disabled::-webkit-input-placeholder,
.js-multistep-form textarea:disabled::-webkit-input-placeholder {
  color: #b2b2b2;
}

.js-multistep-form input[type="email"]:disabled::-moz-placeholder,
.js-multistep-form input[type="text"]:disabled::-moz-placeholder,
.js-multistep-form textarea:disabled::-moz-placeholder {
  color: #b2b2b2;
}

.js-multistep-form input[type="email"]:disabled:-ms-input-placeholder,
.js-multistep-form input[type="text"]:disabled:-ms-input-placeholder,
.js-multistep-form textarea:disabled:-ms-input-placeholder {
  color: #b2b2b2;
}

.js-multistep-form input[type="email"]:disabled::placeholder,
.js-multistep-form input[type="text"]:disabled::placeholder,
.js-multistep-form textarea:disabled::placeholder {
  color: #b2b2b2;
}

.js-multistep-form input[type="email"].focused,
.js-multistep-form input[type="text"].focused,
.js-multistep-form textarea.focused {
  -webkit-box-shadow: 0 0 0 3px #1f97de;
  box-shadow: 0 0 0 3px #1f97de;
  outline: none;
}

.js-multistep-form textarea {
  width: 100%;
  overflow: auto;
  height: 312px;
  resize: none;
}

@media (max-width: 639px) {
  .js-multistep-form textarea {
    height: 200px;
  }
}

.js-multistep-form textarea::-webkit-scrollbar {
  width: 4px;
}

.js-multistep-form textarea::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}

.js-multistep-form textarea::-webkit-scrollbar-thumb {
  background-color: #9c958b;
}

.js-multistep-form select {
  width: 100%;
  height: 40px;
  border: 1px solid #9c958b;
  border-radius: 4px;
  padding: 0 6px;
}

.js-multistep-form select:hover:enabled {
  border-color: #1d1d1b;
}

.js-multistep-form select:focus {
  outline: none;
  border-color: #1d1d1b;
}

.js-multistep-form .form-field-headline {
  color: #cf002c;
  width: 100%;
  padding: 16px 24px;
  background-color: #f7f4f0;
  margin-top: 40px;
}

.fontface-gl .js-multistep-form .form-field-headline {
  font-family: "Pluto-Bold";
}

.fontface-ru .js-multistep-form .form-field-headline {
  font-family: ProstoSans-Bold;
}

.fontface-cn .js-multistep-form .form-field-headline {
  font-family: AmasisMTPro-Bold;
}

.js-multistep-form .form-field:not(:first-child) {
  margin-top: 25px;
}

.js-multistep-form .form-field:first-child .form-field-headline {
  margin-top: 0;
}

.js-multistep-form .form-field:not([data-file-type]) {
  width: 100%;
}

.js-multistep-form .ktc-uploader-replacement {
  display: none !important;
}

@-webkit-keyframes button-pulse {
  0% {
    background-color: #cf002c;
    border-color: #cf002c;
  }

  50% {
    background-color: #82001c;
    border-color: #82001c;
  }

  to {
    background-color: #cf002c;
    border-color: #cf002c;
  }
}

@-o-keyframes button-pulse {
  0% {
    background-color: #cf002c;
    border-color: #cf002c;
  }

  50% {
    background-color: #82001c;
    border-color: #82001c;
  }

  to {
    background-color: #cf002c;
    border-color: #cf002c;
  }
}

@keyframes button-pulse {
  0% {
    background-color: #cf002c;
    border-color: #cf002c;
  }

  50% {
    background-color: #82001c;
    border-color: #82001c;
  }

  to {
    background-color: #cf002c;
    border-color: #cf002c;
  }
}

.js-multistep-form .submit-btn-loading {
  -webkit-animation-name: button-pulse;
  -o-animation-name: button-pulse;
  animation-name: button-pulse;
  -webkit-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  pointer-events: none;
}

@media (max-width: 1599px) {
  .xl\:text-28 {
    font-size: 28px;
  }

  .xl\:text-32 {
    font-size: 32px;
  }

  .xl\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .xl\:mt-16 {
    margin-top: 16px;
  }

  .xl\:mb-16 {
    margin-bottom: 16px;
  }

  .xl\:mr-64 {
    margin-right: 64px;
  }

  .xl\:ml-64 {
    margin-left: 64px;
  }

  .xl\:pr-0 {
    padding-right: 0;
  }

  .xl\:pr-24 {
    padding-right: 24px;
  }

  .xl\:pl-24 {
    padding-left: 24px;
  }

  .xl\:pr-56 {
    padding-right: 56px;
  }

  .xl\:pl-56 {
    padding-left: 56px;
  }

  .xl\:pr-96 {
    padding-right: 96px;
  }

  .xl\:bottom-96 {
    bottom: 96px;
  }

  .xl\:w-192 {
    width: 192px;
  }

  .xl\:w-10\/12 {
    width: 83.333333%;
  }
}

@media (max-width: 1439px) {
  .lg\:text-24 {
    font-size: 24px;
  }

  .lg\:text-32 {
    font-size: 32px;
  }

  .lg\:text-36 {
    font-size: 36px;
  }

  .lg\:text-40 {
    font-size: 40px;
  }

  .lg\:mt-24 {
    margin-top: 24px;
  }

  .lg\:mb-24 {
    margin-bottom: 24px;
  }

  .lg\:mr-32 {
    margin-right: 32px;
  }

  .lg\:mr-64 {
    margin-right: 64px;
  }

  .lg\:-ml-16 {
    margin-left: -16px;
  }

  .lg\:-mt-40 {
    margin-top: -40px;
  }

  .lg\:-mt-96 {
    margin-top: -96px;
  }

  .lg\:-mb-96 {
    margin-bottom: -96px;
  }

  .lg\:children\:pr-56 > * {
    padding-right: 56px;
  }

  .lg\:p-24 {
    padding: 24px;
  }

  .lg\:py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .lg\:px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .lg\:pt-0 {
    padding-top: 0;
  }

  .lg\:pb-0 {
    padding-bottom: 0;
  }

  .lg\:pt-40 {
    padding-top: 40px;
  }

  .lg\:pr-40 {
    padding-right: 40px;
  }

  .lg\:pl-40 {
    padding-left: 40px;
  }

  .lg\:pb-128 {
    padding-bottom: 128px;
  }

  .lg\:bottom-80 {
    bottom: 80px;
  }

  .lg\:w-160 {
    width: 160px;
  }

  .lg\:w-1\/4 {
    width: 25%;
  }

  .lg\:w-3\/4 {
    width: 75%;
  }

  .lg\:w-6\/12 {
    width: 50%;
  }
}

@media (max-width: 1279px) {
  .md\:block {
    display: block;
  }

  .md\:flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .md\:justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .md\:order-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }

  .md\:h-50vw {
    height: 50vw;
  }

  .md\:h-45vw {
    height: 45vw;
  }

  .md\:text-14 {
    font-size: 14.5px;
  }

  .md\:text-20 {
    font-size: 20px;
  }

  .md\:text-24 {
    font-size: 24px;
  }

  .md\:text-28 {
    font-size: 28px;
  }

  .md\:text-30 {
    font-size: 30px;
  }

  .md\:text-40 {
    font-size: 40px;
  }

  .md\:text-64 {
    font-size: 64px;
  }

  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .md\:mx-10 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .md\:-mx-10 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .md\:-mx-14 {
    margin-left: -14px;
    margin-right: -14px;
  }

  .md\:mt-0 {
    margin-top: 0;
  }

  .md\:mr-0 {
    margin-right: 0;
  }

  .md\:mb-8 {
    margin-bottom: 8px;
  }

  .md\:mb-16 {
    margin-bottom: 16px;
  }

  .md\:mt-18 {
    margin-top: 18px;
  }

  .md\:mt-73 {
    margin-top: 73px;
  }

  .md\:mt-80 {
    margin-top: 80px;
  }

  .md\:mr-80 {
    margin-right: 80px;
  }

  .md\:mb-80 {
    margin-bottom: 80px;
  }

  .md\:mt-96 {
    margin-top: 96px;
  }

  .md\:mt-224 {
    margin-top: 224px;
  }

  .md\:mr-auto {
    margin-right: auto;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:-mt-80 {
    margin-top: -80px;
  }

  .md\:-mb-80 {
    margin-bottom: -80px;
  }

  .md\:-mt-106 {
    margin-top: -106px;
  }

  .md\:min-h-82 {
    min-height: 82px;
  }

  .md\:min-h-full {
    min-height: 100%;
  }

  .md\:children\:pr-10 > * {
    padding-right: 10px;
  }

  .md\:p-24 {
    padding: 24px;
  }

  .md\:p-32 {
    padding: 32px;
  }

  .md\:px-16 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .md\:py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .md\:px-120 {
    padding-left: 120px;
    padding-right: 120px;
  }

  .md\:pr-0 {
    padding-right: 0;
  }

  .md\:pl-0 {
    padding-left: 0;
  }

  .md\:pr-20 {
    padding-right: 20px;
  }

  .md\:pl-20 {
    padding-left: 20px;
  }

  .md\:pb-32 {
    padding-bottom: 32px;
  }

  .md\:pr-40 {
    padding-right: 40px;
  }

  .md\:pb-40 {
    padding-bottom: 40px;
  }

  .md\:pl-40 {
    padding-left: 40px;
  }

  .md\:pt-48 {
    padding-top: 48px;
  }

  .md\:pt-64 {
    padding-top: 64px;
  }

  .md\:pb-104 {
    padding-bottom: 104px;
  }

  .md\:absolute {
    position: absolute;
  }

  .md\:relative {
    position: relative;
  }

  .md\:top-0 {
    top: 0;
  }

  .md\:bottom-0 {
    bottom: 0;
  }

  .md\:right-12 {
    right: 12px;
  }

  .md\:left-12 {
    left: 12px;
  }

  .md\:top-auto {
    top: auto;
  }

  .md\:children\:w-full > * {
    width: 100%;
  }

  .md\:w-212 {
    width: 212px;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-1\/3 {
    width: 33.333333%;
  }

  .md\:w-2\/3 {
    width: 66.666667%;
  }

  .md\:w-3\/4 {
    width: 75%;
  }

  .md\:w-6\/12 {
    width: 50%;
  }

  .md\:w-9\/12 {
    width: 75%;
  }

  .md\:w-11\/12 {
    width: 91.666667%;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:w-full-28 {
    width: -webkit-calc(100% + 28px);
    width: calc(100% + 28px);
  }
}

@media (max-width: 1023px) {
  .sm\:bg-white {
    --bg-opacity: 1;
    background-color: #fcfcfc;
    background-color: rgba(252, 252, 252, var(--bg-opacity));
  }

  .sm\:children\:border-gray-brown-dark-o-50 > * {
    border-color: rgba(156, 149, 139, 0.5);
  }

  .sm\:children\:border-b > * {
    border-bottom-width: 1px;
  }

  .sm\:block {
    display: block;
  }

  .sm\:flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sm\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .sm\:flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .sm\:items-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .sm\:justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .sm\:order-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .sm\:order-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .sm\:order-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }

  .sm\:h-96 {
    height: 96px;
  }

  .sm\:h-128 {
    height: 128px;
  }

  .sm\:h-auto {
    height: auto;
  }

  .sm\:h-full {
    height: 100%;
  }

  .sm\:h-66vw {
    height: 66vw;
  }

  .sm\:text-16 {
    font-size: 16px;
  }

  .sm\:text-20 {
    font-size: 20px;
  }

  .sm\:text-24 {
    font-size: 24px;
  }

  .sm\:text-32 {
    font-size: 32px;
  }

  .sm\:text-40 {
    font-size: 40px;
  }

  .sm\:text-48 {
    font-size: 48px;
  }

  .sm\:leading-sm {
    line-height: 1.25em;
  }

  .sm\:children\:mx-0 > * {
    margin-left: 0;
    margin-right: 0;
  }

  .sm\:children\:mb-0 > * {
    margin-bottom: 0;
  }

  .sm\:m-0 {
    margin: 0;
  }

  .sm\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .sm\:my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:-mx-10 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .sm\:mt-0 {
    margin-top: 0;
  }

  .sm\:mr-0 {
    margin-right: 0;
  }

  .sm\:mb-0 {
    margin-bottom: 0;
  }

  .sm\:ml-0 {
    margin-left: 0;
  }

  .sm\:mt-12 {
    margin-top: 12px;
  }

  .sm\:mr-12 {
    margin-right: 12px;
  }

  .sm\:mb-16 {
    margin-bottom: 16px;
  }

  .sm\:mt-24 {
    margin-top: 24px;
  }

  .sm\:mb-24 {
    margin-bottom: 24px;
  }

  .sm\:mt-32 {
    margin-top: 32px;
  }

  .sm\:mb-32 {
    margin-bottom: 32px;
  }

  .sm\:mt-40 {
    margin-top: 40px;
  }

  .sm\:mb-40 {
    margin-bottom: 40px;
  }

  .sm\:mb-60 {
    margin-bottom: 60px;
  }

  .sm\:mb-64 {
    margin-bottom: 64px;
  }

  .sm\:mt-80 {
    margin-top: 80px;
  }

  .sm\:mb-80 {
    margin-bottom: 80px;
  }

  .sm\:mt-148 {
    margin-top: 148px;
  }

  .sm\:-mt-40 {
    margin-top: -40px;
  }

  .sm\:-mt-56 {
    margin-top: -56px;
  }

  .sm\:-mb-64 {
    margin-bottom: -64px;
  }

  .sm\:-mt-80 {
    margin-top: -80px;
  }

  .sm\:-mb-80 {
    margin-bottom: -80px;
  }

  .sm\:max-h-none {
    max-height: none;
  }

  .sm\:max-w-554 {
    max-width: 554px;
  }

  .sm\:max-w-full {
    max-width: 100%;
  }

  .sm\:max-w-map-select {
    max-width: -webkit-calc(40% - 12px);
    max-width: calc(40% - 12px);
  }

  .sm\:min-h-0 {
    min-height: 0;
  }

  .sm\:min-h-auto {
    min-height: auto;
  }

  .sm\:min-h-47vh {
    min-height: 47vh;
  }

  .sm\:min-w-96 {
    min-width: 96px;
  }

  .sm\:children\:pr-0 > * {
    padding-right: 0;
  }

  .sm\:p-0 {
    padding: 0;
  }

  .sm\:p-16 {
    padding: 16px;
  }

  .sm\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm\:py-12 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .sm\:px-12 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .sm\:px-16 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sm\:py-24 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .sm\:px-28 {
    padding-left: 28px;
    padding-right: 28px;
  }

  .sm\:py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sm\:px-64 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .sm\:py-96 {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .sm\:pt-0 {
    padding-top: 0;
  }

  .sm\:pr-0 {
    padding-right: 0;
  }

  .sm\:pb-0 {
    padding-bottom: 0;
  }

  .sm\:pl-0 {
    padding-left: 0;
  }

  .sm\:pr-12 {
    padding-right: 12px;
  }

  .sm\:pl-12 {
    padding-left: 12px;
  }

  .sm\:pt-16 {
    padding-top: 16px;
  }

  .sm\:pr-20 {
    padding-right: 20px;
  }

  .sm\:pl-20 {
    padding-left: 20px;
  }

  .sm\:pt-24 {
    padding-top: 24px;
  }

  .sm\:pb-24 {
    padding-bottom: 24px;
  }

  .sm\:pl-24 {
    padding-left: 24px;
  }

  .sm\:pt-28 {
    padding-top: 28px;
  }

  .sm\:pb-32 {
    padding-bottom: 32px;
  }

  .sm\:pt-40 {
    padding-top: 40px;
  }

  .sm\:pb-40 {
    padding-bottom: 40px;
  }

  .sm\:pt-64 {
    padding-top: 64px;
  }

  .sm\:pb-80 {
    padding-bottom: 80px;
  }

  .sm\:pt-96 {
    padding-top: 96px;
  }

  .sm\:pt-148 {
    padding-top: 148px;
  }

  .sm\:static {
    position: static;
  }

  .sm\:absolute {
    position: absolute;
  }

  .sm\:relative {
    position: relative;
  }

  .sm\:top-0 {
    top: 0;
  }

  .sm\:right-0 {
    right: 0;
  }

  .sm\:left-0 {
    left: 0;
  }

  .sm\:top-8 {
    top: 8px;
  }

  .sm\:right-8 {
    right: 8px;
  }

  .sm\:left-20 {
    left: 20px;
  }

  .sm\:bottom-28 {
    bottom: 28px;
  }

  .sm\:top-96 {
    top: 96px;
  }

  .sm\:fill-black {
    fill: #1d1d1b;
  }

  .sm\:text-left {
    text-align: left;
  }

  .sm\:children\:w-full > * {
    width: 100%;
  }

  .sm\:w-96 {
    width: 96px;
  }

  .sm\:w-1\/2 {
    width: 50%;
  }

  .sm\:w-1\/3 {
    width: 33.333333%;
  }

  .sm\:w-2\/5 {
    width: 40%;
  }

  .sm\:w-3\/5 {
    width: 60%;
  }

  .sm\:w-5\/12 {
    width: 41.666667%;
  }

  .sm\:w-7\/12 {
    width: 58.333333%;
  }

  .sm\:w-8\/12 {
    width: 66.666667%;
  }

  .sm\:w-9\/12 {
    width: 75%;
  }

  .sm\:w-10\/12 {
    width: 83.333333%;
  }

  .sm\:w-11\/12 {
    width: 91.666667%;
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:w-full-20 {
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 20px);
  }
}

@media (max-width: 767px) {
  .xs\:block {
    display: block;
  }

  .xs\:flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .xs\:hidden {
    display: none;
  }

  .xs\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .xs\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .xs\:flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .xs\:items-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .xs\:justify-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .xs\:justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .xs\:order-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .xs\:order-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .xs\:order-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }

  .xs\:order-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }

  .xs\:order-first {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  .xs\:h-40 {
    height: 40px;
  }

  .xs\:h-80 {
    height: 80px;
  }

  .xs\:h-auto {
    height: auto;
  }

  .xs\:h-full {
    height: 100%;
  }

  .xs\:text-16 {
    font-size: 16px;
  }

  .xs\:text-20 {
    font-size: 20px;
  }

  .xs\:text-24 {
    font-size: 24px;
  }

  .xs\:text-32 {
    font-size: 32px;
  }

  .xs\:text-40 {
    font-size: 40px;
  }

  .xs\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .xs\:my-12 {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .xs\:my-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .xs\:my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .xs\:-my-20 {
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .xs\:mt-0 {
    margin-top: 0;
  }

  .xs\:mr-0 {
    margin-right: 0;
  }

  .xs\:mb-0 {
    margin-bottom: 0;
  }

  .xs\:ml-0 {
    margin-left: 0;
  }

  .xs\:mt-8 {
    margin-top: 8px;
  }

  .xs\:mt-16 {
    margin-top: 16px;
  }

  .xs\:mb-16 {
    margin-bottom: 16px;
  }

  .xs\:mt-20 {
    margin-top: 20px;
  }

  .xs\:mt-24 {
    margin-top: 24px;
  }

  .xs\:mb-24 {
    margin-bottom: 24px;
  }

  .xs\:mt-32 {
    margin-top: 32px;
  }

  .xs\:mb-32 {
    margin-bottom: 32px;
  }

  .xs\:mt-40 {
    margin-top: 40px;
  }

  .xs\:mb-40 {
    margin-bottom: 40px;
  }

  .xs\:mb-48 {
    margin-bottom: 48px;
  }

  .xs\:mt-50 {
    margin-top: 50px;
  }

  .xs\:mb-64 {
    margin-bottom: 64px;
  }

  .xs\:mb-80 {
    margin-bottom: 80px;
  }

  .xs\:mr-auto {
    margin-right: auto;
  }

  .xs\:-mb-16 {
    margin-bottom: -16px;
  }

  .xs\:-mt-72 {
    margin-top: -72px;
  }

  .xs\:-mt-80 {
    margin-top: -80px;
  }

  .xs\:children\:not-last\:mr-0 > :not(:last-child) {
    margin-right: 0;
  }

  .xs\:children\:not-last\:mb-40 > :not(:last-child) {
    margin-bottom: 40px;
  }

  .xs\:max-h-400 {
    max-height: 400px;
  }

  .xs\:max-w-140 {
    max-width: 140px;
  }

  .xs\:max-w-340 {
    max-width: 340px;
  }

  .xs\:max-w-full {
    max-width: 100%;
  }

  .xs\:min-h-40 {
    min-height: 40px;
  }

  .xs\:min-h-80 {
    min-height: 80px;
  }

  .xs\:min-h-172 {
    min-height: 172px;
  }

  .xs\:min-h-full {
    min-height: 100%;
  }

  .xs\:min-h-50vw {
    min-height: 50vw;
  }

  .xs\:p-0 {
    padding: 0;
  }

  .xs\:p-12 {
    padding: 12px;
  }

  .xs\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .xs\:py-32 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .xs\:px-32 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .xs\:py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .xs\:px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .xs\:py-64 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .xs\:py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .xs\:pt-0 {
    padding-top: 0;
  }

  .xs\:pr-0 {
    padding-right: 0;
  }

  .xs\:pb-0 {
    padding-bottom: 0;
  }

  .xs\:pl-0 {
    padding-left: 0;
  }

  .xs\:pt-16 {
    padding-top: 16px;
  }

  .xs\:pr-24 {
    padding-right: 24px;
  }

  .xs\:pl-24 {
    padding-left: 24px;
  }

  .xs\:pr-32 {
    padding-right: 32px;
  }

  .xs\:pt-40 {
    padding-top: 40px;
  }

  .xs\:pb-40 {
    padding-bottom: 40px;
  }

  .xs\:pt-80 {
    padding-top: 80px;
  }

  .xs\:pt-160 {
    padding-top: 160px;
  }

  .xs\:pt-1\/1 {
    padding-top: 100%;
  }

  .xs\:relative {
    position: relative;
  }

  .xs\:left-12 {
    left: 12px;
  }

  .xs\:bottom-20 {
    bottom: 20px;
  }

  .xs\:top-80 {
    top: 80px;
  }

  .xs\:right-auto {
    right: auto;
  }

  .xs\:bottom-auto {
    bottom: auto;
  }

  .xs\:text-center {
    text-align: center;
  }

  .xs\:w-80 {
    width: 80px;
  }

  .xs\:w-160 {
    width: 160px;
  }

  .xs\:w-4\/12 {
    width: 33.333333%;
  }

  .xs\:w-5\/12 {
    width: 41.666667%;
  }

  .xs\:w-8\/12 {
    width: 66.666667%;
  }

  .xs\:w-9\/12 {
    width: 75%;
  }

  .xs\:w-10\/12 {
    width: 83.333333%;
  }

  .xs\:w-full {
    width: 100%;
  }
}

@media (max-width: 639px) {
  .\32xs\:block {
    display: block;
  }

  .\32xs\:hidden {
    display: none;
  }

  .\32xs\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .\32xs\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .\32xs\:flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .\32xs\:items-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .\32xs\:justify-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .\32xs\:justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .\32xs\:justify-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .\32xs\:order-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .\32xs\:order-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .\32xs\:order-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }

  .\32xs\:order-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }

  .\32xs\:order-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }

  .\32xs\:order-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }

  .\32xs\:h-56 {
    height: 56px;
  }

  .\32xs\:h-96 {
    height: 96px;
  }

  .\32xs\:h-148 {
    height: 148px;
  }

  .\32xs\:h-172 {
    height: 172px;
  }

  .\32xs\:h-auto {
    height: auto;
  }

  .\32xs\:text-14 {
    font-size: 14.5px;
  }

  .\32xs\:text-20 {
    font-size: 20px;
  }

  .\32xs\:text-24 {
    font-size: 24px;
  }

  .\32xs\:text-28 {
    font-size: 28px;
  }

  .\32xs\:text-48 {
    font-size: 48px;
  }

  .\32xs\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .\32xs\:mt-0 {
    margin-top: 0;
  }

  .\32xs\:mr-0 {
    margin-right: 0;
  }

  .\32xs\:ml-0 {
    margin-left: 0;
  }

  .\32xs\:mt-8 {
    margin-top: 8px;
  }

  .\32xs\:mt-12 {
    margin-top: 12px;
  }

  .\32xs\:mt-16 {
    margin-top: 16px;
  }

  .\32xs\:mb-16 {
    margin-bottom: 16px;
  }

  .\32xs\:mb-18 {
    margin-bottom: 18px;
  }

  .\32xs\:mb-20 {
    margin-bottom: 20px;
  }

  .\32xs\:mt-24 {
    margin-top: 24px;
  }

  .\32xs\:mb-24 {
    margin-bottom: 24px;
  }

  .\32xs\:mb-32 {
    margin-bottom: 32px;
  }

  .\32xs\:mt-40 {
    margin-top: 40px;
  }

  .\32xs\:mt-48 {
    margin-top: 48px;
  }

  .\32xs\:mb-48 {
    margin-bottom: 48px;
  }

  .\32xs\:mb-56 {
    margin-bottom: 56px;
  }

  .\32xs\:ml-auto {
    margin-left: auto;
  }

  .\32xs\:-mt-96 {
    margin-top: -96px;
  }

  .\32xs\:max-h-250 {
    max-height: 250px;
  }

  .\32xs\:max-w-200 {
    max-width: 200px;
  }

  .\32xs\:min-h-0 {
    min-height: 0;
  }

  .\32xs\:min-h-240 {
    min-height: 240px;
  }

  .\32xs\:px-16 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .\32xs\:px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .\32xs\:py-24 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .\32xs\:px-24 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .\32xs\:py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .\32xs\:px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .\32xs\:pr-0 {
    padding-right: 0;
  }

  .\32xs\:pb-0 {
    padding-bottom: 0;
  }

  .\32xs\:pl-0 {
    padding-left: 0;
  }

  .\32xs\:pl-8 {
    padding-left: 8px;
  }

  .\32xs\:pt-16 {
    padding-top: 16px;
  }

  .\32xs\:pr-16 {
    padding-right: 16px;
  }

  .\32xs\:pl-16 {
    padding-left: 16px;
  }

  .\32xs\:pt-24 {
    padding-top: 24px;
  }

  .\32xs\:pb-24 {
    padding-bottom: 24px;
  }

  .\32xs\:pt-32 {
    padding-top: 32px;
  }

  .\32xs\:pb-40 {
    padding-bottom: 40px;
  }

  .\32xs\:pt-96 {
    padding-top: 96px;
  }

  .\32xs\:pb-148 {
    padding-bottom: 148px;
  }

  .\32xs\:top-96 {
    top: 96px;
  }

  .\32xs\:text-center {
    text-align: center;
  }

  .\32xs\:whitespace-normal {
    white-space: normal;
  }

  .\32xs\:w-96 {
    width: 96px;
  }

  .\32xs\:w-192 {
    width: 192px;
  }

  .\32xs\:w-auto {
    width: auto;
  }

  .\32xs\:w-3\/4 {
    width: 75%;
  }

  .\32xs\:w-8\/12 {
    width: 66.666667%;
  }

  .\32xs\:w-9\/12 {
    width: 75%;
  }

  .\32xs\:w-10\/12 {
    width: 83.333333%;
  }

  .\32xs\:w-11\/12 {
    width: 91.666667%;
  }

  .\32xs\:w-full {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .\33xs\:text-12 {
    font-size: 12px;
  }

  .\33xs\:text-16 {
    font-size: 16px;
  }

  .\33xs\:mx-6 {
    margin-left: 6px;
    margin-right: 6px;
  }

  .\33xs\:-mx-6 {
    margin-left: -6px;
    margin-right: -6px;
  }

  .\33xs\:mt-0 {
    margin-top: 0;
  }

  .\33xs\:mb-48 {
    margin-bottom: 48px;
  }

  .\33xs\:max-h-140 {
    max-height: 140px;
  }

  .\33xs\:max-w-90 {
    max-width: 90px;
  }

  .\33xs\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .\33xs\:px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .\33xs\:py-48 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .\33xs\:pb-28 {
    padding-bottom: 28px;
  }

  .\33xs\:pt-18\/10 {
    padding-top: 180%;
  }

  .\33xs\:top-32 {
    top: 32px;
  }
}

@media (max-width: 360px) {
  .\34xs\:max-w-150 {
    max-width: 150px;
  }
}

/*!
 * froala_editor v3.1.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2020 Froala Labs
 */
.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-img-caption.fr-rounded img,
img.fr-rounded {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-img-caption.fr-bordered img,
img.fr-bordered {
  border: solid 5px #ccc;
}
img.fr-bordered {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.fr-img-caption.fr-bordered img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fr-view {
  word-wrap: break-word;
}
.fr-view span[style~="color:"] a {
  color: inherit;
}
.fr-view strong {
  font-weight: 700;
}
.fr-view table {
  border: none;
  border-collapse: collapse;
  empty-cells: show;
  max-width: 100%;
}
.fr-view table td {
  min-width: 5px;
}
.fr-view table.fr-dashed-borders td,
.fr-view table.fr-dashed-borders th {
  border-style: dashed;
}
.fr-view table.fr-alternate-rows tbody tr:nth-child(2n) {
  background: #f5f5f5;
}
.fr-view table td,
.fr-view table th {
  border: 1px solid #ddd;
}
.fr-view table td:empty,
.fr-view table th:empty {
  height: 20px;
}
.fr-view table td.fr-highlighted,
.fr-view table th.fr-highlighted {
  border: 1px double red;
}
.fr-view table td.fr-thick,
.fr-view table th.fr-thick {
  border-width: 2px;
}
.fr-view table th {
  background: #ececec;
}
.fr-view hr {
  clear: both;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  break-after: always;
  page-break-after: always;
}
.fr-view .fr-file {
  position: relative;
}
.fr-view .fr-file::after {
  position: relative;
  content: "\1F4CE";
  font-weight: 400;
}
.fr-view pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: visible;
}
.fr-view[dir="rtl"] blockquote {
  border-left: none;
  border-right: solid 2px #5e35b1;
  margin-right: 0;
  padding-right: 5px;
  padding-left: 0;
}
.fr-view[dir="rtl"] blockquote blockquote {
  border-color: #00bcd4;
}
.fr-view[dir="rtl"] blockquote blockquote blockquote {
  border-color: #43a047;
}
.fr-view blockquote {
  border-left: solid 2px #5e35b1;
  margin-left: 0;
  padding-left: 5px;
  color: #5e35b1;
}
.fr-view blockquote blockquote {
  border-color: #00bcd4;
  color: #00bcd4;
}
.fr-view blockquote blockquote blockquote {
  border-color: #43a047;
  color: #43a047;
}
.fr-view span.fr-emoticon {
  font-weight: 400;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji,
    "Segoe UI Symbol", "Android Emoji", EmojiSymbols;
  display: inline;
  line-height: 0;
}
.fr-view span.fr-emoticon.fr-emoticon-img {
  background-repeat: no-repeat !important;
  font-size: inherit;
  height: 1em;
  width: 1em;
  min-height: 20px;
  min-width: 20px;
  display: inline-block;
  margin: -0.1em 0.1em 0.1em;
  line-height: 1;
  vertical-align: middle;
}
.fr-view .fr-text-gray {
  color: #aaa !important;
}
.fr-view .fr-text-bordered {
  border-top: solid 1px #222;
  border-bottom: solid 1px #222;
  padding: 10px 0;
}
.fr-view .fr-text-spaced {
  letter-spacing: 1px;
}
.fr-view .fr-text-uppercase {
  text-transform: uppercase;
}
.fr-view .fr-class-highlighted {
  background-color: #ff0;
}
.fr-view .fr-class-code {
  border-color: #ccc;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #f5f5f5;
  padding: 10px;
  font-family: "Courier New", Courier, monospace;
}
.fr-view .fr-class-transparency {
  opacity: 0.5;
}
.fr-view img {
  position: relative;
  max-width: 100%;
}
.fr-view img.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}
.fr-view img.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}
.fr-view img.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}
.fr-view img.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
}
.fr-view img.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}
.fr-view img.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}
.fr-view span.fr-img-caption {
  position: relative;
  max-width: 100%;
}
.fr-view span.fr-img-caption.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}
.fr-view span.fr-img-caption.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}
.fr-view span.fr-img-caption.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}
.fr-view span.fr-img-caption.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
}
.fr-view span.fr-img-caption.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}
.fr-view span.fr-img-caption.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}
.fr-view .fr-video {
  text-align: center;
  position: relative;
}
.fr-view .fr-video.fr-rv {
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.fr-view .fr-video.fr-rv embed,
.fr-view .fr-video.fr-rv object,
.fr-view .fr-video.fr-rv > iframe {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fr-view .fr-video > * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 100%;
  border: none;
}
.fr-view .fr-video.fr-dvb {
  display: block;
  clear: both;
}
.fr-view .fr-video.fr-dvb.fr-fvl {
  text-align: left;
}
.fr-view .fr-video.fr-dvb.fr-fvr {
  text-align: right;
}
.fr-view .fr-video.fr-dvi {
  display: inline-block;
}
.fr-view .fr-video.fr-dvi.fr-fvl {
  float: left;
}
.fr-view .fr-video.fr-dvi.fr-fvr {
  float: right;
}
.fr-view a.fr-strong {
  font-weight: 700;
}
.fr-view a.fr-green {
  color: green;
}
.fr-view .fr-img-caption {
  text-align: center;
}
.fr-view .fr-img-caption .fr-img-wrap {
  padding: 0;
  margin: auto;
  text-align: center;
  width: 100%;
}
.fr-view .fr-img-caption .fr-img-wrap img {
  display: block;
  margin: auto;
  width: 100%;
}
.fr-view .fr-img-caption .fr-img-wrap > span {
  margin: auto;
  display: block;
  padding: 5px 5px 10px;
  font-size: 14px;
  font-weight: initial;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  width: 100%;
  text-align: center;
}
.fr-view button.fr-rounded,
.fr-view input.fr-rounded,
.fr-view textarea.fr-rounded {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-view button.fr-large,
.fr-view input.fr-large,
.fr-view textarea.fr-large {
  font-size: 24px;
}
a.fr-view.fr-strong {
  font-weight: 700;
}
a.fr-view.fr-green {
  color: green;
}
img.fr-view {
  position: relative;
  max-width: 100%;
}
img.fr-view.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}
img.fr-view.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}
img.fr-view.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}
img.fr-view.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
}
img.fr-view.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}
img.fr-view.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}
span.fr-img-caption.fr-view {
  position: relative;
  max-width: 100%;
}
span.fr-img-caption.fr-view.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}
span.fr-img-caption.fr-view.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}
span.fr-img-caption.fr-view.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}
span.fr-img-caption.fr-view.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
}
span.fr-img-caption.fr-view.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}
span.fr-img-caption.fr-view.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}
.lfc-modal-dialog-button {
  margin-bottom: 10px;
}

.lfc-list {
  margin-top: 5px;
}

.lfc-list-item {
  margin-bottom: 5px;
}

.lfc-list-item:last-of-type {
  margin-bottom: 10px;
}
