﻿@charset "UTF-8";
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg); }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg); }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg); } }

@-webkit-keyframes shine {
  100% {
    left: 125%; } }

@keyframes shine {
  100% {
    left: 125%; } }

@font-face {
  font-family: tktype;
  font-style: normal;
  font-weight: 200;
  font-display: block;
  src: url(/content/font/TKEType-Light.otf) format("opentype"); }

@font-face {
  font-family: tktype;
  font-style: italic;
  font-weight: 200;
  font-display: block;
  src: url(/content/font/TKEType-LightItalic.otf) format("opentype"); }

@font-face {
  font-family: tktype;
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url(/content/font/TKEType-Book.otf) format("opentype"); }

@font-face {
  font-family: tktype;
  font-style: italic;
  font-weight: 300;
  font-display: block;
  src: url(/content/font/TKEType-BookItalic.otf) format("opentype"); }

@font-face {
  font-family: tktype;
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/content/font/TKEType-Regular.otf) format("opentype"); }

@font-face {
  font-family: tktype;
  font-style: italic;
  font-weight: 400;
  font-display: block;
  src: url(/content/font/TKEType-RegularItalic.otf) format("opentype"); }

@font-face {
  font-family: tktype;
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url(/content/font/TKEType-Medium.otf) format("opentype"); }

@font-face {
  font-family: tktype;
  font-style: italic;
  font-weight: 500;
  font-display: block;
  src: url(/content/font/TKEType-MediumItalic.otf) format("opentype"); }

@font-face {
  font-family: tktype;
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url(/content/font/TKEType-Bold.otf) format("opentype"); }

@font-face {
  font-family: tktype;
  font-style: italic;
  font-weight: 700;
  font-display: block;
  src: url(/content/font/TKEType-BoldItalic.otf) format("opentype"); }

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
body {
  margin: 0;
  padding: 0;
  font-family: tktype;
  scroll-behavior: smooth; }

