body,
html {
  margin: 0;
  padding: 0;
  background-color: #000;
}
.one3d-main-section * {
  box-sizing: border-box;
}
.one3d-main-section,
.one3d-visualizer-wrapper,
.one3d-error-page {
  font-family: "Lato", sans-serif;
}
.one3d-main-section ul {
  list-style: none;
}
.one3d-visualizer-wrapper ul,
.one3d-visualizer-wrapper li,
.one3d-visualizer-wrapper a,
.one3d-visualizer-wrapper span,
.one3d-visualizer-wrapper div,
.one3d-visualizer-wrapper em,
.one3d-visualizer-wrapper strong,
.one3d-visualizer-wrapper button,
.one3d-visualizer-wrapper textarea,
.one3d-visualizer-wrapper select {
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}
.one3d-features-panel-close {
  user-select: none;
}
/***COMMON UTILITY CLASSES STARTS***/
.one3d-font-0 {
  font-size: 0;
}
.one3d-font-10 {
  font-size: 10px;
}
.one3d-font-12 {
  font-size: 12px;
}
.one3d-font-14 {
  font-size: 14px;
}
.one3d-font-16 {
  font-size: 16px;
}
.one3d-font-18 {
  font-size: 18px;
}
.one3d-font-20 {
  font-size: 20px;
}
.one3d-font-24 {
  font-size: 24px;
}
.one3d-font-28 {
  font-size: 28px;
}
.one3d-font-30 {
  font-size: 30px;
}
.one3d-font-32 {
  font-size: 32px;
}
.one3d-font-36 {
  font-size: 36px;
}
.one3d-font-thin {
  font-weight: 100;
}
.one3d-font-light {
  font-weight: 300;
}
.one3d-font-normal {
  font-weight: 400;
}
.one3d-font-bold {
  font-weight: 700;
}
.one3d-font-bolder {
  font-weight: 800;
}
.one3d-font-extrabold {
  font-weight: 900;
}
.one3d-font-italic {
  font-style: italic;
}
.one3d-line-height {
  line-height: 1.5;
}
.one3d-line-height-1 {
  line-height: 1;
}
.one3d-line-height-40 {
  line-height: 40px;
}
.one3d-primary-color {
  color: #0072bc;
}
.one3d-light-color {
  color: #ffffff;
}
.one3d-grey-color {
  color: #6a6a6a;
}
.one3d-dark-color {
  color: #171717;
}
.one3d-bg-primary {
  background-color: #fc0011;
}
.one3d-bg-light {
  background-color: #ffffff;
}
.one3d-bg-transparent {
  background-color: transparent;
}
.one3d-bg-dark {
  background-color: #171717;
}
.one3d-bg-darkgray {
  background-color: #191919;
}
.one3d-bg-center {
  background-position: center;
}
.one3d-bg-norepeat {
  background-repeat: no-repeat;
}
.one3d-bg-cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
.one3d-bg-contain {
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
}
.one3d-bg-transparent-4 {
  background: rgba(0, 0, 0, 0.4);
}
.one3d-bg-transparent-6 {
  background: rgba(0, 0, 0, 0.6);
}
.one3d-bg-transparent-8 {
  background: rgba(0, 0, 0, 0.8);
}
.one3d-sprite {
  background-image: url(../images/one3d-sprite.svg);
}
.one3d-border-0 {
  border: none;
}
.one3d-border-light {
  border: 1px solid #ffffff;
}
.one3d-border-bottom-red {
  border-bottom: 2px solid #fc0011;
}
.one3d-border-right-grey {
  border-right: 1px solid #656366;
}
.one3d-border-skew-red {
  border-right: 4px solid #fc0011;
}
.one3d-radius-4 {
  border-radius: 4px;
}
.one3d-radius-10 {
  border-radius: 10px;
}
.one3d-radius-circle {
  border-radius: 50%;
}
.one3d-full-width {
  width: 100%;
}
.one3d-full-height {
  height: 100%;
}
.one3d-height-60 {
  height: 60px;
}
.one3d-full-height-vh {
  height: 100vh;
}
.one3d-text-center {
  text-align: center;
}
.one3d-text-left {
  text-align: left;
}
.one3d-text-right {
  text-align: right;
}
.one3d-justify-center {
  justify-content: center;
}
.one3d-justify-between {
  justify-content: space-between;
}
.one3d-justify-start {
  justify-content: flex-start;
}
.one3d-align-center {
  align-items: center;
}
.one3d-align-middle {
  vertical-align: middle;
}
.one3d-align-top {
  vertical-align: top;
}
.one3d-width-auto {
  width: auto;
}
.one3d-maxwidth-100 {
  max-width: 100%;
}
.one3d-flex {
  display: flex;
}
.one3d-flex-auto {
  flex: 0 0 auto;
}
.one3d-flex-wrap {
  flex-wrap: wrap;
}
.one3d-flex-direction-column {
  flex-direction: column;
}
.one3d-block {
  display: block;
}
.one3d-inline {
  display: inline;
}
.one3d-inline-block {
  display: inline-block;
}
.one3d-table {
  display: table;
}
.one3d-table-cell {
  display: table-cell;
}
.one3d-flex-50 {
  flex: 0 0 50%;
  max-width: 50%;
}
.one3d-hide {
  display: none;
}
.one3d-relative {
  position: relative;
}
.one3d-absolute {
  position: absolute;
}
.one3d-fixed {
  position: fixed;
}
.one3d-pointer {
  cursor: pointer;
}
.one3d-events-none {
  pointer-events: none;
}
.one3d-overflow-hidden {
  overflow: hidden;
}
.one3d-hidden-x {
  overflow-x: hidden;
}
.one3d-hidden-y {
  overflow-y: hidden;
}
.one3d-overflow-auto {
  overflow: auto;
}
.one3d-left-center {
  left: 50%;
}
.one3d-top-center {
  top: 50%;
}
.one3d-left {
  left: 0;
}
.one3d-right {
  right: 0;
}
.one3d-bottom {
  bottom: 0;
}
.one3d-top {
  top: 0;
}
.one3d-m0 {
  margin: 0;
}
.one3d-mauto {
  margin: auto;
}
.one3d-mb10 {
  margin-bottom: 10px;
}
.one3d-mr10 {
  margin-right: 10px;
}
.one3d-mr20 {
  margin-right: 20px;
}
.one3d-mt10 {
  margin-top: 10px;
}
.one3d-mb20 {
  margin-bottom: 20px;
}
.one3d-ml20 {
  margin-left: 20px;
}
.one3d-mt20 {
  margin-top: 20px;
}
.one3d-mb30 {
  margin-bottom: 30px;
}
.one3d-mt30 {
  margin-top: 30px;
}
.one3d-mh30 {
  margin: 0 30px;
}
.one3d-mh20 {
  margin: 0 20px;
}
.one3d-mv30 {
  margin: 30px 0;
}
.one3d-mv20 {
  margin: 20px 0;
}
.one3d-p0 {
  padding: 0;
}
.one3d-p10 {
  padding: 10px;
}
.one3d-p20 {
  padding: 20px;
}
.one3d-pl20 {
  padding-left: 20px;
}
.one3d-p30 {
  padding: 30px;
}
.one3d-pb10 {
  padding-bottom: 10px;
}
.one3d-pb20 {
  padding-bottom: 20px;
}
.one3d-pt10 {
  padding-top: 10px;
}
.one3d-ph20 {
  padding: 0 20px;
}
.one3d-ph30 {
  padding: 0 30px;
}
.one3d-pv8 {
  padding: 8px 0;
}
.one3d-square-36 {
  width: 36px;
  height: 36px;
}
.one3d-square-20 {
  width: 20px;
  height: 20px;
}
.one3d-z-index--1 {
  z-index: -1;
}
.one3d-z-index-1 {
  z-index: 1;
}
.one3d-z-index-2 {
  z-index: 2;
}
.one3d-z-index-9 {
  z-index: 9;
}
.one3d-z-index-99 {
  z-index: 99;
}
.one3d-z-index-999 {
  z-index: 999;
}
.one3d-z-index-9999 {
  z-index: 9999;
}
.one3d-opacity-0 {
  opacity: 0;
}
.one3d-opacity-1 {
  opacity: 1;
}
.one3d-visibility-hidden {
  visibility: hidden;
}
.one3d-outline-0 {
  outline: 0;
}
.one3d-spacing-hover:hover {
  letter-spacing: 4px;
}
.one3d-hover-text-red:hover {
  color: #fc0011;
}
.one3d-slowHover-2 {
  -webkit-transition: 0.2s ease-in-out all;
  -moz-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
}
.one3d-slowHover-4 {
  -webkit-transition: 0.4s ease-in-out all;
  -moz-transition: 0.4s ease-in-out all;
  transition: 0.4s ease-in-out all;
}
.one3d-slowHover-6 {
  -webkit-transition: 0.2s ease-in-out all;
  -moz-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
}
.one3d-box-shadow {
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
}
.one3d-translate-xy {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.one3d-translate-x {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.one3d-translate-y {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.one3d-translate-y-100 {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  transform: translateY(100%);
}
.one3d-translate-y-0 {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}
.one3d-rotate-180 {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.one3dPulse {
  -webkit-animation: one3dPulse 2s infinite;
  -moz-animation: one3dPulse 2s infinite;
  animation: one3dPulse 2s infinite;
}
.one3d-skew-21 {
  -webkit-transform: skew(21deg);
  -moz-transform: skew(21deg);
  transform: skew(21deg);
}
.one3d-skew--21 {
  -webkit-transform: skew(-21deg);
  -moz-transform: skew(-21deg);
  transform: skew(-21deg);
}
.one3d-fadeIn {
  -webkit-animation: fadeIn 0.3s ease-in-out;
  -moz-animation: fadeIn 0.3s ease-in-out;
  animation: fadeIn 0.3s ease-in-out;
}
.one3d-custom-scrollbar::-webkit-scrollbar {
  width: 4px;
  background-color: #f5f5f5;
}
.one3d-custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgb(45, 164, 212);
}
.one3d-custom-scrollbar-bottom::-webkit-scrollbar {
  height: 4px;
  background-color: #f5f5f5;
}
.one3d-custom-scrollbar-bottom::-webkit-scrollbar-thumb {
  background-color: rgb(45, 164, 212);
}
.one3d-spiny-y {
  -webkit-animation: spiny 4s linear infinite;
  -moz-animation: spiny 4s linear infinite;
  animation: spiny 4s linear infinite;
}
@-moz-keyframes spiny {
  0% {
    -moz-transform: rotateY(0deg);
  }
  100% {
    -moz-transform: rotateY(360deg);
  }
}
@-webkit-keyframes spiny {
  0% {
    -webkit-transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
  }
}
@keyframes spiny {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes one3dPulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 114, 188, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(0, 114, 188, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 114, 188, 0);
  }
}
@keyframes one3dPulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 114, 188, 0.7);
    box-shadow: 0 0 0 0 rgba(0, 114, 188, 0.7);
  }
  70% {
    -moz-box-shadow: 0 0 0 30px rgba(0, 114, 188, 0);
    box-shadow: 0 0 0 30px rgba(0, 114, 188, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 114, 188, 0);
    box-shadow: 0 0 0 0 rgba(0, 114, 188, 0);
  }
}
/***COMMON UTILITY CLASSES ENDS***/
/***ONE3D STARTER STARTS***/
.one3d-starter {
  background-image: url(../images/one3d-starter-car.png);
  -webkit-background-size: 600px;
  -moz-background-size: 600px;
  -ms-background-size: 600px;
  background-size: 600px;
  background-color: #000;
}
.one3d-starter-btn {
  width: 170px;
  height: 170px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/one3d-starter-icon.svg);
}
/***ONE3D STARTER ENDS***/
/***ONE3D LOADER STARTS***/
.one3d-circular-loader-box {
  top: -16px;
  overflow: hidden;
  -webkit-transform: rotateX(70deg) translateX(-50%);
  -moz-transform: rotateX(70deg) translateX(-50%);
  transform: rotateX(70deg) translateX(-50%);
  /* padding: 0 40px; */
}
.one3d-circular-loader,
.one3d-circular-loader:after {
  border-radius: 50%;
  width: 500px;
  height: 500px;
}
.one3d-circular-loader {
  margin: 60px auto;
  position: relative;
  border-top: 14px solid #fc0011;
  border-right: 14px solid #fc0011;
  border-bottom: 14px solid #fc0011;
  border-left: 14px solid #000;
  -webkit-animation: one3dRrotateLoader 1.5s infinite linear;
  -moz-animation: one3dRrotateLoader 1.5s infinite linear;
  animation: one3dRrotateLoader 1.5s infinite linear;
}
@-webkit-keyframes one3dRrotateLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes one3dRrotateLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.one3d-loaderCar {
  max-width: 520px;
  padding-top: 0;
  height: auto;
}
.one3d-loader-percentage {
  top: -60px;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, #fff 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 120px;
}
.one3d-loaderCar video {
  position: relative;
  right: 0;
  top: 60px;
  height: auto;
}
.one3d-loading-experience-text {
  margin-top: 60px;
}
#one3dcontent {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/***ONE3D LOADER ENDS***/
/***TUTORIAL MODAL STARTS***/
.one3d-tutorial-outer {
  max-width: 700px;
}
.one3d-tutorial-close {
  right: 14px;
  top: 14px;
  width: 45px;
  height: 45px;
  background-position: -227px -888px;
}
.one3d-tutorial-scroll-drag-right-col {
  padding-left: 30px;
}
.one3d-tutorial-microinteractions-list li {
  list-style-type: none;
  margin-right: 10px;
  min-width: 75px;
}
.one3d-tutorial-icons {
  width: 42px;
  height: 42px;
}
.one3d-tutorial-lights {
  background-position: -228px -380px;
}
.one3d-tutorial-doors {
  background-position: -227px -449px;
}
.one3d-tutorial-background {
  background-position: -227px -312px;
}
.one3d-tutorial-sunroof {
  background-position: -227px -518px;
}
.one3d-tutorial-btns {
  margin-bottom: 6px;
}
.one3d-tutorial-btns button {
  padding: 12px 20px;
  background: rgb(45, 87, 146);
  background: -moz-linear-gradient(
    90deg,
    #0c2972 0%,
    #1c58af 53.65%,
    #7a42c7 97.4%
  );
  background: -webkit-linear-gradient(
    90deg,
    #0c2972 0%,
    #1c58af 53.65%,
    #7a42c7 97.4%
  );
  background: linear-gradient(90deg, #0c2972 0%, #1c58af 53.65%, #7a42c7 97.4%);
  margin-right: 16px;
}
.one3d-tutorial-btns button::after {
  position: absolute;
  content: "";
  right: -5px;
  top: 0;
  bottom: 0;
  transform: rotate(0);
  background-color: #e83323;
  width: 2px;
}
.one3d-tutorial-btns button::before {
  position: absolute;
  content: "";
  left: 2px;
  top: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #000;
  opacity: 1;
  -webkit-transition: 0.4s all ease-in-out;
  -moz-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.one3d-tutorial-btns .selected::before {
  opacity: 0;
}
.one3d-tutorial-microinteractions-list .one3d-tutorial-extint {
  padding-left: 20px;
}
.one3d-tutorial-icon-text {
  right: 7px;
  top: 1px;
}
/***TUTORIAL MODAL ENDS***/
/*** ERROR SCREEN STARTS ***/
.one3d-error-webs h5 {
  margin: 98px 0 35px;
}
.one3d-error-image {
  width: 120px;
  height: 120px;
  background-position: -55px -210px;
}
.one3d-browser-icon {
  width: 50px;
  height: 50px;
}
.one3d-chrome {
  background-position: -316px -147px;
}
.one3d-safari {
  background-position: -316px -85px;
}
.one3d-edge {
  background-image: url(../images/one3d-edge-icon.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.one3d-firefox {
  background-position: -316px -262px;
}
.one3d-wifi-image {
  width: 95px;
  height: 95px;
  background-position: -68px -489px;
}
/*** ERROR SCREEN ENDS ***/
/***MICRO-INTERACTIONS STARTS***/
.one3d-microintractions {
  width: 44px;
  bottom: 44px;
}
.one3d-toggle-view {
  bottom: 20px;
  left: 20px;
  user-select: none;
}
.one3d-micro-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 15px;
}
.one3d-micro-background {
  background-position: -228px -34px;
}
.one3d-micro-background.one3d-toggle-icon {
  background-position: -227px -310px;
}
.one3d-micro-lights {
  background-position: -228px -105px;
}
.one3d-micro-lights.one3d-toggle-icon {
  background-position: -227px -381px;
}
.one3d-micro-doors {
  background-position: -228px -172px;
}
.one3d-micro-doors.one3d-toggle-icon {
  background-position: -227px -448px;
}
.one3d-micro-sunroof {
  background-position: -228px -241px;
}
.one3d-micro-sunroof.one3d-toggle-icon {
  background-position: -227px -517px;
}
.one3d-toggle-view label {
  padding: 11px 36px;
  text-transform: uppercase;
  background: rgb(45, 87, 146);
  background: -moz-linear-gradient(
    90deg,
    #0c2972 0%,
    #1c58af 53.65%,
    #7a42c7 97.4%
  );
  background: -webkit-linear-gradient(
    90deg,
    #0c2972 0%,
    #1c58af 53.65%,
    #7a42c7 97.4%
  );
  background: linear-gradient(90deg, #0c2972 0%, #1c58af 53.65%, #7a42c7 97.4%);
  filter: drop-shadow(0px 37px 80px rgba(0, 0, 0, 0.41))
    drop-shadow(0px 8.26443px 17.869px rgba(0, 0, 0, 0.244404))
    drop-shadow(0px 2.46054px 5.32008px rgba(0, 0, 0, 0.165596));
}
.one3d-toggle-view label em {
  font-style: normal;
}
.one3d-toggle-view label::before {
  position: absolute;
  content: "";
  left: 2px;
  top: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #000;
  opacity: 1;
  -webkit-transition: 0.4s all ease-in-out;
  -moz-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.one3d-toggle-view label::after {
  position: absolute;
  content: "";
  right: -5px;
  top: 0;
  bottom: 0;
  transform: rotate(0);
  background-color: #e83323;
  width: 2px;
  left: auto;
  height: 100%;
}
.one3d-toggle-view-box .one3d-row {
  margin-right: 16px;
}
.one3d-toggle-view .one3d-row input:checked ~ label {
  pointer-events: none;
}
.one3d-toggle-view .one3d-row input:checked ~ label::before {
  opacity: 0;
}
.one3d-home-screenview {
  top: 20px;
  left: 20px;
}
.one3d-home-screenview-icon {
  width: 56px;
  height: 56px;
}
.one3d-home {
  background-position: -223px -957px;
}
.one3d-screenview {
  background-position: -223px -1033px;
}
.one3d-screenview.one3d-toggle-icon {
  background-position: -314px -437px;
}
/***MICRO-INTERACTIONS ENDS***/
/***FEATURES PANEL STARTS***/
.one3d-features-panel-close {
  top: 50%;
  right: 360px;
  width: 30px;
  transform: translateY(-50%);
}
.one3d-features-panel-close-gradient {
  position: relative;
  width: 30px;
  height: 260px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
  border-radius: 4px 0 0 4px;
  writing-mode: vertical-rl;
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  line-height: 12px;
  color: #000000;
  text-align: center;
  line-height: 30px;
  background: -webkit-linear-gradient(
    90deg,
    #0c2972 0%,
    #1c58af 53.65%,
    #7a42c7 97.4%
  );
  background: -moz-linear-gradient(
    90deg,
    #0c2972 0%,
    #1c58af 53.65%,
    #7a42c7 97.4%
  );
  background: linear-gradient(90deg, #0c2972 0%, #1c58af 53.65%, #7a42c7 97.4%);
}
.one3d-features-panel-close-white {
  display: none;
  position: relative;
  width: 30px;
  height: 120px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
  border-radius: 4px 0 0 4px;
  writing-mode: vertical-rl;
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  line-height: 12px;
  color: #000000;
  text-align: center;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
}
.one3d-features-panel-close-text {
  position: relative;
  transform: rotateZ(180deg);
  display: inline-block;
  top: -10px;
  color: #fff;
  letter-spacing: 0.2em;
  font-weight: normal;
}
.one3d-features-panel-close-white .one3d-features-panel-close-text {
  color: #000;
  font-weight: bold;
}
.one3d-features-panel-close-text::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
  position: absolute;
  top: -22px;
  left: 5px;
}
.one3d-features-panel-close-white .one3d-features-panel-close-text::after {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
  border-right: 6px solid #000;
  left: -2px;
}
.one3d-features-panel-toggle .one3d-features-panel-close-white {
  display: block;
}
.one3d-features-panel-toggle .one3d-features-panel-close-gradient {
  display: none;
}
.one3d-features-panel-toggle .one3d-loaderCar {
  left: 40%;
}
.one3d-carousel-features {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.one3d-carousel-features .owl-carousel .owl-dots {
  text-align: center;
  margin: 0;
  z-index: 9;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 40px;
}
.one3d-carousel-features .owl-carousel button.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 8px;
  transition: 0.2s ease-in-out all;
}
.one3d-carousel-features .owl-carousel button.owl-dot.active {
  background-color: #fc0011;
}
.one3d-features-panel-toggle
  .one3d-carousel-features
  .owl-carousel
  .owl-item
  img {
  width: calc(100% - 360px);
  opacity: 0;
}
.one3d-features-panel-toggle
  .one3d-carousel-features
  .owl-carousel
  .active
  img {
  opacity: 1;
}
.one3d-features-panel-toggle .one3d-carousel-features .owl-carousel .owl-dots {
  padding-right: 360px;
}
.one3d-features-panel-box {
  -webkit-transform: translateX(360px);
  -moz-transform: translateX(360px);
  -ms-transform: translateX(360px);
  transform: translateX(360px);
}
.one3d-features-panel-toggle .one3d-features-panel-box {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.one3d-features-panel-inner {
  width: 360px;
}
.one3d-features-panel-heading {
  letter-spacing: 5px;
}
.one3d-features-panel-heading::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    #000000 0%,
    #656366 11.25%,
    #656366 87.98%,
    #000000 98.21%
  );
}
.one3d-toggle-view-box-front-back {
  margin-left: 10px;
}
.one3d-dekstop-view #one3dcanvas {
  width: 100%;
  height: 100%;
  position: absolute;
  outline: 0;
}
.one3d-dekstop-view #one3dcanvas.one3d-canvas-resize {
  width: calc(100% - 360px);
}
.one3d-features-list,
.one3d-variants-packs-list {
  padding-left: 0;
}
.one3d-features-list > li,
.one3d-variants-packs-list > li {
  list-style-type: decimal;
  margin: 0 0 15px;
  padding: 0 0 15px;
  position: relative;
  list-style-position: inside;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  user-select: none;
}
.one3d-features-list > li::marker,
.one3d-variants-packs-list > li::marker {
  color: rgb(45, 164, 212);
  font-weight: bold;
  font-size: 18px;
}
.one3d-features-list > li span,
.one3d-variants-packs-list > li span {
  position: relative;
  left: 0;
  top: 0;
  padding-left: 9px;
  padding-top: 0;
  width: 92%;
  padding-bottom: 0;
  z-index: 2;
  display: inline-block;
}
.one3d-features-list > li::before,
.one3d-variants-packs-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #000000 0%,
    #656366 11.25%,
    #656366 87.98%,
    #000000 98.21%
  );
  opacity: 0.3;
}
.one3d-variants-packs-list > li.active::before {
  display: none;
}
.one3d-variants-packs-list > li.active.active-again::before {
  display: block;
}
.one3d-features-list > li::after,
.one3d-variants-packs-list > li::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 0;
  color: #2da4d4;
  font-size: 24px;
  height: 0;
}
.one3d-features-list-dropdown,
.one3d-variant-packs-dropdown {
  display: none;
  padding-left: 30px;
}
.one3d-features-list > li.active::after,
.one3d-variants-packs-list > li.active::after {
  content: "-";
  font-size: 36px;
  top: -10px;
}
.one3d-features-list > li.active-again::after,
.one3d-variants-packs-list > li.active-again::after {
  content: "+";
  font-size: 24px;
  top: 0;
}
.one3d-features-list-dropdown > li,
.one3d-variant-packs-dropdown > li {
  color: #ffffff;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
  margin: 10px 0;
  transition: 0.2s all ease-in-out;
  cursor: pointer;
  position: relative;
}
.one3d-variant-packs-dropdown > li {
  margin: 12px 0;
}
.one3d-variant-packs-dropdown.show .selected {
  color: #777;
  pointer-events: none;
  cursor: auto;
}
.one3d-carvariants-list li.active .one3d-carvariants-label {
  color: #777;
}
.one3d-features-showcase,
.one3d-features-showcase-special {
  width: 360px;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
}
.one3d-pack-selected,
.one3d-variant-selected {
  font-weight: normal;
  font-style: normal;
  color: #676767;
  font-size: 14px;
  position: relative;
  left: 10px;
}
.one3d-pack-selected::before,
.one3d-variant-selected::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 2px;
  background-color: #fff;
  left: -8px;
  top: 8px;
}
.one3d-features-panel-footer .one3d-variant-selected {
  position: relative;
  display: block;
}
.one3d-pack-selected::after,
.one3d-variant-selected::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #e83323;
}
.one3d-features-showcase-show {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.one3d-features-showcase-slider-wrap .owl-carousel .owl-dots {
  margin-top: -35px;
  text-align: center;
  pointer-events: none;
}
.one3d-features-showcase-slider-wrap .owl-carousel button.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 8px;
}
.one3d-features-showcase-slider-wrap .owl-carousel button.owl-dot.active {
  background-color: #fc0011;
}
.one3d-features-showcase-slider-wrap .owl-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
}
.one3d-features-showcase-slider-wrap .owl-carousel .owl-nav button.owl-prev,
.one3d-features-showcase-slider-wrap .owl-carousel .owl-nav button.owl-next {
  width: 36px;
  height: 36px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: 0.2s all ease-in-out;
}
.one3d-features-showcase-slider-wrap
  .owl-carousel
  .owl-nav
  button.owl-prev
  span,