.btn {
  padding: 10px 25px;
  color: #fff;
  background-color: #7000BD;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  text-indent: 0px; }
  .btn.arrow:after {
    content: '';
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    width: 26px;
    height: 14px;
    background-image: url("../images/arrow-left.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
  .btn.arrow:empty:after {
    margin-left: 0px; }
  .btn.arrow.back:after {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1); }
  .btn.arrow.up:after {
    width: 12px;
    height: 12px;
    background-image: url("../images/arrow-white-up.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
  .btn:hover {
    background-color: #A31AFF; }

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

.hidden {
  opacity: 0;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all; }
  .hidden.show {
    opacity: 1; }

.wrapper {
  min-height: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .wrapper #app {
    position: relative;
    background-color: #fff;
    z-index: 1;
    flex-grow: 1; }
    .wrapper #app:before {
      content: ' ';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      background-image: url("../images/homepageImage.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      background-color: rgba(255, 255, 255, 0.5);
      background-size: cover;
      -webkit-transition: 0.3s all;
      -o-transition: 0.3s all;
      transition: 0.3s all; }
    .wrapper #app .left-panel {
      background-color: #1A1A1A;
      color: #fff;
      position: absolute;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      top: 0;
      left: 0;
      bottom: 0;
      min-width: 00px;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      right: calc(100% - 330px);
      padding: 100px 0 40px calc( 2 * 40px);
      width: auto;
      -webkit-transition: 0.3s all;
      -o-transition: 0.3s all;
      transition: 0.3s all;
      z-index: 1; }
      .wrapper #app .left-panel .header {
        height: 400px;
        background-image: url("../images/homepageImage.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 210%;
        -webkit-transition: 0.3s all;
        -o-transition: 0.3s all;
        transition: 0.3s all;
        margin: 0px;
        justify-content: flex-end;
        padding: 0 15px; }
        .wrapper #app .left-panel .header.collapse {
          background-size: 100%;
          height: 60px; }
        .wrapper #app .left-panel .header .hamburger-menu {
          display: none; }
          .wrapper #app .left-panel .header .hamburger-menu .menu {
            position: absolute;
            top: 0;
            margin: 60px 0 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            height: 0;
            transition: 0.3s all;
            opacity: 0;
            z-index: -1;
            overflow: hidden; }
            .wrapper #app .left-panel .header .hamburger-menu .menu ul {
              display: flex;
              list-style-type: none;
              padding: 0;
              margin: 0;
              flex-direction: column;
              justify-content: center;
              align-items: center;
              width: 100%; }
              .wrapper #app .left-panel .header .hamburger-menu .menu ul > li {
                overflow: hidden;
                justify-content: center;
                margin: 0;
                padding: 10px 35px;
                width: 100%;
                color: #1A1A1A;
                background-color: #fff;
                box-sizing: border-box; }
                .wrapper #app .left-panel .header .hamburger-menu .menu ul > li h3 {
                  margin: 0;
                  text-transform: uppercase;
                  display: block;
                  font-size: 16px;
                  line-height: 21px;
                  font-weight: 700;
                  position: relative; }
                  .wrapper #app .left-panel .header .hamburger-menu .menu ul > li h3:after {
                    content: '';
                    top: 50%;
                    right: 00px;
                    width: 10px;
                    height: 10px;
                    position: absolute;
                    transition: 0.3s all;
                    transform: translateY(-50%) rotate(45deg);
                    border-right: 1.6px solid #1A1A1A;
                    border-top: 1.6px solid #1A1A1A; }
                .wrapper #app .left-panel .header .hamburger-menu .menu ul > li p {
                  margin: 6px 0;
                  font-size: 14px;
                  line-height: 19px;
                  font-weight: 300; }
                .wrapper #app .left-panel .header .hamburger-menu .menu ul > li.active {
                  color: #7000BD; }
                  .wrapper #app .left-panel .header .hamburger-menu .menu ul > li.active h3:after {
                    border-right: 2px solid #7000BD;
                    border-top: 2px solid #7000BD; }
                .wrapper #app .left-panel .header .hamburger-menu .menu ul > li:first-child {
                  background-color: #F4F4F4;
                  color: #666666;
                  font-size: 14px;
                  line-height: 18px;
                  font-weight: 300; }
          .wrapper #app .left-panel .header .hamburger-menu .menu-button-container {
            height: 100%;
            width: 30px;
            cursor: pointer;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            display: flex; }
            .wrapper #app .left-panel .header .hamburger-menu .menu-button-container .menu-button,
            .wrapper #app .left-panel .header .hamburger-menu .menu-button-container .menu-button::before,
            .wrapper #app .left-panel .header .hamburger-menu .menu-button-container .menu-button::after {
              display: block;
              background-color: #fff;
              position: absolute;
              height: 2px;
              width: 20px;
              transition: 0.3s all; }
            .wrapper #app .left-panel .header .hamburger-menu .menu-button-container .menu-button:before {
              content: '';
              margin-top: -6px; }
            .wrapper #app .left-panel .header .hamburger-menu .menu-button-container .menu-button:after {
              content: '';
              margin-top: 6px; }
          .wrapper #app .left-panel .header .hamburger-menu #menu-toggle {
            display: none; }
            .wrapper #app .left-panel .header .hamburger-menu #menu-toggle:checked ~ .menu {
              opacity: 1;
              height: calc(100vh - 60px);
              z-index: 100;
              transition: 0.3s all; }
            .wrapper #app .left-panel .header .hamburger-menu #menu-toggle:checked + .menu-button-container .menu-button {
              background: rgba(255, 255, 255, 0); }
              .wrapper #app .left-panel .header .hamburger-menu #menu-toggle:checked + .menu-button-container .menu-button:before {
                margin-top: 0px;
                transform: rotate(45deg); }
              .wrapper #app .left-panel .header .hamburger-menu #menu-toggle:checked + .menu-button-container .menu-button:after {
                margin-top: 0px;
                transform: rotate(-45deg); }
      .wrapper #app .left-panel .intro {
        -webkit-transition: 0.3s all;
        -o-transition: 0.3s all;
        transition: 0.3s all;
        z-index: 1; }
        .wrapper #app .left-panel .intro h3 {
          font-weight: 200;
          font-size: 00px;
          margin: 0px 0 00px;
          -webkit-transition: 0.3s all;
          -o-transition: 0.3s all;
          transition: 0.3s all;
          text-transform: uppercase; }
        .wrapper #app .left-panel .intro p {
          margin: 0;
          font-size: 00px;
          font-weight: 500;
          -webkit-transition: 0.3s all;
          -o-transition: 0.3s all;
          transition: 0.3s all;
          line-height: 0px; }
          .wrapper #app .left-panel .intro p.buttons {
            margin-top: 0px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between; }
            .wrapper #app .left-panel .intro p.buttons.space {
              gap: 10px; }
              .wrapper #app .left-panel .intro p.buttons.space a.arrow span {
                margin-right: 10px; }
              .wrapper #app .left-panel .intro p.buttons.space a.arrow:after {
                margin-left: 0; }
            .wrapper #app .left-panel .intro p.buttons a {
              display: none; }
        .wrapper #app .left-panel .intro:before, .wrapper #app .left-panel .intro:after {
          content: '';
          display: block;
          position: absolute;
          right: 0px;
          top: 0px;
          -webkit-transition: 0.3s all;
          -o-transition: 0.3s all;
          transition: 0.3s all; }
        .wrapper #app .left-panel .intro:before {
          height: 00px;
          width: 150px;
          background: --webkit-gradient(linear, left top, right top, from(#7000BD), color-stop(75%, #F16B08));
          background: -o-linear-gradient(left, #7000BD, #F16B08 75%);
          background: linear-gradient(0.25turn, #7000BD, #F16B08 75%); }
        .wrapper #app .left-panel .intro:after {
          height: 150px;
          width: 0px;
          background: --webkit-gradient(linear, left top, left bottom, color-stop(25%, #F16B08), to(#7000BD));
          background: -o-linear-gradient(#F16B08 25%, #7000BD);
          background: linear-gradient(#F16B08 25%, #7000BD); }
      .wrapper #app .left-panel .menu-container .menu {
        opacity: 1;
        -webkit-transition: 0.3s all;
        -o-transition: 0.3s all;
        transition: 0.3s all;
        margin-top: 40px; }
        .wrapper #app .left-panel .menu-container .menu ul {
          list-style-type: none;
          margin: 0;
          padding: 0;
          color: lightgray;
          position: relative; }
          .wrapper #app .left-panel .menu-container .menu ul li {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            margin: 20px 0;
            background-color: #484848;
            color: #6A6A6A;
            padding: 15px;
            cursor: pointer;
            opacity: 1;
            -webkit-transition: 0.3s all;
            -o-transition: 0.3s all;
            transition: 0.3s all; }
            @media only screen and (max-height: 767px) {
              .wrapper #app .left-panel .menu-container .menu ul li {
                margin: 10px 0;
                padding: 10px 15px; } }
            .wrapper #app .left-panel .menu-container .menu ul li img {
              width: 50px;
              height: 50px;
              margin-right: 10px;
              -webkit-filter: invert(33%) sepia(0%) saturate(0%) hue-rotate(207deg) brightness(95%) contrast(99%);
              filter: invert(33%) sepia(0%) saturate(0%) hue-rotate(207deg) brightness(95%) contrast(99%);
              -webkit-transition: 0.3s all;
              -o-transition: 0.3s all;
              transition: 0.3s all; }
            .wrapper #app .left-panel .menu-container .menu ul li h4, .wrapper #app .left-panel .menu-container .menu ul li p {
              margin: 0; }
            .wrapper #app .left-panel .menu-container .menu ul li h4 {
              text-transform: uppercase;
              font-size: 12px;
              font-weight: 700; }
            .wrapper #app .left-panel .menu-container .menu ul li p {
              font-size: 14px; }
            .wrapper #app .left-panel .menu-container .menu ul li .header {
              position: absolute;
              bottom: 100%;
              padding: 20px 0;
              opacity: 0;
              left: 0;
              color: white;
              text-transform: uppercase;
              -webkit-transition: 0.3s all;
              -o-transition: 0.3s all;
              transition: 0.3s all; }
            .wrapper #app .left-panel .menu-container .menu ul li.done {
              background-color: #BBBBBB; }
              .wrapper #app .left-panel .menu-container .menu ul li.done img {
                -webkit-filter: invert(33%) sepia(0%) saturate(0%) hue-rotate(207deg) brightness(95%) contrast(99%);
                filter: invert(33%) sepia(0%) saturate(0%) hue-rotate(207deg) brightness(95%) contrast(99%); }
            .wrapper #app .left-panel .menu-container .menu ul li.active {
              background-color: white; }
              .wrapper #app .left-panel .menu-container .menu ul li.active img {
                -webkit-filter: initial;
                filter: initial; }
              .wrapper #app .left-panel .menu-container .menu ul li.active .header {
                opacity: 1; }
        .wrapper #app .left-panel .menu-container .menu #steps > h4 {
          text-transform: uppercase;
          margin: 60px 0 20px;
          font-size: 16px;
          line-height: 18px;
          font-weight: 700; }
          @media only screen and (max-height: 767px) {
            .wrapper #app .left-panel .menu-container .menu #steps > h4 {
              margin: 20px 0 20px; } }
      .wrapper #app .left-panel .menu-container .qr {
        position: absolute;
        bottom: calc(40px/2);
        right: 20px;
        left: calc(2 * 40px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        opacity: 1;
        -webkit-transition: 0.3s all;
        -o-transition: 0.3s all;
        transition: 0.3s all; }
        .wrapper #app .left-panel .menu-container .qr span {
          text-align: right;
          padding-right: 10px;
          font-size: 10px;
          -webkit-box-flex: 1;
          -ms-flex-positive: 1;
          flex-grow: 1; }
        .wrapper #app .left-panel .menu-container .qr .img {
          width: 100px;
          height: 100px;
          border: 1px solid #F16B08;
          background-image: url(../../Data/QR.png);
          background-size: 92px;
          background-position: center;
          background-repeat: no-repeat;
          -ms-flex-negative: 0;
          flex-shrink: 0; }
      @media only screen and (max-height: 767px) {
        .wrapper #app .left-panel {
          padding-top: 40px;
          padding-bottom: 20px; } }
    .wrapper #app .right-panel {
      position: absolute;
      top: 0;
      right: 0;
      left: 330px;
      bottom: 0;
      -webkit-transition: 0.3s all;
      -o-transition: 0.3s all;
      transition: 0.3s all; }
      .wrapper #app .right-panel .mode {
        margin: 50px calc(2 * 40px) 0px 0px;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: absolute;
        right: 0;
        top: 0;
        height: calc(100% - 50px);
        width: calc(100% - 15px - 2 * 40px);
        -webkit-transition: 0.3s all;
        -o-transition: 0.3s all;
        transition: 0.3s all;
        -webkit-transform-origin: top right;
        -ms-transform-origin: top right;
        transform-origin: top right;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1; }
        @media only screen and (max-height: 767px) {
          .wrapper #app .right-panel .mode {
            margin: 20px calc(2 * 40px) 0px 0px;
            height: calc(100% - 20px); } }
        .wrapper #app .right-panel .mode.deleted {
          opacity: 0;
          -webkit-transform: scale(0);
          -ms-transform: scale(0);
          transform: scale(0); }
        .wrapper #app .right-panel .mode .content {
          -webkit-box-flex: 1;
          -ms-flex-positive: 1;
          flex-grow: 1;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          margin-bottom: 30px; }
          .wrapper #app .right-panel .mode .content .steps {
            display: flex;
            gap: 10px;
            margin: 10px 0 0; }
            .wrapper #app .right-panel .mode .content .steps div {
              -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
              box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
              font-size: 12px;
              line-height: 38px;
              font-weight: 700;
              height: 32px;
              text-transform: uppercase;
              flex-grow: 0;
              text-align: left;
              padding: 0 10px;
              margin: auto;
              position: relative;
              color: #DDDDDD;
              background-color: #EDEDED; }
              .wrapper #app .right-panel .mode .content .steps div img {
                display: none;
                width: 20px;
                height: 20px;
                position: absolute;
                top: 50%;
                left: 10px;
                transform: translateY(-50%); }
              .wrapper #app .right-panel .mode .content .steps div.active {
                flex-grow: 1;
                padding-left: 40px;
                color: #1A1A1A;
                background-color: #fff; }
                .wrapper #app .right-panel .mode .content .steps div.active img {
                  display: inline-block; }
              .wrapper #app .right-panel .mode .content .steps div.done {
                color: #fff;
                background-color: #505050; }
          .wrapper #app .right-panel .mode .content .selector {
            margin-top: 10px; }
          .wrapper #app .right-panel .mode .content .owl-carousel {
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex; }
            .wrapper #app .right-panel .mode .content .owl-carousel .owl-stage-outer {
              margin-right: calc(-2 * 40px);
              -webkit-box-flex: 1;
              -ms-flex-positive: 1;
              flex-grow: 1; }
              .wrapper #app .right-panel .mode .content .owl-carousel .owl-stage-outer:after {
                content: '';
                display: block;
                position: absolute;
                right: 0;
                top: 0;
                bottom: 0;
                width: calc(2 * 40px);
                background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));
                background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), white);
                background-image: linear-gradient(to right, rgba(255, 255, 255, 0), white); }
              .wrapper #app .right-panel .mode .content .owl-carousel .owl-stage-outer .owl-stage {
                height: 100%; }
            .wrapper #app .right-panel .mode .content .owl-carousel .selector-item {
              height: 100%;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
              -ms-flex-direction: column;
              flex-direction: column;
              opacity: 0.4;
              /*@include shine();*/
              cursor: pointer; }
              .wrapper #app .right-panel .mode .content .owl-carousel .selector-item:hover {
                opacity: 1; }
              .wrapper #app .right-panel .mode .content .owl-carousel .selector-item .img {
                -webkit-box-flex: 1;
                -ms-flex-positive: 1;
                flex-grow: 1;
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
                position: relative;
                -webkit-transition: 0.3s all;
                -o-transition: 0.3s all;
                transition: 0.3s all; }
                .wrapper #app .right-panel .mode .content .owl-carousel .selector-item .img:before {
                  content: '';
                  display: block;
                  position: absolute;
                  left: 0;
                  top: 0;
                  width: 100%;
                  height: 100%;
                  opacity: 0;
                  border: 3px solid #F16B08;
                  -webkit-box-sizing: border-box;
                  box-sizing: border-box;
                  -webkit-transition: 0.3s all;
                  -o-transition: 0.3s all;
                  transition: 0.3s all; }
              .wrapper #app .right-panel .mode .content .owl-carousel .selector-item .title {
                padding: 0px 0;
                font-size: 16px;
                line-height: 18px;
                font-weight: 700;
                text-transform: uppercase; }
              .wrapper #app .right-panel .mode .content .owl-carousel .selector-item .details {
                min-height: 00px; }
                @media only screen and (max-height: 767px) {
                  .wrapper #app .right-panel .mode .content .owl-carousel .selector-item .details {
                    min-height: 00px; } }
                .wrapper #app .right-panel .mode .content .owl-carousel .selector-item .details .desc {
                  font-size: 14px;
                  line-height: 18px;
                  font-weight: 400; }
              .wrapper #app .right-panel .mode .content .owl-carousel .selector-item.active {
                opacity: 1; }
                .wrapper #app .right-panel .mode .content .owl-carousel .selector-item.active .img:before {
                  opacity: 1; }
            .wrapper #app .right-panel .mode .content .owl-carousel .owl-nav button {
              position: absolute;
              top: 50%;
              -webkit-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
              transform: translateY(-50%);
              width: 32px;
              height: 32px;
              border-radius: 50%;
              background-color: #7000BD;
              margin: 0;
              opacity: 1;
              -webkit-transition: 0.3s all;
              -o-transition: 0.3s all;
              transition: 0.3s all;
              -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
              box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15); }
              @media only screen and (max-height: 767px) {
                .wrapper #app .right-panel .mode .content .owl-carousel .owl-nav button {
                  top: 50%; } }
              .wrapper #app .right-panel .mode .content .owl-carousel .owl-nav button.disabled {
                opacity: 0; }
              .wrapper #app .right-panel .mode .content .owl-carousel .owl-nav button span {
                display: none; }
              .wrapper #app .right-panel .mode .content .owl-carousel .owl-nav button:after {
                content: '';
                display: block;
                width: 8px;
                height: 8px;
                border-top: 2px solid white;
                border-left: 2px solid white;
                margin: 0; }
              .wrapper #app .right-panel .mode .content .owl-carousel .owl-nav button.owl-prev {
                left: 20px; }
                .wrapper #app .right-panel .mode .content .owl-carousel .owl-nav button.owl-prev:after {
                  -webkit-transform: translateX(13px) rotate(-45deg);
                  -ms-transform: translateX(13px) rotate(-45deg);
                  transform: translateX(13px) rotate(-45deg); }
              .wrapper #app .right-panel .mode .content .owl-carousel .owl-nav button.owl-next {
                right: 20px; }
                .wrapper #app .right-panel .mode .content .owl-carousel .owl-nav button.owl-next:after {
                  -webkit-transform: translateX(8px) rotate(135deg);
                  -ms-transform: translateX(8px) rotate(135deg);
                  transform: translateX(8px) rotate(135deg); }
            .wrapper #app .right-panel .mode .content .owl-carousel.min-200 .selector-item .details {
              min-height: 200px; }
              @media only screen and (max-height: 767px) {
                .wrapper #app .right-panel .mode .content .owl-carousel.min-200 .selector-item .details {
                  min-height: 100px; } }
            .wrapper #app .right-panel .mode .content .owl-carousel.min-200 .owl-nav button {
              top: calc(50% - 100px); }
              @media only screen and (max-height: 767px) {
                .wrapper #app .right-panel .mode .content .owl-carousel.min-200 .owl-nav button {
                  top: calc(50% - 50px); } }
          .wrapper #app .right-panel .mode .content .columns {
            height: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-column-gap: 15px;
            -moz-column-gap: 15px;
            column-gap: 15px; }
            .wrapper #app .right-panel .mode .content .columns > div {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-flex: 1;
              -ms-flex: 1;
              flex: 1;
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
              -ms-flex-direction: column;
              flex-direction: column; }
              .wrapper #app .right-panel .mode .content .columns > div .prev-image {
                -webkit-box-flex: 1;
                -ms-flex-positive: 1;
                flex-grow: 1;
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
                background-color: white;
                position: relative;
                cursor: pointer;
                -webkit-transition: 0.3s all;
                -o-transition: 0.3s all;
                transition: 0.3s all;
                opacity: 1;
                /*@include shine();*/ }
                .wrapper #app .right-panel .mode .content .columns > div .prev-image:hover {
                  opacity: 0.6; }
                .wrapper #app .right-panel .mode .content .columns > div .prev-image .btn {
                  position: absolute;
                  bottom: 0;
                  display: block;
                  left: 0;
                  right: 0;
                  text-align: center; }
              .wrapper #app .right-panel .mode .content .columns > div .desc {
                min-height: 200px; }
                .wrapper #app .right-panel .mode .content .columns > div .desc h3 {
                  margin-top: 25px;
                  font-size: 16px;
                  font-weight: 700;
                  text-transform: uppercase; }
                .wrapper #app .right-panel .mode .content .columns > div .desc p {
                  margin-top: 10px;
                  font-size: 14px;
                  font-weight: 300; }
                .wrapper #app .right-panel .mode .content .columns > div .desc ul {
                  margin-top: 10px;
                  padding: 0;
                  list-style-position: inside; }
                  .wrapper #app .right-panel .mode .content .columns > div .desc ul li {
                    font-size: 14px;
                    font-weight: 300; }
          .wrapper #app .right-panel .mode .content .flex-columns-20 {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-column-gap: 15px;
            -moz-column-gap: 15px;
            column-gap: 15px; }
          .wrapper #app .right-panel .mode .content .flex-columns-40 {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-column-gap: 40px;
            -moz-column-gap: 40px;
            column-gap: 40px; }
          .wrapper #app .right-panel .mode .content .flex-rows {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            row-gap: 10px; }
            .wrapper #app .right-panel .mode .content .flex-rows.gap-0 {
              row-gap: 0px; }
            .wrapper #app .right-panel .mode .content .flex-rows .img {
              -webkit-box-flex: 1;
              -ms-flex-positive: 1;
              flex-grow: 1;
              opacity: 0.5;
              background-position: center;
              background-repeat: no-repeat;
              background-size: cover;
              position: relative;
              -webkit-transition: 0.3s all;
              -o-transition: 0.3s all;
              transition: 0.3s all; }
              .wrapper #app .right-panel .mode .content .flex-rows .img.contain {
                background-size: contain; }
              .wrapper #app .right-panel .mode .content .flex-rows .img:before {
                content: '';
                display: block;
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                border: 4px solid #F16B08;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                -webkit-transition: 0.3s all;
                -o-transition: 0.3s all;
                transition: 0.3s all; }
            .wrapper #app .right-panel .mode .content .flex-rows.active .img {
              opacity: 1; }
              .wrapper #app .right-panel .mode .content .flex-rows.active .img:before {
                opacity: 1; }
          .wrapper #app .right-panel .mode .content .remaining-space {
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1; }
          .wrapper #app .right-panel .mode .content h3 {
            margin: 20px 0 0px;
            font-size: 18px;
            font-weight: 700; }
            @media only screen and (max-height: 767px) {
              .wrapper #app .right-panel .mode .content h3 {
                margin-top: 10px; } }
            .wrapper #app .right-panel .mode .content h3.mt-40 {
              margin-top: 40px; }
              @media only screen and (max-height: 767px) {
                .wrapper #app .right-panel .mode .content h3.mt-40 {
                  margin-top: 10px; } }
          .wrapper #app .right-panel .mode .content p {
            margin: 0px 0 0;
            padding: 0; }
            .wrapper #app .right-panel .mode .content p.mt-40 {
              margin-top: 40px; }
              @media only screen and (max-height: 767px) {
                .wrapper #app .right-panel .mode .content p.mt-40 {
                  margin-top: 10px; } }
          .wrapper #app .right-panel .mode .content #imgContainer {
            background-image: url("");
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            margin-bottom: 0; }
        .wrapper #app .right-panel .mode .header {
          margin-left: -9999px;
          margin-right: -9999px;
          margin-top: -9999px;
          background-color: #F2F2F2; }
          .wrapper #app .right-panel .mode .header .box {
            padding: 25px 25px 17px;
            font-size: 18px;
            line-height: 24px;
            margin-left: 9999px;
            margin-right: 9999px;
            margin-top: 9999px;
            position: relative;
            /*                        @include height600 {
                            padding: 125px 15px 17px;
                        }*/ }
            .wrapper #app .right-panel .mode .header .box h3 {
              margin: 0;
              text-transform: uppercase;
              color: #1A1A1A;
              font-size: 36px;
              line-height: 42px;
              font-weight: 500;
              /* &:before, &:after {
                                content: '';
                                display: block;
                                position: absolute;
                                left: 0px;
                                top: 0px;
                                -webkit-transition: $transition;
                                -o-transition: $transition;
                                transition: $transition;
                            }

                            &:before {
                                width: 25px;
                                background: -webkit-gradient(linear, left top, right top, from(#F16B08),to(#7000BD));
                                background: -o-linear-gradient(left, #F16B08,#7000BD);
                                background: linear-gradient(0.25turn, #F16B08,#7000BD);
                                height: 4px;
                            }

                            &:after {
                                height: 25px;
                                background: -webkit-gradient( linear,left top, left bottom,from(#F16B08),to(#7000BD));
                                background: -o-linear-gradient( #F16B08,#7000BD);
                                background: linear-gradient( #F16B08,#7000BD);
                                width: 4px;
                            }*/ }
              .wrapper #app .right-panel .mode .header .box h3:before {
                content: '';
                display: block;
                position: absolute;
                left: 0px;
                top: 0px;
                -webkit-transition: 0.3s all;
                -o-transition: 0.3s all;
                transition: 0.3s all;
                width: 25px;
                height: 25px;
                background-image: url("../images/brackets_small.svg");
                background-position: center;
                background-repeat: no-repeat;
                background-size: contain; }
            .wrapper #app .right-panel .mode .header .box p {
              margin: 0;
              font-size: 18px;
              line-height: 24px;
              font-weight: 500; }
        .wrapper #app .right-panel .mode .footer {
          background-color: #1A1A1A;
          height: 60px;
          margin-left: -15px;
          margin-right: calc(-2 * 40px);
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start;
          position: relative;
          /*                    padding-right: calc(2 * 40px);

                    @include height600 {
                        padding-right: calc( 40px/2);
                    }*/ }
          .wrapper #app .right-panel .mode .footer.right {
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end; }
          .wrapper #app .right-panel .mode .footer #discover {
            position: absolute;
            top: 50%;
            left: 15px;
            font-size: 14px;
            line-height: 18px;
            font-weight: 300;
            color: #fff;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
        .wrapper #app .right-panel .mode .loading-panel {
          position: absolute;
          z-index: 1;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          -webkit-transition: 0.3s all;
          -o-transition: 0.3s all;
          transition: 0.3s all;
          background-color: white;
          opacity: 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column; }
          .wrapper #app .right-panel .mode .loading-panel.show {
            opacity: 1; }
          .wrapper #app .right-panel .mode .loading-panel .content .loader-container {
            width: 100%;
            position: relative;
            margin-bottom: 15px; }
            .wrapper #app .right-panel .mode .loading-panel .content .loader-container:before {
              content: ' ';
              display: block;
              position: absolute;
              left: 0;
              top: 0;
              width: 100%;
              height: 100%;
              opacity: 0.05;
              background-image: url("../images/homepageImage.png");
              background-position: center;
              background-repeat: no-repeat;
              background-size: cover; }
            .wrapper #app .right-panel .mode .loading-panel .content .loader-container .loader {
              background-image: url("../images/loader.svg");
              background-position: center;
              background-repeat: no-repeat;
              background-size: contain;
              width: 50px;
              height: 50px;
              -webkit-animation: spin 1s linear infinite;
              animation: spin 1s linear infinite;
              position: absolute;
              top: 50%;
              left: 50%; }
          .wrapper #app .right-panel .mode .loading-panel .no-ar, .wrapper #app .right-panel .mode .loading-panel .after-loading {
            display: none;
            flex-grow: 1;
            position: relative; }
            .wrapper #app .right-panel .mode .loading-panel .no-ar:before, .wrapper #app .right-panel .mode .loading-panel .after-loading:before {
              content: ' ';
              display: block;
              position: absolute;
              left: -100px;
              right: -100px;
              top: 0;
              height: 100%;
              opacity: 0.05;
              background-image: url("../images/homepageImage.png");
              background-position: center;
              background-repeat: no-repeat;
              background-size: cover; }
            .wrapper #app .right-panel .mode .loading-panel .no-ar > *, .wrapper #app .right-panel .mode .loading-panel .after-loading > * {
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              position: absolute;
              display: block;
              font-size: 20px;
              text-align: center; }
              .wrapper #app .right-panel .mode .loading-panel .no-ar > * span, .wrapper #app .right-panel .mode .loading-panel .after-loading > * span {
                display: block; }
              .wrapper #app .right-panel .mode .loading-panel .no-ar > * .qr, .wrapper #app .right-panel .mode .loading-panel .after-loading > * .qr {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px; }
                .wrapper #app .right-panel .mode .loading-panel .no-ar > * .qr .img, .wrapper #app .right-panel .mode .loading-panel .after-loading > * .qr .img {
                  width: 150px;
                  height: 150px;
                  border: 2px solid #F16B08;
                  background-image: url(../../Data/QR.png);
                  background-size: 142px;
                  background-position: center;
                  background-repeat: no-repeat; }
    .wrapper #app .logo {
      position: absolute;
      top: 60px;
      left: calc(2 * 40px);
      -webkit-transition: 0.3s all;
      -o-transition: 0.3s all;
      transition: 0.3s all;
      z-index: 2; }
      @media only screen and (max-height: 767px) {
        .wrapper #app .logo {
          top: 30px; } }
      .wrapper #app .logo a img {
        width: 76px; }
      .wrapper #app .logo a.info {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: calc(76px + 3 * 40px - 330px);
        width: 22px;
        height: 22px;
        border: 1px solid #fff;
        color: #fff;
        border-radius: 50%;
        text-align: center;
        line-height: 24px;
        opacity: 1;
        -webkit-transition: 0.3s all;
        -o-transition: 0.3s all;
        transition: 0.3s all;
        text-decoration: none; }
        .wrapper #app .logo a.info:before {
          content: 'i'; }
    .wrapper #app.home:before {
      opacity: 1; }
    .wrapper #app.home .left-panel {
      top: 50%;
      left: 00%;
      bottom: initial;
      min-width: 600px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      z-index: 1;
      padding-right: 40px; }
      .wrapper #app.home .left-panel .home-image {
        height: 360px;
        background-size: 200%; }
      .wrapper #app.home .left-panel .intro {
        opacity: 1;
        z-index: 1; }
        .wrapper #app.home .left-panel .intro h3 {
          font-size: 32px;
          margin: 0 0 20px; }
        .wrapper #app.home .left-panel .intro p {
          margin: 0 0 20px;
          font-size: 18px;
          line-height: 24px; }
          .wrapper #app.home .left-panel .intro p.buttons {
            margin: 100px 0 0px; }
            @media only screen and (max-height: 767px) {
              .wrapper #app.home .left-panel .intro p.buttons {
                margin: 60px 0 0px; } }
            .wrapper #app.home .left-panel .intro p.buttons a {
              display: initial; }
        .wrapper #app.home .left-panel .intro:before {
          height: 6px;
          top: -6px;
          right: -6px; }
        .wrapper #app.home .left-panel .intro:after {
          width: 6px;
          right: -6px;
          top: -6px; }
      .wrapper #app.home .left-panel .wizard {
        opacity: 0;
        overflow: hidden;
        height: 0;
        margin-top: 0px; }
        .wrapper #app.home .left-panel .wizard ul li {
          padding: 0px; }
          .wrapper #app.home .left-panel .wizard ul li svg {
            height: 00px; }
          .wrapper #app.home .left-panel .wizard ul li h4, .wrapper #app.home .left-panel .wizard ul li p {
            margin: 0; }
          .wrapper #app.home .left-panel .wizard ul li .header {
            padding: 0px 0; }
      .wrapper #app.home .left-panel .qr {
        opacity: 0;
        bottom: -100px; }
    .wrapper #app.home .right-panel {
      top: 0;
      right: 0;
      left: 0;
      bottom: 0; }
    .wrapper #app.home .logo {
      left: calc(100% - 100px - 2 * 40px); }
      .wrapper #app.home .logo .info {
        opacity: 0; }
    .wrapper #app.selected-view .left-panel .header {
      transform: initial;
      background-image: none;
      background-color: #1A1A1A; }
      .wrapper #app.selected-view .left-panel .header .hamburger-menu {
        display: block; }
  .wrapper .white-bar {
    height: 0px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    background-color: white;
    overflow: hidden;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 50px;
    padding: 0 50px; }
    .wrapper .white-bar.show {
      height: 80px; }
    .wrapper .white-bar.iframe {
      display: none; }
    .wrapper .white-bar a {
      color: #1A1A1A;
      -webkit-transition: 0.3s all;
      -o-transition: 0.3s all;
      transition: 0.3s all;
      font-size: 14px;
      line-height: 18px;
      font-weight: 300;
      padding: 30px 0px;
      /*            &:after {
                content: '';
                width: 20px;
                height: 20px;
                display: inline-block;
                transition: $transition;
                @include background ('../images/icon-link.svg',cover);
                vertical-align: bottom;
                margin-left: 20px;
                filter: invert(33%) sepia(0%) saturate(0%) hue-rotate(207deg) brightness(95%) contrast(99%);
            }*/ }
      .wrapper .white-bar a:hover {
        color: #7000BD;
        /*
                &:after {
                    filter: initial;
                }*/ }
    .wrapper .white-bar .language-selector {
      width: 50px;
      height: 50px;
      position: relative;
      margin: 15px 0;
      background-color: #1A1A1A;
      font-size: 14px;
      line-height: 50px;
      font-weight: 500;
      text-align: center;
      cursor: pointer;
      flex-shrink: 0;
      /*
            &:before {
                width: 50%;
                top: 0;
                bottom: 0;
                left: 0;
                background-image: url("../images/globe_black.svg");
                background-position: center;
                background-repeat: no-repeat;
            }

            &:after {
                width: 6px;
                height: 6px;
                transform: translateY(-50%);
                right: 10px;
                border: solid $color_black;
                border-width: 0 3px 3px 0;
                padding: 3px;
                transform: translateY(4px) rotate(45deg);
                -webkit-transform: translateY(4px) rotate(45deg);
            }*/ }
      .wrapper .white-bar .language-selector span {
        color: #fff;
        -webkit-transition: 0.3s all;
        -o-transition: 0.3s all;
        transition: 0.3s all; }
      .wrapper .white-bar .language-selector:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 12px;
        height: 16px;
        border: 0 none;
        -webkit-transition: 0.3s all;
        -o-transition: 0.3s all;
        transition: 0.3s all; }
      .wrapper .white-bar .language-selector div {
        position: fixed;
        bottom: 80px;
        right: 50px;
        width: 50px;
        z-index: 1;
        -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
        background-color: white;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1px;
        background-color: #eee;
        display: none; }
        .wrapper .white-bar .language-selector div a {
          padding: 10px 10px;
          background-color: white;
          margin: 0;
          color: #1A1A1A;
          font-size: 14px;
          line-height: 19px;
          font-weight: 400;
          text-decoration: none;
          text-transform: uppercase;
          text-align: center; }
      .wrapper .white-bar .language-selector.expanded span {
        color: #1A1A1A; }
      .wrapper .white-bar .language-selector.expanded:before {
        border: 1px solid #fff; }
      .wrapper .white-bar .language-selector.expanded div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }

.file-upload-wrapper {
  position: relative;
  margin: 0px 0;
  border: 0px none;
  font-size: 14px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  background-color: #7000BD;
  color: white;
  padding: 15px 20px;
  display: inline-block;
  /*    &:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        pointer-events: none;
        right: 0;
        left: 0;
        display: block;
        z-index: 25;
        
    }
*/ }
  .file-upload-wrapper input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 300px; }

.btn-icon.pdf {
  font-size: 12px;
  line-height: 40px;
  font-weight: 400;
  display: inline-block;
  height: 36px;
  padding: 0 40px 0 20px;
  margin: 12px 0;
  text-decoration: none;
  color: #fff;
  position: relative; }
  .btn-icon.pdf:after {
    content: '';
    display: block;
    position: absolute;
    right: 00px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #7000BD;
    background-image: url("../images/pdf.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px; }

.btn-icon.download {
  font-size: 12px;
  line-height: 40px;
  font-weight: 400;
  display: inline-block;
  height: 36px;
  padding: 0 40px 0 20px;
  margin: 12px 0;
  text-decoration: none;
  color: #fff;
  position: relative; }
  .btn-icon.download:after {
    content: '';
    display: block;
    position: absolute;
    right: 00px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #7000BD;
    background-image: url("../images/download.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px; }
  .btn-icon.download.download-after {
    margin-right: 15px; }

.btn-icon span {
  display: initial; }
  @media only screen and (max-height: 767px) {
    .btn-icon span {
      display: none; } }

iframe {
  border: 0;
  width: 0;
  height: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  bottom: 50%;
  right: 50%;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  z-index: 2; }
  iframe.show {
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    bottom: 0%;
    right: 0%; }

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  visibility: hidden;
  opacity: 0;
  z-index: 1; }
  .overlay.show {
    visibility: visible;
    opacity: 1; }
  .overlay .popup {
    padding: 50px;
    background: #1A1A1A;
    color: #fff;
    position: absolute;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    max-height: 80%;
    min-width: 400px;
    min-height: 400px;
    max-width: 80vw;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .overlay .popup .close {
      position: absolute;
      top: calc(-46px/2);
      right: calc(-46px/2);
      width: 46px;
      height: 46px;
      background: #7000BD;
      display: block;
      border-radius: 50%;
      -webkit-transition: all 200ms;
      -o-transition: all 200ms;
      transition: all 200ms;
      cursor: pointer; }
      .overlay .popup .close:before, .overlay .popup .close:after {
        position: absolute;
        left: 21px;
        top: 10px;
        content: ' ';
        height: 25px;
        width: 2px;
        background-color: #fff; }
      .overlay .popup .close:before {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      .overlay .popup .close:after {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .overlay .popup .close:hover {
        background: #A31AFF; }
    .overlay .popup span {
      max-width: 300px;
      display: block; }
    .overlay .popup .img {
      width: 190px;
      height: 190px;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      border: 3px solid #F16B08;
      background-image: url(../../Data/QR.png);
      background-size: calc(100% - 14px);
      background-position: center;
      background-repeat: no-repeat;
      -ms-flex-negative: 0;
      flex-shrink: 0; }
    .overlay .popup h3 {
      margin: 0 0 20px;
      padding: 0;
      font-size: 18px;
      line-height: 24px;
      font-weight: 500; }
    .overlay .popup ul {
      list-style: none;
      padding: 0;
      margin: 0;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      overflow-y: auto;
      overflow-x: hidden; }
      .overlay .popup ul li {
        margin: 15px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px; }
        .overlay .popup ul li .image {
          height: 115px;
          width: 115px;
          -ms-flex-negative: 0;
          flex-shrink: 0;
          background-image: url("");
          background-position: center;
          background-repeat: no-repeat;
          background-size: cover; }
        .overlay .popup ul li .details {
          -webkit-box-flex: 1;
          -ms-flex-positive: 1;
          flex-grow: 1;
          color: white; }
          .overlay .popup ul li .details h4 {
            margin: 0;
            padding: 0 0 5px;
            font-size: 18px;
            line-height: 24px;
            font-weight: 500; }
          .overlay .popup ul li .details p {
            margin: 0;
            padding: 5px 0;
            font-size: 16px;
            line-height: 22px;
            font-weight: 400; }
          .overlay .popup ul li .details a {
            color: #F16B08;
            font-size: 16px;
            line-height: 19px;
            font-weight: 400;
            text-decoration: none; }
            .overlay .popup ul li .details a:after {
              content: '';
              display: inline-block;
              margin-left: 10px;
              -webkit-transition: 0.3s all;
              -o-transition: 0.3s all;
              transition: 0.3s all;
              width: 12px;
              height: 12px;
              background-image: url("../images/arrow-orange-up.svg");
              background-position: center;
              background-repeat: no-repeat;
              background-size: contain; }

#info-popup .popup ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: unset;
  overflow-y: visible;
  overflow-x: visible; }
  #info-popup .popup ul li {
    margin: 15px 0; }
  #info-popup .popup ul li:before {
    content: "-"; }

.mobile {
  display: none !important; }

.mobile-flex {
  display: none !important; }

@media only screen and (max-width: 767px) {
  body {
    background-color: #1A1A1A; }
  .mobile {
    display: block !important; }
  .mobile-flex {
    display: flex !important; }
  .desktop {
    display: none !important; }
  .wrapper {
    overflow: initial;
    display: flex;
    flex-direction: column;
    background-color: #1A1A1A; }
    .wrapper #app {
      position: static;
      display: flex;
      flex-direction: column; }
      .wrapper #app:before {
        display: none; }
      .wrapper #app .left-panel {
        position: relative;
        padding: 0px;
        box-sizing: border-box; }
        .wrapper #app .left-panel .intro {
          position: relative; }
          .wrapper #app .left-panel .intro h3 {
            margin: 0 0 00px;
            font-size: 0px;
            line-height: 0px;
            font-weight: 200; }
          .wrapper #app .left-panel .intro p {
            margin: 0;
            font-size: 0px;
            line-height: 0px;
            font-weight: 500; }
            .wrapper #app .left-panel .intro p.buttons {
              margin-top: 0px;
              justify-content: right; }
          .wrapper #app .left-panel .intro:before {
            right: 0;
            left: 0;
            top: 0px;
            width: initial;
            height: 6px; }
          .wrapper #app .left-panel .intro:after {
            display: none; }
        .wrapper #app .left-panel .menu-container {
          display: none; }
      .wrapper #app .right-panel {
        position: static;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        background-color: #1A1A1A; }
        .wrapper #app .right-panel .mode {
          position: static;
          margin: 0px 35px 0px 35px;
          width: initial;
          height: initial;
          flex-grow: 1; }
          .wrapper #app .right-panel .mode .header {
            margin-top: 0;
            margin-left: -35px;
            margin-right: -35px; }
            .wrapper #app .right-panel .mode .header .box {
              margin-left: 35px;
              margin-right: 35px;
              margin-top: 10px;
              padding-bottom: 8px; }
              .wrapper #app .right-panel .mode .header .box h3 {
                text-transform: initial;
                font-size: 30px;
                line-height: 42px;
                font-weight: 300; }
              .wrapper #app .right-panel .mode .header .box div {
                display: none; }
          .wrapper #app .right-panel .mode .content {
            width: 100%; }
            .wrapper #app .right-panel .mode .content h3 {
              font-size: 16px;
              line-height: 22px;
              font-weight: 700;
              margin-bottom: 10px; }
            .wrapper #app .right-panel .mode .content p {
              font-size: 12px;
              line-height: 18px;
              font-weight: 300;
              margin-bottom: 10px; }
            .wrapper #app .right-panel .mode .content .owl-carousel {
              flex-grow: 1;
              min-height: 300px;
              height: 300px; }
              .wrapper #app .right-panel .mode .content .owl-carousel .owl-stage-outer {
                margin-right: -35px;
                height: 100%; }
                .wrapper #app .right-panel .mode .content .owl-carousel .owl-stage-outer:after {
                  width: 35px; }
                .wrapper #app .right-panel .mode .content .owl-carousel .owl-stage-outer .owl-stage {
                  height: 100%; }
                  .wrapper #app .right-panel .mode .content .owl-carousel .owl-stage-outer .owl-stage .owl-item {
                    height: 100%; }
              .wrapper #app .right-panel .mode .content .owl-carousel.min-200 .selector-item .details {
                min-height: 0px; }
              .wrapper #app .right-panel .mode .content .owl-carousel.min-200 .owl-nav button {
                top: 50%; }
            .wrapper #app .right-panel .mode .content .accordion {
              margin: 20px 0 40px; }
              .wrapper #app .right-panel .mode .content .accordion h3 {
                color: #fff;
                margin: 0px;
                font-size: 16px;
                line-height: 22px;
                font-weight: 700; }
              .wrapper #app .right-panel .mode .content .accordion > a {
                background-color: #E9E9E9;
                color: #1A1A1A;
                cursor: pointer;
                padding: 7px 20px;
                width: 100%;
                text-align: left;
                text-decoration: none;
                outline: none;
                font-size: 18px;
                line-height: 24px;
                font-weight: 700;
                position: relative;
                display: block;
                box-sizing: border-box;
                margin: 10px 0 0;
                transition: 0.3s all;
                text-transform: uppercase; }
                .wrapper #app .right-panel .mode .content .accordion > a:before, .wrapper #app .right-panel .mode .content .accordion > a:after {
                  content: '';
                  position: absolute; }
                .wrapper #app .right-panel .mode .content .accordion > a:before {
                  top: 0;
                  bottom: 0;
                  right: 0;
                  width: 50px;
                  background-color: #7000BD; }
                .wrapper #app .right-panel .mode .content .accordion > a:after {
                  top: 10px;
                  right: 20px;
                  width: 10px;
                  height: 10px;
                  transition: 0.3s all;
                  transform: rotate(45deg);
                  border-right: 2px solid #fff;
                  border-bottom: 2px solid #fff; }
                .wrapper #app .right-panel .mode .content .accordion > a.active {
                  background-color: #7000BD;
                  color: #fff; }
                  .wrapper #app .right-panel .mode .content .accordion > a.active:after {
                    top: 16px;
                    transform: rotate(-135deg); }
              .wrapper #app .right-panel .mode .content .accordion .panel {
                padding: 0 0px;
                max-height: 0;
                overflow: hidden;
                transition: 0.3s all;
                color: #fff;
                font-size: 14px;
                line-height: 18px;
                font-weight: 300; }
                .wrapper #app .right-panel .mode .content .accordion .panel .prev-image {
                  margin: 20px 0;
                  background-image: url("");
                  background-position: center;
                  background-repeat: no-repeat;
                  background-size: cover;
                  background-color: white;
                  height: 280px;
                  position: relative;
                  cursor: pointer;
                  -webkit-transition: 0.3s all;
                  -o-transition: 0.3s all;
                  transition: 0.3s all; }
                  .wrapper #app .right-panel .mode .content .accordion .panel .prev-image .btn {
                    position: absolute;
                    bottom: 0;
                    display: block;
                    left: 0;
                    right: 0;
                    text-align: center; }
                .wrapper #app .right-panel .mode .content .accordion .panel .desc ul {
                  list-style: none;
                  padding: 0; }
                  .wrapper #app .right-panel .mode .content .accordion .panel .desc ul li::before {
                    content: "•";
                    color: #7000BD;
                    margin-right: 20px; }
            .wrapper #app .right-panel .mode .content .selector {
              margin-top: 0; }
              .wrapper #app .right-panel .mode .content .selector .selector-item .title {
                font-size: 14px;
                line-height: 16px;
                font-weight: 700; }
              .wrapper #app .right-panel .mode .content .selector .quantity {
                display: none; }
            .wrapper #app .right-panel .mode .content .custom-select {
              display: block; }
          .wrapper #app .right-panel .mode .footer {
            height: 36px;
            padding: 0;
            z-index: 2;
            margin-right: -35px;
            margin-left: -35px;
            position: sticky;
            left: 0;
            right: 0;
            bottom: 0; }
            .wrapper #app .right-panel .mode .footer.mobile-rows {
              flex-direction: column;
              height: initial;
              position: static;
              background-color: #fff;
              margin: -25px 0 30px; }
              .wrapper #app .right-panel .mode .footer.mobile-rows a {
                display: block;
                background-color: #7000BD;
                color: #fff;
                width: 100%;
                box-sizing: border-box;
                padding-left: 50px;
                height: 48px;
                line-height: 54px;
                margin: 5px 0; }
                .wrapper #app .right-panel .mode .footer.mobile-rows a span {
                  display: initial; }
                .wrapper #app .right-panel .mode .footer.mobile-rows a:after {
                  right: initial;
                  left: 10px; }
                .wrapper #app .right-panel .mode .footer.mobile-rows a#discover {
                  position: static;
                  -webkit-transform: initial;
                  -ms-transform: initial;
                  transform: initial;
                  background-color: #1A1A1A;
                  line-height: 48px; }
      .wrapper #app.home .left-panel {
        top: initial;
        right: 0;
        bottom: 0;
        -webkit-transform: initial;
        -ms-transform: initial;
        transform: initial;
        width: 100%;
        min-width: initial;
        padding: 0; }
        .wrapper #app.home .left-panel .intro {
          opacity: 1;
          z-index: 1;
          padding: 35px 15px 0 35px; }
          .wrapper #app.home .left-panel .intro h3 {
            font-size: 30px;
            line-height: 32px;
            font-weight: 200;
            margin: 10px 0 20px; }
          .wrapper #app.home .left-panel .intro p {
            margin: 0 0 20px;
            line-height: 24px;
            font-size: 16px;
            line-height: 22px;
            font-weight: 400; }
            .wrapper #app.home .left-panel .intro p.buttons {
              margin: 30px -15px 0px -35px; }
              .wrapper #app.home .left-panel .intro p.buttons a {
                display: initial; }
                .wrapper #app.home .left-panel .intro p.buttons a.qr-popup {
                  display: none; }
          .wrapper #app.home .left-panel .intro:before {
            right: 0;
            left: 0;
            top: 0;
            width: initial;
            height: 6px; }
      .wrapper #app.home .right-panel {
        z-index: -1; }
      .wrapper #app.home .logo {
        left: 20px; }
      .wrapper #app.selected-view .left-panel {
        position: sticky; }
        .wrapper #app.selected-view .left-panel .header {
          background-size: 100%;
          height: 60px; }
        .wrapper #app.selected-view .left-panel .intro:before {
          display: none; }
      .wrapper #app.selected-view .right-panel {
        background-color: #fff; }
      .wrapper #app.selected-view .logo a.info {
        position: fixed;
        display: block;
        right: 60px;
        transition: initial;
        top: 30px; }
      .wrapper #app .logo {
        position: fixed;
        top: 20px;
        left: 20px;
        -webkit-transition: 0.3s all;
        -o-transition: 0.3s all;
        transition: 0.3s all;
        z-index: 2; }
        .wrapper #app .logo a img {
          width: 56px; }
        .wrapper #app .logo a.info {
          display: none; }
    .wrapper .white-bar {
      gap: 50px;
      padding: 0 15px 0 35px;
      justify-content: space-between; }
      .wrapper .white-bar a {
        font-size: 13px;
        line-height: 17px;
        font-weight: 300;
        margin: auto;
        padding: 0; }
      .wrapper .white-bar .language-selector {
        margin: 15px 0 15px 40px; }
        .wrapper .white-bar .language-selector div {
          right: 15px; }
  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 100px 0; }
    .overlay .popup {
      padding: 50px 15px 50px 35px;
      height: initial;
      min-width: initial;
      min-height: initial;
      max-width: initial;
      top: initial;
      left: initial;
      -webkit-transform: initial;
      -ms-transform: initial;
      transform: initial;
      font-size: 16px;
      line-height: 22px;
      font-weight: 400;
      margin: 0;
      position: relative; }
      .overlay .popup .close {
        right: 10px; }
      .overlay .popup h3 {
        margin: 0 0 20px;
        padding: 0;
        font-size: 18px;
        line-height: 24px;
        font-weight: 500; }
      .overlay .popup ul li .image {
        height: 100px;
        width: 70px; }
      .overlay .popup ul li .details {
        vertical-align: middle; } }

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: Arial; }