.one3d-features-showcase-slider-wrap
  .owl-carousel
  .owl-nav
  button.owl-next
  span {
  width: 0;
  height: 0;
  border-width: 7px 0 7px 10px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  position: relative;
}
.one3d-features-showcase-slider-wrap
  .owl-carousel
  .owl-nav
  button.owl-prev
  span {
  transform: rotate(180deg);
  right: 2px;
}
.one3d-features-showcase-slider-wrap
  .owl-carousel
  .owl-nav
  button.owl-next
  span {
  left: 2px;
}
.one3d-features-showcase-slider-wrap
  .owl-carousel
  .owl-nav
  button.owl-prev:hover
  span,
.one3d-features-showcase-slider-wrap
  .owl-carousel
  .owl-nav
  button.owl-next:hover
  span {
  border-color: transparent transparent transparent #fff;
}
.one3d-features-showcase-slider-wrap .owl-carousel .owl-nav button:hover {
  background: linear-gradient(
    90deg,
    rgba(2, 151, 208, 0.7) 0%,
    #0857a5 33.69%,
    #74369f 92.51%
  );
}
.one3d-features-showcase-back-icon {
  background-position: -401px -405px;
}
/***FEATURES PANEL ENDS***/
/*** FOOTER PANEL STARTS ***/
.one3d-footer-panel-inner {
  padding: 10px 0;
}
.one3d-footer-panel-overlay {
  z-index: 10;
  opacity: 0.6;
}
.one3d-features-panel-toggle .one3d-footer-panel {
  width: calc(100% - 360px);
}
.one3d-footer-panel-box {
  height: 40px;
  line-height: 40px;
}
.one3d-footer-panel::before,
.one3d-footer-panel::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background: linear-gradient(
    90deg,
    #000000 0%,
    #656366 11.25%,
    #656366 87.98%,
    #000000 98.21%
  );
}
.one3d-footer-panel::before {
  top: 0;
}
.one3d-footer-panel::after {
  bottom: 0;
}
.one3d-footer-color-icon-box {
  width: 32px;
  height: 32px;
}
.one3d-footer-color-icon {
  width: 22px;
  height: 22px;
  background-size: cover !important;
}
.one3d-footer-pack-icon {
  width: 34px;
  height: 34px;
}
#one3d-luxury-pack .one3d-footer-pack-icon {
  background-position: -232px -719px;
}
#one3d-tech-pack .one3d-footer-pack-icon {
  background-position: -232px -777px;
}
#one3d-comfort-pack .one3d-footer-pack-icon {
  background-position: -232px -832px;
}
.one3d-filter-car-label {
  padding: 3px 15px;
  border: 1px solid #303030;
}
.one3d-selected .one3d-filter-car-label {
  background-color: #fff;
  color: #000;
}
.one3d-footer-back-icon {
  width: 14px;
  height: 14px;
  background-position: -408px -408px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.one3d-footer-box-seats-icon {
  width: 45px;
  height: 32px;
  background-size: 750%;
}
.one3d-footer-box-seater-7 .one3d-footer-box-seats-icon {
  background-position: -22px -319px;
}
.one3d-footer-box-seater-5 .one3d-footer-box-seats-icon {
  background-position: -22px -282px;
}
.one3d-selected .one3d-footer-box-seats-wrap::after {
  content: "";
  position: absolute;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background-color: #fc0011;
}
.one3d-selected .one3d-footer-box-seats-item {
  opacity: 0.4;
}
.one3d-footer-box-packs-remove-btn {
  padding: 5px 10px;
  line-height: 1;
  border-radius: 2px;
}
.one3d-footer-box-packs-remove-btn:hover {
  color: #fff;
  background-color: #fc0011;
}
.one3d-footer-box-packs-icon {
  width: 32px;
  height: 32px;
}
.one3d-footer-box-packs-luxury .one3d-footer-box-packs-icon {
  background-position: -233px -719px;
}
.one3d-footer-box-packs-tech .one3d-footer-box-packs-icon {
  background-position: -233px -777px;
}
.one3d-footer-box-packs-comfort .one3d-footer-box-packs-icon {
  background-position: -233px -834px;
}
.one3d-selected .one3d-footer-box-packs-item label {
  color: #777;
  pointer-events: none;
}
.one3d-toggle-color .one3d-toggle-color-selected {
  min-width: 200px;
}
.one3d-toggle-color .one3d-selected-color {
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
}
.one3d-toggle-color-options ul li {
  border-radius: 50%;
  margin-right: 25px;
  width: 36px;
  height: 36px;
  display: flex;
  cursor: pointer;
  background-size: cover !important;
  border: 2px solid #fff;
  position: relative;
}
.one3d-footer-portions-show {
  display: block;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}
.one3d-tooltip {
  visibility: hidden;
  opacity: 0;
  left: 50%;
  bottom: 45px;
  transition: opacity 0.25s ease;
  transform: translateX(-50%);
  background: #fff;
  padding: 7px 10px;
  border-radius: 0;
  display: block;
  color: #000;
  font-size: 10px;
  white-space: nowrap;
  line-height: 1;
  position: absolute;
  font-weight: bold;
  border: 1px solid #000;
}
.one3d-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}
.one3d-toggle-color-options ul li:hover .one3d-tooltip {
  opacity: 1;
  visibility: visible;
}
/*** FOOTER PANEL ENDS ***/
/*** 2D IMAGE FEATURES POP UP STARTS ***/
.one3d-main-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(0, 0, 0, 1);
  z-index: 3;
}
.one3d-object-wrapper.one3d-popup .one3d-popup-wrapper {
  display: block;
}
.one3d-main-section.one3d-no-overlay:before {
  display: none;
}
/*** 2D IMAGE FEATURES POP UP ENDS ***/
.one3d-popup:before {
  height: 100% !important;
}
.one3d-no-overlay .one3d-toggle-color,
.one3d-popup .one3d-microintractions,
.one3d-popup .one3d-home-screenview,
.one3d-popup .one3d-toggle-view-box,
.one3d-popup .one3d-footer-panel,
.one3d-popup .one3d-footer-panel-box-common {
  opacity: 0;
}
.one3d-popup-information {
  opacity: 0;
}
.one3d-popup .one3d-popup-wrapper {
  opacity: 1;
  z-index: 3;
}
.one3d-popup-information.one3d-static-info {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.2s all ease-out;
  -moz-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
  opacity: 1;
}
.one3d-popup-information.one3d-video-info {
  bottom: 60px;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  background: rgb(0, 0, 0);
  background: transparent;
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  opacity: 1;
}
.one3d-features-panel-toggle .one3d-popup-information.one3d-video-info {
  padding-right: 360px;
}
.one3d-features-panel-toggle .one3d-popup-information.one3d-static-info {
  left: 0;
  height: 100%;
}
.one3d-popup-information.one3d-video-info .one3d-product-image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: none;
  background-color: #000;
}
.one3d-popup-information .one3d-product-image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: none;
  background-color: #000;
}
.one3d-popup-information .one3d-product-image video {
  width: 100%;
  height: 100%;
  margin: auto;
}
.one3d-popup-information.one3d-video-info .one3d-product-image img {
  width: 100%;
}
.one3d-popup-information.one3d-video-info .one3d-product-info {
  width: 70%;
  align-items: center;
}
.one3d-popup-information.one3d-video-info .one3d-close-popup {
  margin: 20px 0 10px 0;
}
.one3d-popup-wrapper .one3d-close-popup {
  width: 56px;
  height: 56px;
  background-position: -227px -888px;
  right: auto;
  top: 10px;
  position: absolute;
  left: 10px;
  z-index: 99999;
}
.one3d-popup-information.one3d-static-info,
.one3d-popup-information.one3d-static-info .one3d-product-image,
.one3d-popup-wrapper .one3d-product-info {
  display: flex;
}
.one3d-popup-information.one3d-static-info .one3d-product-image {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  transition: 0.2s ease-in-out all;
  left: 0;
  top: 0;
}
.one3d-features-panel-toggle .one3d-popup-information .one3d-product-image {
  width: calc(100% - 360px);
}
.one3d-popup-information.one3d-static-info.vmodel .one3d-product-image {
  margin-right: 0;
}
.one3d-popup-wrapper .one3d-product-info {
  flex-direction: column;
  margin-top: 24px;
}
.one3d-popup-information.one3d-static-info .one3d-product-image img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
}
.one3d-popup-wrapper .one3d-product-info > p {
  margin-bottom: 0;
}
.one3d-popup-wrapper .one3d-product-info .description {
  margin-top: 10px;
  color: #fff;
}
.one3d-main-section { 
  height: 100svh;
}
.one3d-dekstop-view .one3d-object-wrapper {
  flex-direction: column;
}
.one3d-rotate-device {
  background-color: #000;
}
.one3d-rotate-device-icon {
  width: 90px;
  height: 90px;
  background-position: -70px -600px;
}
.iPhone .one3d-popup-information.one3d-static-info .one3d-product-image {
  display: block;
}
.one3d-popupOpen {
  height: 100vh;
  overflow: hidden;
}
.one3d-footer-variants .one3d-icon-variant {
  display: flex;
  position: relative;
  color: #fff;
  pointer-events: none;
}
.one3d-variants-box-wrapper .one3d-variants-box {
  width: 100%;
  position: relative;
  z-index: 2;
}
.donotScroll {
  overflow: hidden;
}
.one3d-carvariant-filter-options input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.one3d-carvariants-list {
  margin: 0;
  padding: 0 0 0 20px;
  list-style-type: none;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: left;
}
.carvariants-options {
  display: block;
  position: relative;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.one3d-footer-box-packs-list li {
  border-bottom: 1px solid transparent;
}
/* .one3d-footer-box-packs-list .one3d-selected{
	border-bottom: 1px solid #FC0011;
} */
.carvariants-options input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.one3d-carvariants-label {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  line-height: 1;
  color: #fff;
  margin: 0;
  vertical-align: middle;
  font-weight: normal;
  font-size: 14px;
}
.one3d-carvariants-label {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  line-height: 1;
  color: #fff;
  margin: 0;
  vertical-align: middle;
  font-weight: normal;
  font-size: 14px;
}
#one3d-features-panel-inner-desktop .one3d-filter-packs-label {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  line-height: 26px;
  color: #fff;
  margin: 0;
  vertical-align: middle;
  font-weight: normal;
  font-size: 14px;
  padding-right: 80px;
  text-transform: capitalize;
  padding-left: 35px;
}
#one3d-features-panel-inner-desktop .one3d-selected .one3d-filter-packs-label {
  color: #777;
  pointer-events: none;
}
#one3d-features-panel-inner-desktop
  .one3d-selected
  .one3d-filter-packs-label::before {
  opacity: 0.4;
}
.one3d-filter-packs-label {
  position: relative;
}
.one3d-filter-packs-label::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}
.one3d-filter-packs-label[for="luxury"]::before,
.one3d-filter-packs-label[for="select"]::before {
  background-image: url(../images/one3d-luxury.svg);
}
.one3d-filter-packs-label[for="tech"]::before {
  background-image: url(../images/one3d-tech.svg);
}
.one3d-filter-packs-label[for="comfort"]::before {
  background-image: url(../images/one3d-comfort.svg);
}
.one3d-remove-pack-button {
  right: 22px;
  position: absolute;
  font-weight: normal;
  font-size: 12px;
  color: #e83323;
  line-height: 14px;
  border-bottom: 1px solid #e83323;
  top: 6px;
  display: none;
}
.one3d-selected .one3d-remove-pack-button {
  display: block;
}
.one3d-info-pack-button {
  position: absolute;
  right: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background-image: url(../images/one3d-info.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
  background-color: #000;
}
.one3d-carvariants-list li {
  padding: 5px 0;
  margin: 0;
  flex: 0 0 auto;
  text-align: left;
  user-select: none;
}
.one3d-carvariants-list li.active {
  pointer-events: none !important;
}
.fullScreenView .one3d-main-section {
  margin-top: 0; 
  height: 100vh;
}
.one3d-features-showcase-back em {
  font-style: normal;
}
.one3d-maintenance-icon {
  width: 140px;
  height: 140px;
  background-position: -44px -360px;
}
.one3d-footer-box-seats-item input[name="seating"],
.one3d-footer-box-packs-item input[name="pack"] {
  opacity: 0;
  position: absolute;
}
.one3d-footer-box-seats-item label,
.one3d-footer-box-packs-item label {
  cursor: pointer;
  display: block;
}
.one3d-seating-disable {
  opacity: 0.4;
  pointer-events: none;
}
#one3d-loader-bg {
  background-color: #000;
}
.one3d-starter-text {
  margin-top: 80px;
}
#one3d-hide-features-icon {
  position: absolute;
  bottom: 68px;
  z-index: 9;
  width: 50px;
  height: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-position: -227px -888px;
}
/*** NEW RESPONSIVE CODE ENDS ***/
.one3d-special-features {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.2s all ease-in-out;
}
.one3d-special-features img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.one3d-features-panel-toggle .one3d-special-features {
  width: calc(100% - 360px);
}
.one3d-features-showcase-special-list {
  padding: 0;
}
.one3d-features-showcase-special-list li {
  display: block;
  font-size: 14px;
  color: #ffffff;
  border-radius: 100px;
  font-style: normal;
  font-weight: normal;
  border: 1px solid #fff;
  text-align: center;
  padding: 10px;
  margin: 15px 0 10px;
  cursor: pointer;
  transition: 0.4s all ease-in-out;
}
.one3d-features-showcase-special-list .selected,
.one3d-features-showcase-special-list li:hover {
  background-color: #ffffff;
  color: #000;
}
.one3d-features-showcase-special-list .selected {
  pointer-events: none;
}
.one3d-visualizer-wrapper video::-webkit-media-controls {
  display: none !important;
}
.one3d-carousel-features
  .one3d-carousel-features-box
  .owl-carousel
  .one3d-carousel-features-mobile-image {
  display: none;
}
#one3dLoaderGif {
  position: relative;
  top: 50px;
}
.one3d-unsupported-browser {
  min-height: 480px;
  margin-top: -60px;
}
.one3d-filter-packs-label {
  text-transform: capitalize;
}
.one3d-toggle-color {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: flex;
  flex-direction: column;
  width: 220px;
  opacity: 1;
  user-select: none;
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.one3d-features-panel-toggle .one3d-toggle-color {
  right: 394px;
}
.one3d-toggle-color .one3d-toggle-color-selected {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  max-width: 220px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  border: 0;
  border-radius: 4px;
  padding: 7px 10px;
  cursor: pointer;
  transition: 0.3s all ease;
  box-shadow: 0px 37px 80px rgba(0, 0, 0, 0.41),
    0px 8.26443px 17.869px rgba(0, 0, 0, 0.244404),
    0px 2.46054px 5.32008px rgba(0, 0, 0, 0.165596);
}
.one3d-toggle-color-selected:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  right: 10px;
  top: 55%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.one3d-toggle-color-selected.one3d-select-color:after {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  -moz-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}
.one3d-toggle-color .one3d-toggle-color-selected .one3d-selected-color {
  border-radius: 50%;
  margin-right: 9px;
  width: 36px;
  height: 36px;
  display: inline-block;
  background-size: cover !important;
  border: 1px solid #fff;
}
.one3d-toggle-color .one3d-toggle-color-selected .one3d-selected-color-name {
  color: #fff;
  width: 70%;
  font-size: 0.9rem;
}
.one3d-toggle-color
  .one3d-toggle-color-selected
  .one3d-selected-color-name::first-letter {
  text-transform: uppercase;
}
.one3d-toggle-color-selected.one3d-select-color {
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.one3d-toggle-color-options {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  width: 100%;
  border: 0;
  border-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
  padding: 8px 10px 0;
  display: none;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.one3d-colors-heading {
  margin: 0 0 10px;
}
.one3d-toggle-color-options ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.one3d-toggle-color-options ul li {
  border-radius: 50%;
  margin-right: 13px;
  margin-bottom: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  cursor: pointer;
  background-size: cover !important;
  border: 1px solid #fff;
}
.one3d-variant-features-tabs-box {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.one3d-variant-features-tabs-wrap {
  width: 100%;
}
#one3d-variant-features-tabs-nav {
  margin: 0 0 16px;
  padding: 0;
  width: 100%;
  font-size: 0;
  display: flex;
  list-style: none;
  position: relative;
  justify-content: space-between;
  background: #000;
  user-select: none;
}
#one3d-variant-features-tabs-nav > li {
  float: left;
  font-weight: bold;
  margin-right: 2px;
  padding: 0;
  cursor: pointer;
  position: relative;
  background: -moz-linear-gradient(
    90deg,
    #0c2972 0%,
    #1c58af 53.65%,
    #7a42c7 97.4%
  );
  background: -webkit-linear-gradient(
    90deg,
    #0c2972 0%,
    #1c58af 53.65%,
    #7a42c7 97.4%
  );
  background: linear-gradient(90deg, #0c2972 0%, #1c58af 53.65%, #7a42c7 97.4%);
  /* flex: 0 0 50%;
  max-width: 50%; */
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}
#one3d-variant-features-tabs-nav > li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #1b54aa;
  left: 0;
  bottom: -12px;
  right: 0;
  margin: auto;
  -webkit-transition: 0.4s all ease-in-out;
  -moz-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px);
}
#one3d-variant-features-tabs-nav > li::before {
  position: absolute;
  content: "";
  left: 3px;
  top: 3px;
  right: 3px;
  bottom: 3px;
  background-color: #000;
  opacity: 1;
  -webkit-transition: 0.4s all ease-in-out;
  -moz-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
#one3d-variant-features-tabs-nav > li.active::before {
  opacity: 0;
}
#one3d-variant-features-tabs-nav > li.active {
  pointer-events: none;
}
#one3d-variant-features-tabs-nav > li.active::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}
#one3d-variant-features-tabs-nav > li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  padding: 15px 6px;
  display: block;
}
#one3d-variant-features-tabs-nav > li.active a {
  color: #fff;
}
#one3d-variant-features-tabs-content {
  padding: 40px 0 0;
  border: 0;
  float: left;
  width: 100%;
}
.one3d-features-panel-footer {
  background: #242424;
  border-top: 2px solid #343434;
  padding: 6px 10px;
  z-index: 2;
}
.one3d-selected-variant-portion {
  padding: 5px 5px 5px 5px;
  border-right: 0;
}
.one3d-selected-variant-portion sup {
  color: #e83323;
  font-size: 14px;
}
.one3d-selected-variant-price-portion {
  position: relative;
  padding: 0 12px;
  bottom: 4px;
}
.one3d-exshowroom-price-text {
  font-weight: normal;
  font-size: 10px;
  color: #6d6b6b;
}
.one3d-features-panel-footer-box {
  justify-content: space-between;
}
.one3d-features-panel-footer-box .one3d-variant-selected::before {
  display: none;
}
.one3d-features-panel-footer-box .one3d-variant-selected {
  color: #fff;
}
.one3d-variant-selected-price {
  font-size: 16px;
}
.one3d-build-n-price-portion {
  opacity: 0;
  display: none;
  padding: 0 4px;
  visibility: hidden;
}
.one3d-build-n-price-btn {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  padding: 12px 22px;
  background: rgb(45, 87, 146);
  background: -moz-linear-gradient(
    90deg,
    #0c2972 0%,
    #1c58af 53.65%,
    #7a42c7 97.4%
  );
  background: -webkit-linear-gradient(
    90deg,
    #0c2972 0%,
    #1c58af 53.65%,
    #7a42c7 97.4%
  );
  background: linear-gradient(90deg, #0c2972 0%, #1c58af 53.65%, #7a42c7 97.4%);
  -webkit-transform: skew(-21deg);
  -moz-transform: skew(-21deg);
  transform: skew(-21deg);
  width: 240px;
}
.one3d-build-n-price-btn::after {
  position: absolute;
  content: "";
  right: -5px;
  top: 0;
  bottom: 0;
  transform: rotate(0);
  background-color: #e83323;
  width: 2px;
}
.one3d-variant-features-tabs-content-wrap {
  margin-top: 50px;
}
.one3d-features-panel-customise {
  bottom: 44px;
  padding: 20px;
}
.one3d-customise-heading {
  color: #e83323;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  margin: 0 0 10px;
}
.one3d-radio-switch {
  border: none;
  padding: 0;
  white-space: nowrap;
}
.one3d-radio-switch label {
  display: inline-block;
  line-height: 16px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  font-size: 12px;
  vertical-align: middle;
}
.one3d-radio-switch input {
  opacity: 0;
  position: absolute;
}
.one3d-radio-switch label:first-of-type {
  padding-right: 45px;
}
.one3d-radio-switch label:last-child {
  margin-left: -4.25em;
  padding-left: 5em;
}
.one3d-radio-switch label:first-of-type:before,
.one3d-radio-switch label:first-of-type:after {
  border: 0;
  content: "";
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  vertical-align: middle;
  display: inline-block;
  left: auto;
}
.one3d-radio-switch label:first-of-type:before {
  background: #e83323;
  border: 0;
  border-radius: 100%;
  position: absolute;
  right: 2px;
  transform: translateX(0px);
  transition: transform 0.2s ease-in-out;
  width: 15px;
  height: 15px;
  z-index: 2;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  top: 1px;
}
.one3d-radio-switch label:first-of-type:after {
  background: #454545;
  border-radius: 1em;
  margin: 0 1em;
  transition: background 0.2s ease-in-out;
  width: 31px;
  height: 17px;
}
.one3d-radio-switch input:first-of-type:checked ~ label:first-of-type:after {
  background: #454545;
}
.one3d-radio-switch input:first-of-type:checked ~ label:first-of-type:before {
  transform: translateX(-15px);
}
.one3d-radio-switch input:last-of-type:checked ~ label:last-of-type {
  z-index: 1;
}
.one3d-customise-fts-wrap {
  margin-top: 16px;
}
.one3d-customise-fts-option-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
}
.one3d-customise-fts-option-img {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
}
.one3d-customise-fts-icon-fuel {
  background-position: -281px -212px;
  background-size: 597px;
}
.one3d-customise-fts-icon-transmission {
  background-position: -281px -243px;
  background-size: 597px;
}
.one3d-customise-fts-icon-seating {
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 0px 6px;
  background-image: url(../images/one3d-seating.svg);
}
.one3d-customise-fts-box {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
.one3d-customise-fts-option-icon-text {
  margin-bottom: 16px;
}
.one3d-customise-fts-wrap .one3d-radio-switch label:first-of-type:after {
  transform: rotateZ(90deg);
  left: -20px;
  top: 10px;
}
.one3d-customise-fts-wrap .one3d-radio-switch label:first-of-type:before {
  left: 0;
  top: 0;
  right: auto;
  transform: translateY(20px);
}
.one3d-customise-fts-wrap
  .one3d-radio-switch
  input:first-of-type:checked
  ~ label:first-of-type:before {
  transform: translateY(0);
}
.one3d-customise-fts-wrap .one3d-radio-switch label:last-child {
  padding-left: 28px;
  margin-top: 5px;
  margin-left: 0;
}
.one3d-customise-fts-wrap .one3d-radio-switch label:first-of-type {
  padding-left: 28px;
  margin-bottom: 0;
  padding-right: 0;
}
.one3d-customise-fts-wrap .one3d-radio-switch {
  display: flex;
  position: relative;
  flex-direction: column;
}
.one3d-customise-fts-box-seating {
  padding-left: 26px;
}
.one3d-customise-fts-box-fuel {
  padding-right: 35px;
}
.one3d-features-panel-footer-mobile,
.one3d-variants-packs-features-mobile {
  display: none;
}
.one3d-variants-listing-wrapper {
  height: 22vw;
  overflow: auto;
}
.one3d-variants-listing-wrapper::-webkit-scrollbar {
  display: block;
}
.one3d-close-customise-panel-button {
  width: 30px;
  height: 30px;
  background-image: url(../images/one3d-close-mobile.svg);
  background-position: center 7px;
  background-size: 30px;
  background-repeat: no-repeat;
  margin: 0;
  border: 0;
  padding: 0;
  display: none;
  cursor: pointer;
}
.one3d-features-bottom-mobile {
  border: -2px;
  line-height: 34px;
  background: -webkit-linear-gradient(
    90deg,
    #0c2972 0%,
    #1c58af 53.65%,
    #7a42c7 97.4%
  );
  background: -moz-gradient(90deg, #0c2972 0%, #1c58af 53.65%, #7a42c7 97.4%);
  background: linear-gradient(90deg, #0c2972 0%, #1c58af 53.65%, #7a42c7 97.4%);
}
.one3d-apply-filter-mobile {
  bottom: 0;
  text-align: center;
  padding: 0 20px;
  display: none;
}
.one3d-apply-filter-btn {
  width: 100%;
  background: rgb(45, 87, 146);
  background: -moz-linear-gradient(
    90deg,
    #0c2972 0%,
    #1c58af 53.65%,
    #7a42c7 97.4%
  );
  background: -webkit-linear-gradient(
    90deg,
    #0c2972 0%,
    #1c58af 53.65%,
    #7a42c7 97.4%
  );
  background: linear-gradient(90deg, #0c2972 0%, #1c58af 53.65%, #7a42c7 97.4%);
  filter: drop-shadow(0px 37px 80px rgba(0, 0, 0, 0.41))
    drop-shadow(0px 8.26443px 17.869px rgba(0, 0, 0, 0.244404))
    drop-shadow(0px 2.46054px 5.32008px rgba(0, 0, 0, 0.165596));
  padding: 8px 0;
}
.one3d-selected-variant-portion .one3d-font-18 {
  font-size: 15px;
}
.one3d-features-list-dropdown.show > li:hover,
.one3d-variant-packs-dropdown.show > li:hover .one3d-filter-packs-label,
#one3d-features-panel-inner-desktop
  .one3d-variant-packs-dropdown.show
  > li:hover
  .one3d-filter-packs-label,
.carvariants-options label:hover {
  color: rgb(45, 164, 212);
}
#one3d-features-panel-inner-desktop
  .one3d-variant-packs-dropdown.show
  > .one3d-selected:hover
  .one3d-filter-packs-label {
  color: #777;
}
.one3d-on-variant-change .one3d-loaderCar {
  top: 40%;
}
/* .one3d-build-n-price-portion {display: none;} */
.one3d-screenview-tooltip {
  width: 180px;
  background: #000000;
  position: absolute;
  right: auto;
  top: -52px;
  font-weight: normal;
  font-size: 10px;
  line-height: 15px;
  padding: 7px 10px;
  border-radius: 5px;
  left: 40px;
}
.one3d-screenview-tooltip::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #000;
  left: 24px;
  bottom: -7px;
}
.one3d-screenview-tooltip-close {
  width: 16px;
  height: 16px;
  background-image: url(../images/one3d-close-mobile.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 3px;
}
.one3d-disabled {
  pointer-events: none;
}
.one3d-disabled input + label {
  opacity: 0.3;
}
.one3d-disabled label:before {
  background: #656366 !important;
}
.one3d-disabled input:checked + label {
  opacity: 1;
}
.one3d-selected-variant-price-portion {
  display: none;
}
.one3d-pack-selected {
  text-transform: capitalize;
}
.iPhone .one3d-screenview-tooltip,
.one3d-iPad .one3d-screenview-tooltip {
  display: none !important ;
}
.one3d-variant-packs-dropdown > li .one3d-pack-highlights {
  padding-left: 48px;
  pointer-events: none;
  position: absolute;
  display: none;
  left: 0;
  top: 30px;
}
.one3d-pack-highlights li {
  list-style-type: disc;
  font-weight: normal;
  font-size: 12px;
  line-height: 1.6;
  margin: 5px 0;
}
.one3d-variant-packs-dropdown > li.one3d-selected .one3d-pack-highlights {
  display: block;
}
.one3d-pack-highlights-mobile {
  position: absolute;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  bottom: 133px;
  z-index: 12;
  padding: 20px 16px 20px 20px;
  height: 220px;
  left: 0;
}
.one3d-phm-close {
  width: 30px;
  height: 30px;
  background-image: url(../images/one3d-close-mobile.svg);
  background-position: center 7px;
  background-size: 30px;
  background-repeat: no-repeat;
  margin: 0;
  border: 0;
  padding: 0;
  display: block;
  right: -14px;
  top: -18px;
}
.one3d-phm-pack-name {
  font-size: 16px;
  line-height: 19px;
}
.one3d-phm-remove-pack {
  border: 1px solid #e83323;
  border-radius: 2px;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  color: #e83323;
  padding: 4px 9px;
  margin-left: 30px;
}
.one3d-pack-highlights-mobile .one3d-pack-highlights-list {
  margin-top: 16px;
  padding-left: 16px;
  height: 140px;
  overflow: auto;
}
.one3d-pack-highlights-mobile .one3d-pack-highlights-list::-webkit-scrollbar {
  display: block;
}
.one3d-pack-highlights-list li {
  list-style-type: disc;
  font-weight: normal;
  font-size: 12px;
  line-height: 1.6;
  margin: 5px 0;
}
.one3d-interiorview-complete .one3d-toggle-color {
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 1920px) {
  .one3d-variants-listing-wrapper {
    height: 25vw;
  }
}
@media screen and (min-width: 1023px) and (max-width: 1350px) {
  #one3dcanvas.one3d-canvas-resize {
    width: calc(100% - 360px);
  }
}
@media screen and (min-width: 1200px) {
  .one3d-features-showcase-slider-wrap {
    margin-top: 15px;
  }
  .one3d-features-showcase-box {
    padding-bottom: 10px;
  }
  .one3d-micro-tooltip {
    left: 50px;
    bottom: 8px;
    padding: 7px 10px;
    border-radius: 0;
    display: block;
    white-space: nowrap;
    border: 1px solid #000;
  }
  .one3d-tutorial-scroll-drag-car img {
    margin-bottom: 6px;
  }
  .one3d-micro-tooltip::after {
    content: "";
    position: absolute;
    left: -6px;
    bottom: 5px;
    width: 0;
    height: 0;
    border-right: 6px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  .one3d-micro-tooltip::before {
    content: "";
    position: absolute;
    left: -8px;
    bottom: 4px;
    width: 0;
    height: 0;
    border-right: 7px solid #000;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
  .one3d-micro-icon:hover .one3d-micro-tooltip-night,
  .one3d-micro-icon:hover .one3d-micro-tooltip-lights-on,
  .one3d-micro-icon:hover .one3d-micro-tooltip-doors-open,
  .one3d-micro-icon:hover .one3d-micro-tooltip-sunroof-on,
  .one3d-toggle-icon:hover .one3d-micro-tooltip-day,
  .one3d-toggle-icon:hover .one3d-micro-tooltip-lights-off,
  .one3d-toggle-icon:hover .one3d-micro-tooltip-doors-close,
  .one3d-toggle-icon:hover .one3d-micro-tooltip-sunroof-off {
    visibility: visible;
    opacity: 1;
  }
  .one3d-toggle-icon:hover .one3d-micro-tooltip-night,
  .one3d-toggle-icon:hover .one3d-micro-tooltip-lights-on,
  .one3d-toggle-icon:hover .one3d-micro-tooltip-doors-open,
  .one3d-toggle-icon:hover .one3d-micro-tooltip-sunroof-on {
    visibility: hidden;
    opacity: 0;
  }
  .one3d-carousel-features .owl-carousel .owl-item img {
    position: relative;
    bottom: 30px;
    height: calc(100vh - 160px);
    object-fit: contain;
  }
}
@media screen and (max-width: 1200px) {
  .one3d-carousel-features
    .one3d-carousel-features-box
    .owl-carousel
    .one3d-carousel-features-desktop-image {
    display: none;
  }
  .one3d-carousel-features
    .one3d-carousel-features-box
    .owl-carousel
    .one3d-carousel-features-mobile-image {
    display: block;
  }
}
/*** NEW RESPONSIVE CODE STARTS ***/
@media screen and (min-width: 901px) {
  .one3d-features-list-dropdown,
  .one3d-variant-packs-dropdown {
    margin-top: -10px;
  }
  .one3d-features-list-dropdown.show > li:last-child,
  .one3d-variant-packs-dropdown.show > li:last-child {
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  .one3d-features-list > li span,
  .one3d-variants-packs-list > li span {
    padding-bottom: 16px;
  }
  .one3d-features-list > li,
  .one3d-variants-packs-list > li {
    padding-bottom: 0;
  }
  .one3d-variants-listing-wrapper {
    padding-top: 3px;
    padding-bottom: 6px;
  }
  .one3d-variants-packs-list > li label span {
    padding-bottom: 0;
  }
  .one3d-variants-packs-listing-wrapper,
  .one3d-features-listing-wrapper {
    position: relative;
  }
  .one3d-variants-packs-listing-wrapper::after,
  .one3d-features-listing-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 100%;
    top: 0;
    z-index: 2;
  }
}
@media screen and (min-width: 900px) and (max-width: 1300px) {
  .one3d-loader-percentage {
    top: -113px;
  }
  .one3d-loaderCar video {
    top: 0;
  }
}
@media screen and (max-width: 900px) {
  .one3d-main-section {
    height: 75vh;
    margin-top: 0;
  }
  .one3d-home-screenview {
    top: auto;
    left: 10px;
    bottom: 136px;
  }
  .one3d-home-screenview-icon {
    width: 46px;
    height: 46px;
    background-size: 830px;
  }
  .one3d-home {
    background-position: -216px -923px;
  }
  .one3d-screenview {
    background-position: -216px -997px;
  }
  .one3d-screenview.one3d-toggle-icon {
    background-position: -305px -423px;
  }
  .one3d-starter-btn {
    width: 80px;
    height: 80px;
  }
  .one3d-starter-text {
    font-size: 16px;
    min-width: 300px;
    top: 20px;
  }
  .one3d-starter {
    -webkit-background-size: 360px;
    -moz-background-size: 360px;
    -ms-background-size: 360px;
    background-size: 360px;
  }
  #one3d-loader-car-image {
    width: 248px;
  }
  .one3d-circular-loader,
  .one3d-circular-loader:after {
    width: 300px;
    height: 300px;
  }
  .one3d-circular-loader {
    border-width: 6px;
  }
  .one3d-loader-percentage {
    font-size: 90px;
    top: -50px;
  }
  .one3d-loaderCar p {
    font-size: 16px;
  }
  .one3d-loaderCar {
    height: auto;
  }
  .one3d-tutorial-outer {
    max-width: 360px;
    padding: 15px;
    border: 0;
  }
  .one3d-tutorial-scroll-drag-right-col {
    padding-left: 5px;
  }
  .one3d-tutorial-scroll-drag-left-col {
    padding-right: 5px;
  }
  .one3d-tutorial-scroll-drag img {
    border: 0;
  }
  .one3d-tutorial-microinteractions-list {
    display: none;
  }
  .one3d-tutorial-close {
    background-position: -318px -588px;
    top: 5px;
  }
  .one3d-tutorial-heading p {
    font-size: 14px;
  }
  .one3d-tutorial-micro-top {
    font-size: 14px;
    margin-top: 10px;
  }
  .one3d-tutorial-box-ul-desktop {
    display: none;
  }
  .one3d-tutorial-box-ul-mobile {
    display: block;
  }
  .one3d-tutorial-ext-int-mobile {
    width: 150px;
    height: 50px;
    background-image: url(../images/one3d-tutorial-mobile-ext-int.png);
    background-position: left center;
    background-size: contain;
  }
  #one3d-loader-drl-light {
    display: none;
  }
  .one3d-tutorial-interactive-features {
    background-position: -314px -648px;
    width: 50px;
    height: 50px;
  }
  .one3d-toggle-view {
    top: 10px;
    bottom: auto;
    left: 0;
    width: 100%;
  }
  .one3d-toggle-view .one3d-border-skew-red {
    border: 0;
  }
  .one3d-toggle-view-box {
    border: 0;
    background: transparent;
    border-radius: 0;
    margin-left: 10px;
    margin-top: 2px;
    overflow: visible;
    padding: 2px;
  }
  .one3d-toggle-view label {
    border-radius: 0;
    text-transform: capitalize;
    padding: 6px 12px;
    text-transform: uppercase;
  }
  .one3d-features-panel-close {
    top: 50%;
  }
  .one3d-microintractions-toggle {
    display: block;
    width: 40px;
    height: 40px;
    background-position: -320px -1040px;
    right: 10px;
  }
  .one3d-microintractions-toggle-open {
    background-position: -320px -875px;
  }
  .one3d-microintractions {
    bottom: auto;
    left: auto;
    right: 13px;
    margin-top: 5px;
    text-align: right;
    opacity: 0;
    visibility: hidden;
    top: 44px;
  }
  .one3d-footer-color {
    display: none !important;
  }
  .one3d-toggle-view-box-front-back {
    margin-left: 0;
  }
  .one3d-microintractions-open {
    opacity: 1;
    visibility: visible;
  }
  .one3d-micro-icon {
    width: 34px;
    height: 38px;
    margin-bottom: 0;
    background-size: 700px;
  }
  .one3d-micro-sunroof {
    background-position: -185px -197px;
  }
  .one3d-micro-sunroof.one3d-toggle-icon {
    background-position: -185px -421px;
  }
  .one3d-micro-doors {
    background-position: -185px -141px;
  }
  .one3d-micro-doors.one3d-toggle-icon {
    background-position: -185px -365px;
  }
  .one3d-micro-lights {
    background-position: -185px -84px;
  }
  .one3d-micro-lights.one3d-toggle-icon {
    background-position: -185px -309px;
  }
  .one3d-micro-background {
    background-position: -185px -29px;
  }
  .one3d-micro-background.one3d-toggle-icon {
    background-position: -185px -253px;
  }
  .one3d-footer-back {
    padding: 0 10px;
  }
  .one3d-ph30 {
    padding: 0 10px;
  }
  .one3d-mh30 {
    margin: 0 10px;
  }
  .one3d-footer-color {
    display: none;
  }
  .one3d-colors-mobile {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: block;
    text-align: right;
  }
  .one3d-colors-mobile .one3d-toggle-color-options {
    width: 85px;
    display: flex;
    background: #000;
    padding: 5px 8px;
    border: 1px solid #fff;
    float: right;
  }
  .one3d-toggle-color-options ul {
    overflow: hidden;
  }
  .one3d-toggle-color-options ul li {
    flex: 0 0 auto;
    margin-right: 15px;
    width: 30px;
    height: 30px;
  }
  .one3d-toggle-color .one3d-toggle-color-selected .one3d-selected-color {
    width: 30px;
    height: 30px;
  }
  .one3d-arrow-colors {
    width: 26px;
    height: 36px;
    display: none;
  }
  .one3d-arrow-colors-prev {
    background-position: -407px -28px;
  }
  .one3d-arrow-colors-next {
    background-position: -407px -69px;
  }
  .one3d-selected-color-name {
    margin-bottom: 0;
    display: inline-block;
    text-transform: capitalize;
    background: black;
    padding: 0 4px;
    border: 0;
    font-size: 12px;
  }
  .one3d-footer-panel::before,
  .one3d-footer-panel::after {
    display: none;
  }
  .one3d-footer-panel {
    border-top: 1px solid #777;
  }
  .one3d-footer-panel,
  .one3d-footer-panel-box-variants,
  .one3d-footer-panel-box-seating,
  .one3d-footer-panel-box-packs {
    bottom: 0;
  }
  .one3d-explore-features-mobile {
    display: block;
    line-height: 34px;
    border-bottom: 1px solid #fff;
  }
  .one3d-explore-features-mobile svg {
    margin-left: 10px;
  }
  .one3d-features-listing-mobile {
    flex-wrap: nowrap;
  }
  .one3d-features-listing-mobile li {
    flex: 0 0 auto;
    margin: 0 6px;
    line-height: 40px;
    font-size: 13px;
    padding: 0 6px;
  }
  .one3d-features-listing-mobile li,
  .one3d-features-list-dropdown.show li {
    border-bottom: 0;
    color: #fff;
  }
  .one3d-features-listing-mobile .active,
  .one3d-features-list-dropdown.show .selected {
    border-bottom: 0;
    color: #fff;
  }
  .one3d-features-list-dropdown.show > li:hover {
    border-bottom: 0px solid #fc0011;
  }
  .one3d-features-list-mobile {
    bottom: 0;
    border-top: 0;
    border-bottom: 0;
  }
  .one3d-features-listing-mobile li {
    position: relative;
  }
  .one3d-features-listing-mobile li::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 9px;
    background-color: #353535;
    width: 2px;
    height: 28px;
  }
  .one3d-features-listing-mobile li:last-child::after {
    display: none;
  }
  .one3d-features-list > li::before {
    display: none;
  }
  .one3d-features-list-dropdown > li {
    line-height: 44px;
  }
  .one3d-custom-scrollbar-bottom::-webkit-scrollbar {
    height: 0;
  }
  .one3d-goto-variants-mobile {
    left: 10px;
    top: 8px;
    font-size: 10px;
  }
  .one3d-main-section:before {
    transition: 0.1s all ease;
    background: rgba(0, 0, 0, 0.2);
  }
  .one3d-goto-variants-mobile svg {
    margin-right: 5px;
    bottom: 1px;
  }
  .one3d-pv8 {
    padding: 5px 0;
  }
  .one3d-footer-panel-inner {
    padding: 1px 0;
  }
  .one3d-height-60 {
    height: 50px;
  }
  .one3d-features-list-mobile {
    height: 44px;
    padding: 0;
    border-top: 2px solid #444;
  }
  .one3d-footer-panel-box-variants::-webkit-scrollbar,
  .one3d-footer-panel-box-packs::-webkit-scrollbar,
  .one3d-footer-panel-box-seating::-webkit-scrollbar {
    width: 0;
    background-color: #f5f5f5;
  }
  .one3d-features-panel-close {
    display: none !important;
  }
  .one3d-features-showcase,
  .one3d-features-showcase-special {
    height: 240px;
    bottom: 0;
    top: auto;
    width: 100%;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    overflow: visible;
    -webkit-transform: translateY(290px);
    -moz-transform: translateY(290px);
    transform: translateY(290px);
  }
  .one3d-features-showcase-show {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  .one3d-features-showcase-back {
    position: absolute;
    top: -44px;
    background: transparent;
    padding: 10px;
    border: 1px solid #fff;
    left: 0;
    bottom: auto;
  }
  .one3d-features-showcase-slider-wrap {
    margin-top: 0;
  }
  .one3d-features-showcase-slider-wrap .owl-carousel .owl-nav {
    position: absolute;
    bottom: -20px;
    width: 140px;
    right: 0;
  }
  .one3d-features-showcase-slider-wrap .owl-carousel .owl-nav button.owl-prev,
  .one3d-features-showcase-slider-wrap .owl-carousel .owl-nav button.owl-next {
    background: linear-gradient(
      90deg,
      rgba(2, 151, 208, 0.7) 0%,
      #0857a5 33.69%,
      #74369f 92.51%
    );
  }
  .one3d-features-showcase-slider-wrap .owl-carousel .owl-nav button:hover {
    background: linear-gradient(
      90deg,
      rgba(2, 151, 208, 0.7) 0%,
      #0857a5 33.69%,
      #74369f 92.51%
    );
  }
  .one3d-features-showcase-slider-wrap
    .owl-carousel
    .owl-nav
    button.owl-prev.disabled,
  .one3d-features-showcase-slider-wrap
    .owl-carousel
    .owl-nav
    button.owl-next.disabled {
    background: #000;
  }
  .one3d-features-showcase-slider-wrap
    .owl-carousel
    .owl-nav
    button.owl-prev
    span,
  .one3d-features-showcase-slider-wrap
    .owl-carousel
    .owl-nav
    button.owl-next
    span {
    border-color: transparent transparent transparent #fff;
  }
  .one3d-features-showcase-slider-wrap
    .owl-carousel
    .owl-nav
    button.owl-prev:hover
    span,
  .one3d-features-showcase-slider-wrap
    .owl-carousel
    .owl-nav
    button.owl-next:hover
    span {
    border-color: transparent transparent transparent #fff;
  }
  .one3d-features-showcase-box p {
    height: 84px;
    overflow: auto;
    padding-right: 0;
    margin-top: 0;
  }
  .one3d-features-showcase-box h3 {
    margin-bottom: 10px;
  }
  .one3d-features-showcase-slider-wrap .owl-carousel .owl-dots {
    counter-reset: slides-num;
    position: absolute;
    top: auto;
    left: auto;
    margin-top: 15px;
    right: 40px;
    bottom: -14px;
  }
  .one3d-features-showcase-slider-wrap .owl-carousel .owl-dots:after {
    content: counter(slides-num);
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
    padding-left: 0;
    position: relative;
    top: -1px;
    right: 8px;
  }
  .one3d-features-showcase-slider-wrap .owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    counter-increment: slides-num;
    margin-right: 0;
    background-color: transparent;
    width: 0;
    height: 0;
  }
  .one3d-features-showcase-slider-wrap .owl-carousel .owl-dots .owl-dot span {
    display: none;
  }
  .one3d-features-showcase-slider-wrap
    .owl-carousel
    .owl-dots
    .owl-dot.active:before {
    content: counter(slides-num) " / ";
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    position: absolute;
    left: 12px;
    top: 0px;
  }
  .one3d-footer-pack {
    border-right: 0;
  }
  .one3d-features-showcase-back em {
    display: none;
  }
  .one3d-error-heading h3 {
    font-size: 22px;
  }
  .one3d-error-webs h5 {
    font-size: 16px;
    margin: 60px 0 20px;
  }
  .one3d-error-webs ul li .one3d-block {
    margin: 0 0 15px;
  }
  .one3d-error-image {
    width: 88px;
    height: 88px;
    background-position: -37px -143px;
    background-size: 600px;
  }
  .one3d-unsupported-browser .one3d-error-heading h3 {
    font-size: 18px;
    margin-top: 5px;
  }
  .one3d-unsupported-browser .one3d-error-heading p {
    font-size: 16px;
  }
  .one3d-footer-panel-resize {
    width: 100%;
  }
  #one3dcanvas {
    width: 100% !important;
  }
  #one3dcanvas.one3d-canvas-resize-mobile {
    height: calc(100% - 240px) !important;
  }
  .one3d-features-panel-toggle .one3d-features-panel-box,
  .one3d-features-panel-box {
    -webkit-transform: translateX(360px);
    -moz-transform: translateX(360px);
    -ms-transform: translateX(360px);
    transform: translateX(360px);
  }
  .one3d-features-panel-toggle .one3d-footer-panel {
    width: 100%;
  }
  .one3d-features-panel {
    opacity: 0;
    visibility: hidden;
  }
  .one3d-dekstop-view #one3dcanvas.one3d-canvas-resize {
    width: 100%;
  }
  .one3d-toggle-view label em {
    display: none;
  }
  .one3d-slide-to-left li {
    transform: translateX(0);
  }
  .one3d-slide-to-right li {
    transform: translateX(-50px);
  }
  .one3d-features-panel-toggle .one3d-loaderCar {
    left: 50%;
  }
  .one3d-footer-panel-box {
    justify-content: flex-start;
  }
  .one3d-footer-variants {
    border-right: 0;
  }
  .one3d-features-list-dropdown {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 6;
  }
  .one3d-features-showcase-special-list {
    display: flex;
    overflow: auto;
    margin-top: 0;
    position: relative;
    top: -10px;
  }
  .one3d-features-showcase-special-list li {
    flex: 0 0 auto;
    margin-right: 7px;
    font-size: 13px;
    padding: 7px 10px;
  }
  .one3d-features-showcase-slider-wrap
    #one3d-features-showcase-slider
    .owl-dots {
    right: 46px;
    width: 50px;
  }
  .one3d-features-showcase-slider-wrap
    #one3d-features-showcase-slider
    .owl-dots:after {
    right: -15px;
    top: -22px;
  }
  .one3d-features-showcase-slider-wrap
    #one3d-features-showcase-slider-subfeature
    .owl-dots
    .owl-dot.active:before {
    left: 4px;
  }
  .one3d-features-showcase-slider-wrap
    #one3d-features-showcase-slider
    .owl-nav {
    bottom: 0px;
  }
  .one3d-features-showcase-slider-wrap
    #one3d-features-showcase-slider-subfeature
    .owl-dots {
    bottom: 5px;
    width: 50px;
    right: 42px;
  }
  .one3d-features-showcase-slider-wrap
    #one3d-features-showcase-slider-subfeature
    .owl-nav {
    bottom: 0;
  }
  .one3d-features-showcase-slider-wrap
    #one3d-features-showcase-slider
    .owl-dots
    .owl-dot.active:before {
    top: -19px;
    left: 8px;
  }
  .one3d-features-showcase-slider-wrap .owl-carousel .owl-dots .owl-dot {
    margin: 0;
  }
  .one3d-features-showcase-slider-wrap
    #one3d-features-showcase-slider-subfeature
    .owl-dots:after {
    top: -2px;
    right: -10px;
  }
  .one3d-features-showcase-box {
    height: 211px;
  }
  .one3d-features-panel-toggle .one3d-popup-information .one3d-product-image {
    width: 100%;
  }
  .one3d-popup-information.one3d-static-info .one3d-product-image img {
    position: relative;
    height: 100%;
    object-fit: contain;
  }
  .one3d-popup-information.one3d-static-info,
  .one3d-features-panel-toggle .one3d-popup-information.one3d-static-info {
    width: 100%;
    height: calc(100% - 240px);
    flex-direction: column;
  }
  .one3d-carousel-features {
    height: calc(100% - 240px);
  }
  .one3d-features-panel-toggle .one3d-popup-information.one3d-static-info {
    left: 0;
  }
  .one3d-features-panel-toggle
    .one3d-carousel-features
    .owl-carousel
    .owl-item
    img {
    width: 100%;
  }
  .one3d-features-panel-toggle
    .one3d-carousel-features
    .owl-carousel
    .owl-dots {
    padding-right: 0;
  }
  .one3d-carousel-features .owl-carousel .owl-dots {
    bottom: 6px;
    display: none;
  }
  .one3d-main-section {
    height: 85vh; 
  }
  .fullScreenView .one3d-main-section { 
    height: 100vh;
  }
  .one3d-features-list > li {
    list-style: none;
    position: static;
    margin: 0;
    padding: 0;
  }
  .one3d-explore-features-list-text-mobile {
    width: 100%;
    bottom: 0;
    height: 50px;
    line-height: 34px;
    background: linear-gradient(
      90deg,
      #0c4b81 5.55%,
      #297dac 36.76%,
      #2979a9 50.06%,
      #74369f 98.21%
    );
    border: 4px solid #000;
  }
  .one3d-explore-features-list-text-mobile svg {
    position: relative;
    left: 5px;
    bottom: 1px;
  }
  .one3d-features-list-dropdown.show {
    display: flex !important;
    background-color: rgba(0, 0, 0, 1);
    height: 44px !important;
    bottom: 0;
    padding-left: 30px;
  }
  .one3d-features-list-mobile,
  .one3d-footer-panel,
  .one3d-toggle-color .one3d-toggle-color-selected,
  .one3d-toggle-color-options {
    background-color: rgba(0, 0, 0, 1);
  }
  .one3d-features-list > li span::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    background-color: #353535;
    width: 2px;
    height: 28px;
  }
  .one3d-footer-variants,
  .one3d-footer-pack {
    position: relative;
  }
  .one3d-footer-variants::after,
  .one3d-footer-pack::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 6px;
    background-color: #353535;
    width: 2px;
    height: 28px;
  }
  .one3d-footer-panel-box .one3d-ph30 {
    padding: 0;
  }
  .one3d-features-list > li:last-child span::after {
    display: none;
  }
  .one3d-features-list-dropdown {
    padding-left: 0;
    overflow: auto;
  }
  .one3d-features-list > li::after {
    display: none;
  }
  .one3d-popup-information.one3d-static-info,
  .one3d-popup-information.one3d-static-info .one3d-product-image {
    display: block;
  }
  .one3d-carousel-features
    .one3d-carousel-features-box
    .owl-carousel
    .one3d-carousel-features-mobile-image {
    display: block;
  }
  .one3d-carousel-features
    .one3d-carousel-features-box
    .owl-carousel
    .one3d-carousel-features-desktop-image {
    display: none;
  }
  .one3d-mobile-tutorial-image {
    display: block;
  }
  .one3d-desktop-tutorial-image {
    display: none;
  }
  .one3d-scroll-to-zoom {
    display: none;
  }
  .one3d-pinch-to-zoom {
    display: block;
  }
  .one3d-features-list-dropdown.show > li:hover,
  .one3d-variant-packs-dropdown.show > li:hover,
  .carvariants-options label:hover {
    color: #fff;
  }
  .one3d-features-showcase-back {
    width: 30px;
    height: 30px;
    top: 9px;
    right: 8px;
    border: 0;
    background-image: url(../images/one3d-close-mobile.svg);
    left: auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
  }
  .one3d-error-webs li {
    min-width: 102px;
  }
  .one3d-carousel-features .owl-carousel .owl-item img {
    height: calc(71vh - 240px);
    object-fit: contain;
  }
  .fullScreenView .one3d-carousel-features .owl-carousel .owl-item img {
    height: calc(90vh - 240px);
    object-fit: contain;
  }
  .one3d-toggle-color {
    bottom: 64px;
    right: 10px;
    width: 200px;
  }
  .one3d-toggle-color.one3d-shift-towards-top {
    bottom: 144px;
  }
  .one3d-features-panel-toggle .one3d-toggle-color {
    right: 10px;
  }
  .one3d-selected-color-name {
    background: transparent;
    border: 0;
  }
  .one3d-toggle-color .one3d-toggle-color-selected {
    width: 190px;
    padding: 6px 10px;
  }
  #one3dcanvas {
    height: 90%;
  }
  .one3d-variants-packs-features-mobile {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 48px;
  }
  #one3d-variant-features-tabs-nav {
    margin: 0;
  }
  .one3d-variants-packs-features-mobile .one3d-features-panel-inner {
    width: 100%;
    padding: 0;
  }
  .one3d-variant-features-tabs-box {
    top: auto;
    bottom: 0;
  }
  .one3d-variant-features-tabs-content-wrap {
    margin-top: 0;
    position: absolute;
    bottom: 42px;
    width: 100%;
    left: 0;
  }
  .one3d-variants-packs-features-mobile .one3d-footer-panel {
    display: block !important;
  }
  .one3d-mobile-view .one3d-features-panel-footer-mobile,
  .one3d-mobile-view .one3d-variants-packs-features-mobile {
    display: block;
  }
  #one3d-variant-features-tabs-nav > li::after {
    top: -8px;
    z-index: 2;
    bottom: auto;
    border-top: 14px solid transparent;
    border-bottom: 14px solid #1b54aa;
  }
  #one3d-variant-features-tabs-nav > li.active::after {
    -webkit-transform: translateY(-13px);
    -moz-transform: translateY(-13px);
    transform: translateY(-13px);
  }
  .one3d-footer-panel-box .one3d-variant-selected,
  .one3d-footer-panel-box .one3d-footer-pack-name {
    position: relative;
    font-weight: normal;
    color: #555;
  }
  .one3d-footer-panel-box .one3d-variant-selected::after,
  .one3d-footer-panel-box .one3d-footer-pack-name::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #e83323;
  }
  .one3d-footer-panel-box .one3d-font-18 {
    font-size: 14px;
  }
  .one3d-variant-selected-mobile,
  .one3d-footer-pack-selected {
    line-height: 40px;
    padding: 0 20px;
  }
  .one3d-features-list > li span {
    left: 0;
    position: relative;
    padding: 0 10px;
    width: auto;
    line-height: 36px;
  }
  .one3d-footer-customise-mobile {
    color: #e83323;
    padding-left: 20px;
  }
  .one3d-variants-listing-wrapper {
    height: auto;
  }
  .one3d-features-panel-footer {
    padding: 5px 10px;
  }
  .one3d-build-n-price-btn {
    padding: 9px 10px;
  }
  #one3d-variant-features-tabs-nav > li a {
    padding: 12px 6px;
  }
  .one3d-features-main-list-back-mobile {
    position: absolute;
    top: -42px;
    left: 0;
    z-index: 2;
    height: 42px;
    width: 36px;
    background: #000;
  }
  .one3d-features-main-list-back-mobile-icon {
    width: 30px;
    height: 30px;
    background-image: url(../images/one3d-close-mobile.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 7px 0 0;
  }
  .one3d-footer-back {
    width: 30px;
    height: 30px;
    background-image: url(../images/one3d-close-mobile.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 9px 0 0 5px;
    padding: 0;
    border: 0;
    padding: 0;
  }
  .one3d-carvariants-list {
    flex-direction: row;
    padding-left: 0;
  }
  .one3d-footer-panel-box-variants,
  .one3d-footer-panel-box-packs {
    height: 44px;
    padding: 0;
    background-color: #000;
  }
  .one3d-carvariants-label {
    line-height: 42px;
    padding-right: 18px;
    padding-left: 18px;
    position: relative;
  }
  .one3d-carvariants-label::after {
    content: "";
    position: absolute;
    right: 0;
    top: 7px;
    background-color: #353535;
    width: 2px;
    height: 28px;
    left: auto;
  }
  .one3d-carvariants-list li:last-child .one3d-carvariants-label::after {
    display: none;
  }
  .one3d-carvariants-list li {
    padding: 0;
  }
  .one3d-footer-box-packs-list li {
    margin: 0;
  }
  .one3d-footer-box-seats-item label,
  .one3d-footer-box-packs-item label {
    line-height: 42px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: normal;
  }
  .one3d-footer-box-packs-item label {
    padding-left: 34px;
    padding-right: 45px;
  }
  .one3d-filter-packs-label::before {
    top: 8px;
  }
  .one3d-selected .one3d-filter-packs-label::before {
    opacity: 0.4;
  }
  .one3d-footer-box-packs-remove {
    line-height: 40px;
  }
  .one3d-customise-mobile-panel-show #one3d-features-panel-desktop {
    opacity: 1;
    width: 100%;
  }
  .one3d-customise-mobile-panel-show
    #one3d-features-panel-desktop
    .one3d-features-panel-box {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    width: 100%;
  }
  .one3d-customise-mobile-panel-show
    #one3d-features-panel-desktop
    .one3d-features-panel-inner {
    width: 100%;
    background: #000;
  }
  .one3d-customise-mobile-panel-show
    #one3d-features-panel-desktop
    .one3d-features-panel-customise {
    bottom: auto;
    top: 0;
  }
  .one3d-customise-mobile-panel-show
    #one3d-features-panel-desktop
    .one3d-features-panel-footer {
    display: none;
  }
  .one3d-customise-mobile-panel-show
    #one3d-features-panel-desktop
    .one3d-variant-features-tabs-wrap {
    display: none;
  }
  .one3d-customise-mobile-panel-show .one3d-customise-heading {
    font-size: 24px;
    line-height: 36px;
    border-bottom: 2px solid #343434;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .one3d-close-customise-panel-button {
    display: block;
  }
  .one3d-apply-filter-mobile {
    display: block;
  }
  .one3d-carvariants-list .active .one3d-carvariants-label {
    color: #777;
    pointer-events: none;
    cursor: auto;
  }
  .one3d-toggle-color-options {
    margin-bottom: -2px;
  }
  .one3d-footer-box-packs-list > li {
    position: relative;
  }
  .one3d-footer-box-packs-list .one3d-filter-packs-label::after {
    content: "";
    position: absolute;
    right: 0;
    top: 7px;
    background-color: #353535;
    width: 2px;
    height: 28px;
    left: auto;
  }
  .one3d-footer-box-packs-list li:last-child .one3d-filter-packs-label::after {
    display: none;
  }
  .one3d-footer-box-packs-list .one3d-remove-pack-button {
    right: 10px;
    top: 13px;
  }
  .one3d-footer-box-packs-list .one3d-selected .one3d-filter-packs-label {
    padding-right: 45px;
  }
  .one3d-on-variant-change #one3d-variants-packs-features-mobile,
  .one3d-on-variant-change #one3d-features-panel-footer-mobile,
  .one3d-on-variant-change .one3d-home-screenview {
    opacity: 0.4;
    pointer-events: none;
    z-index: 2;
  }
  .one3d-toggle-view-box .one3d-row {
    margin-right: 10px;
  }
  .one3d-on-variant-change .one3d-loaderCar {
    top: 40%;
  }
  .one3d-on-variant-change .one3d-home-screenview {
    display: none !important;
  }
  #one3d-features-panel-desktop {
    opacity: 1 !important;
  }
  .one3d-features-list-dropdown > li {
    white-space: nowrap;
  }
  .one3d-footer-panel-box-packs-in .one3d-pack-highlights {
    display: none;
  }
  .one3d-info-pack-button {
    display: block;
  }
  .one3d-footer-panel-box-packs-in .one3d-remove-pack-button {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .one3d-popup-information.one3d-static-info .one3d-product-image {
    max-width: 100%;
    margin-right: 0;
  }
  .one3d-popup-information .one3d-product-image video {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
  }
  #one3dLoaderGif {
    width: 320px;
  }
  .one3d-features-panel-toggle .one3d-popup-information.one3d-video-info {
    padding-right: 0;
  }
  .one3d-popup-wrapper .one3d-static-info .one3d-close-popup {
    position: absolute;
    right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .one3d-tutorial-outer {
    max-width: 600px;
    padding: 30px;
  }
  .one3d-loader-percentage {
    top: -92px;
    font-size: 90px;
  }
  .one3d-loaderCar video {
    top: 0;
  }
  .one3d-features-showcase-box p {
    height: 110px;
  }
  .one3d-features-showcase-special-list {
    top: -55px;
  }
  .one3d-features-showcase-slider-wrap .owl-carousel .owl-nav button:hover {
    background: #000;
  }
  .one3d-carousel-features .owl-carousel .owl-item img {
    height: calc(76vh - 240px);
    object-fit: contain;
  }
  .fullScreenView .one3d-carousel-features .owl-carousel .owl-item img {
    height: calc(90vh - 240px);
    object-fit: contain;
  }
}
@media screen and (max-width: 767px) {
  .one3d-loaderCar video {
    position: relative;
    right: 0;
    bottom: 0;
    width: 320px !important;
    height: 320px !important;
  }
  .one3d-main-section {
    height: 85svh;
  }
  .fullScreenView .one3d-main-section { 
    height: 100vh;
  }
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none !important;
}
/***New Code***/
@media screen and (min-width: 768px) and (max-width: 992px) and (-webkit-min-device-pixel-ratio: 2) {
  #one3d-rotate-device {
    display: none !important;
  }
}
@media screen and (min-width: 810px) and (max-width: 1080px) and (-webkit-min-device-pixel-ratio: 2) {
  #one3d-rotate-device {
    display: none !important;
  }
}
@media screen and (min-width: 834px) and (max-width: 1367px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .one3d-loader-percentage {
    top: -50px;
  }
  .one3d-mobile-tutorial-image {
    display: block;
  }
  .one3d-desktop-tutorial-image {
    display: none;
  }
  .one3d-scroll-to-zoom {
    display: none;
  }
  .one3d-pinch-to-zoom {
    display: block;
  }
  .one3d-features-showcase-slider-wrap .owl-carousel .owl-nav button:hover {
    background: #000;
  }
  .one3d-carousel-features .owl-carousel .owl-dots {
    bottom: 12px;
  }
  .one3d-features-showcase-slider-wrap {
    margin-top: 15px;
  }
  .one3d-features-showcase-box {
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1367px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  #one3d-rotate-device,
  .one3d-rotate-device {
    display: none !important;
  }
  .one3d-loader-percentage {
    top: -100px;
  }
  .one3d-features-list > li span {
    position: relative;
    padding-left: 10px;
  }
  .one3d-main-section {
    height: 85svh;
  }
  #one3dcanvas.one3d-canvas-resize {
    width: calc(100% - 360px);
  }
  .one3d-mobile-tutorial-image {
    display: block;
  }
  .one3d-desktop-tutorial-image {
    display: none;
  }
  .one3d-scroll-to-zoom {
    display: none;
  }
  .one3d-pinch-to-zoom {
    display: block;
  }
  .one3d-features-showcase-slider-wrap {
    margin-top: 15px;
  }
  .one3d-features-showcase-box {
    padding-bottom: 10px;
  }
  .one3d-features-bottom-mobile {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1367px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .one3d-features-list > li span {
    position: relative;
    padding-left: 10px;
  }
  .one3d-main-section {
    height: 85svh;
  }
  .one3d-features-showcase-slider-wrap .owl-carousel .owl-nav button:hover {
    background: #000;
  }
}
@media screen and (min-width: 300px) and (max-width: 1100px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  #one3d-rotate-device {
    display: block !important;
  }
}
.owl-nav .disabled {
  pointer-events: none;
  opacity: 0.7;
}
@media screen and (max-width: 362px) {
  .one3d-build-n-price-btn {
    padding: 9px 7px;
    font-size: 12px;
    right: 10px;
  }
  .one3d-features-panel-footer {
    padding: 6px 0;
  }
  .one3d-selected-variant-portion .one3d-font-18 {
    font-size: 15px;
  }
  .one3d-on-variant-change #one3d-variants-packs-features-mobile,
  .one3d-on-variant-change #one3d-features-panel-footer-mobile,
  .one3d-on-variant-change .one3d-home-screenview {
    display: none !important;
  }
  .one3d-on-variant-change .one3d-loaderCar {
    top: 50%;
  }
}
.iPhone .one3d-screenview,
.one3d-iPad .one3d-screenview {
  display: none !important;
}
.fullScreenView .one3d-home {
  display: none;
}
.one3d-radio-switch input {
  z-index: 2;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 22px;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
}
.one3d-radio-switch input:checked {
  z-index: 1;
}
.one3d-radio-switch input:checked + label {
  font-weight: bold !important;
}
@media screen and (max-width: 1366px) and (max-height: 768px) {
  .one3d-features-panel-customise {
    padding: 4px 20px;
    background-color: #171717;
  }
  .one3d-customise-heading {
    margin: 0 0 4px;
  }
  .one3d-customise-fts-wrap {
    margin-top: 4px;
  }
  .one3d-customise-fts-option-icon-text {
    margin-bottom: 2px;
  }
  .one3d-variant-packs-dropdown > li .one3d-pack-highlights {
    top: 0;
    position: relative;
  }
  .one3d-tutorial-outer {
    padding: 10px;
  }
  .one3d-variant-packs-dropdown > li.one3d-selected .one3d-pack-highlights {
    padding-bottom: 30px;
  }
}
/* changecolorbox(defaultVariant); */