.custom-select select {
  display: none;
  /*hide original SELECT element: */ }

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 18px;
  right: 20px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #7000BD transparent transparent transparent; }

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px; }

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
  color: #ffffff;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  color: #7000BD;
  background-color: white;
  transition: 0.3s all; }

.select-selected {
  color: #7000BD;
  border: 1px solid #7000BD; }

/* Style items (options): */
.select-items {
  position: absolute;
  color: #7000BD;
  border: 1px solid #7000BD;
  bottom: 100%;
  left: 0;
  right: 0;
  z-index: 99; }

/* Hide the items when the select box is closed: */
.select-hide {
  display: none; }

.select-items div:hover, .same-as-selected {
  background-color: #7000BD;
  color: #fff; }

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
.custom-select {
  display: none; }

.switcher {
  min-height: 200px; }
  @media only screen and (max-height: 767px) {
    .switcher {
      min-height: 160px; } }
  .switcher .switch {
    position: relative;
    display: inline-block;
    width: calc(120px + 2 * 4px);
    height: calc(30px + 2 * 4px); }
    .switcher .switch input {
      opacity: 0;
      width: 0;
      height: 0; }
      .switcher .switch input:focus + .slider {
        -webkit-box-shadow: 0 0 1px #7000BD;
        box-shadow: 0 0 1px #7000BD; }
      .switcher .switch input:checked + .slider:before {
        -webkit-transform: translateX(calc(120px - 70px - 1px));
        -ms-transform: translateX(calc(120px - 70px - 1px));
        transform: translateX(calc(120px - 70px - 1px)); }
      .switcher .switch input:checked + .slider span.left {
        opacity: 0; }
      .switcher .switch input:checked + .slider span.right {
        opacity: 1; }
      .switcher .switch input:checked ~ .visualization .selected {
        left: 50%; }
      .switcher .switch input:checked ~ .visualization .shaft .left {
        opacity: 0; }
      .switcher .switch input:checked ~ .visualization .shaft .right {
        opacity: 1; }
    .switcher .switch .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border: 1px solid #7000BD;
      background-color: rgba(106, 0, 178, 0.3);
      -webkit-transition: 0.3s all;
      -o-transition: 0.3s all;
      transition: 0.3s all;
      pointer-events: none;
      -webkit-box-shadow: 0px 0px 0px 2px rgba(143, 155, 179, 0.16);
      box-shadow: 0px 0px 0px 2px rgba(143, 155, 179, 0.16); }
      .switcher .switch .slider:before {
        position: absolute;
        content: "";
        height: calc(30px - 2px);
        width: 70px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: 0.3s all;
        -o-transition: 0.3s all;
        transition: 0.3s all; }
      .switcher .switch .slider.round {
        border-radius: calc(30px + 2 * 4px); }
        .switcher .switch .slider.round:before {
          border-radius: calc(30px/2); }
      .switcher .switch .slider span {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 70px;
        text-align: center;
        color: #1A1A1A;
        line-height: calc(30px + 2 * 4px - 2px);
        -webkit-transition: 0.3s all;
        -o-transition: 0.3s all;
        transition: 0.3s all; }
        .switcher .switch .slider span.left {
          left: calc(4px);
          opacity: 1; }
        .switcher .switch .slider span.right {
          right: calc(4px);
          opacity: 0; }
    .switcher .switch .visualization {
      position: absolute;
      display: block;
      right: -200px;
      width: 140px;
      height: 140px; }
      .switcher .switch .visualization span {
        display: block;
        position: absolute;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
      .switcher .switch .visualization .shaft {
        border: 4px solid #1A1A1A;
        background-color: #E9E9E9;
        right: 30px;
        left: 30px;
        top: 10px;
        bottom: 20px; }
        .switcher .switch .visualization .shaft .door {
          left: 10px;
          top: 100%;
          background-color: #fff;
          width: 60px;
          height: 4px; }
        .switcher .switch .visualization .shaft .panel {
          top: 50%;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          width: 4px;
          background-color: #F16B08;
          height: 30px;
          -webkit-transition: 0.3s all;
          -o-transition: 0.3s all;
          transition: 0.3s all; }
          .switcher .switch .visualization .shaft .panel.left {
            left: 0;
            opacity: 1; }
            .switcher .switch .visualization .shaft .panel.left:before, .switcher .switch .visualization .shaft .panel.left:after {
              left: 100%; }
          .switcher .switch .visualization .shaft .panel.right {
            right: 0;
            opacity: 0; }
            .switcher .switch .visualization .shaft .panel.right:before, .switcher .switch .visualization .shaft .panel.right:after {
              right: 100%; }
          .switcher .switch .visualization .shaft .panel:before, .switcher .switch .visualization .shaft .panel:after {
            content: '';
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            width: 2px; }
          .switcher .switch .visualization .shaft .panel:before {
            background-color: #F8B03C;
            height: 18px; }
          .switcher .switch .visualization .shaft .panel:after {
            background-color: #E9E9E9;
            height: 6px; }
        .switcher .switch .visualization .shaft .indicator {
          background-color: #999999;
          top: 100%;
          width: 20px;
          height: 4px;
          -webkit-transition: 0.3s all;
          -o-transition: 0.3s all;
          transition: 0.3s all; }
          .switcher .switch .visualization .shaft .indicator.left {
            right: calc(100% + 4px);
            opacity: 1; }
          .switcher .switch .visualization .shaft .indicator.right {
            left: calc(100% + 4px);
            opacity: 0; }
          .switcher .switch .visualization .shaft .indicator:before, .switcher .switch .visualization .shaft .indicator:after {
            content: '';
            position: absolute;
            left: 50%;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
          .switcher .switch .visualization .shaft .indicator:before {
            top: 100%;
            width: 50%;
            background-color: #F16B08;
            height: 4px; }
          .switcher .switch .visualization .shaft .indicator:after {
            top: calc(100% + 4px);
            width: 20%;
            background-color: #F8B03C;
            height: 2px; }
      .switcher .switch .visualization .selected {
        width: 50%;
        left: 00px;
        top: 0px;
        bottom: 0px;
        border: 1px solid #F16B08;
        -webkit-transition: 0.3s all;
        -o-transition: 0.3s all;
        transition: 0.3s all; }

.quantity {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid #7000BD;
  -webkit-box-shadow: 0px 0px 0px 2px rgba(143, 155, 179, 0.16);
  box-shadow: 0px 0px 0px 2px rgba(143, 155, 179, 0.16); }
  .quantity input[type=number]::-webkit-inner-spin-button,
  .quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .quantity input[type=number] {
    -moz-appearance: textfield; }
  .quantity input {
    width: 52px;
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    font-weight: 300;
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 15px;
    position: relative;
    border: 2px solid #C6B5D8;
    border-radius: 15px; }
    .quantity input:focus {
      outline: 0; }
  .quantity .quantity-nav {
    float: left;
    position: relative;
    height: 30px; }
    .quantity .quantity-nav .quantity-button {
      position: relative;
      cursor: pointer;
      width: 30px;
      -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      transform: translateX(-100%);
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      -o-user-select: none;
      user-select: none; }
      .quantity .quantity-nav .quantity-button:after {
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        border-top: 1px solid #1A1A1A;
        border-left: 1px solid #1A1A1A;
        position: absolute;
        top: 50%;
        left: 50%; }
      .quantity .quantity-nav .quantity-button.quantity-up {
        position: absolute;
        height: 50%;
        top: 0; }
        .quantity .quantity-nav .quantity-button.quantity-up:after {
          -webkit-transform: translate(-50%, 1px) rotate(45deg);
          -ms-transform: translate(-50%, 1px) rotate(45deg);
          transform: translate(-50%, 1px) rotate(45deg); }
      .quantity .quantity-nav .quantity-button.quantity-down {
        position: absolute;
        bottom: -1px;
        height: 50%; }
        .quantity .quantity-nav .quantity-button.quantity-down:after {
          -webkit-transform: translate(-50%, -10px) rotate(-135deg);
          -ms-transform: translate(-50%, -10px) rotate(-135deg);
          transform: translate(-50%, -10px) rotate(-135deg); }
