:not(:defined) > * {
  display: none;
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

model-viewer {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.Hotspot {
  background: #fff;
  border-radius: 32px;
  border: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  cursor: pointer;
  height: 24px;
  padding: 8px;
  position: relative;
  transition: opacity 0.3s;
  width: 24px;
  display: none;
}

.Hotspot:not([data-visible]) {
  background: transparent;
  border: 4px solid #fff;
  box-shadow: none;
  height: 32px;
  pointer-events: none;
  width: 32px;
}

.Hotspot:focus {
  border: 4px solid rgb(0, 128, 200);
  height: 32px;
  outline: none;
  width: 32px;
}

.Hotspot > * {
  opacity: 1;
  transform: translateY(-50%);
}

.HotspotAnnotation {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.8);
  display: block;
  font-family: Futura, Helvetica Neue, sans-serif;
  font-size: 18px;
  font-weight: 700;
  left: calc(100% + 1em);
  max-width: 128px;
  overflow-wrap: break-word;
  padding: 0.5em 1em;
  position: absolute;
  top: 50%;
  display: none;
  width: max-content;
}

.Hotspot:not([data-visible]) > * {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% + 4px));
  transition: transform 0.3s, opacity 0.3s;
}

.progress-bar {
  display: block;
  width: 33%;
  height: 10%;
  max-height: 2%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 25px;
  box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.5),
    0px 0px 5px 1px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background-color: rgba(0, 0, 0, 0.5);
}

.progress-bar.hide {
  visibility: hidden;
  transition: visibility 0.3s;
}

.update-bar {
  background-color: rgba(255, 255, 255, 0.9);
  width: 0%;
  height: 100%;
  border-radius: 25px;
  float: left;
  transition: width 0.3s;
}

#ar-button {
  background-image: url(ar_icon.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 12px 50%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  bottom: 16px;
  padding: 0px 16px 0px 40px;
  font-family: Roboto Regular, Helvetica Neue, sans-serif;
  font-size: 14px;
  color: #4285f4;
  height: 36px;
  line-height: 36px;
  border-radius: 18px;
  border: 1px solid #dadce0;
}

#ar-button:active {
  background-color: #e8eaed;
}

#ar-button:focus {
  outline: none;
}

#ar-button:focus-visible {
  outline: 1px solid #4285f4;
}

@keyframes circle {
  from {
    transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg);
  }
}

@keyframes elongate {
  from {
    transform: translateX(100px);
  }
  to {
    transform: translateX(-100px);
  }
}

model-viewer > #ar-prompt {
  position: absolute;
  left: 50%;
  bottom: 60px;
  animation: elongate 2s infinite ease-in-out alternate;
  display: none;
}

model-viewer[ar-status="session-started"] > #ar-prompt {
  display: block;
}

model-viewer > #ar-prompt > img {
  animation: circle 4s linear infinite;
}

#loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  z-index: 9999;
}
.loader-animation {
  width: 100%;
}

#progress-bar {
  width: 50%;
  height: 20px;
  /* background: #ddd; */
  background-color: #f7f7f7;
  box-shadow: #0c0c0c -2px 2px 4px 0px inset;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}

#progress-fill {
  height: 100%;
  width: 0%;
  background: rgb(222, 74, 15);
  background: linear-gradient(
    45deg,
    rgba(222, 74, 15, 1) 0%,
    rgba(249, 199, 79, 1) 100%
  );
}

#loader-text {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
  text-align: center;
}

.details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  padding: 8px 30px;
}

.details h2 {
  color: #fff;
}

.adBtns {
  padding: 12px 10px;
  background-color: white;
  border-radius: 50%;
}

p.close-btn img {
  width: 20px;
}

p.close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

#info-box {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  display: none;
  max-width: 300px;
  z-index: 100;
}

.mainsdivstyle {
  display: none;
  min-height: 155px;
  min-width: 270px;
  border: 1px solid #000;
  opacity: 90%;
  font-size: 18px;
  position: absolute;
  /* padding: 5px 10px 5px 10px; */
  padding: 3px;
  line-height: 1.5em;
  left: 10%;
  top: 17%;
  /* margin-bottom: 20px; */
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  max-width: 450px;
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  overflow: hidden;
  z-index: 11;
}

.blob {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  min-width: 250px;
  min-height: 150px;
  border-radius: 50%;
  background-color: #478cd8;
  padding: 8px;
  opacity: 1;
  filter: blur(12px);
  animation: blob-bounce 5s infinite ease;
}

.bg {
  position: relative;
  min-width: 270px;
  min-height: 150px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.95;
  /* outline: 2px solid white; */
}

.bg ul {
  margin: 15px 10px;
  padding-left: 20px;
}

.bg ul li {
  list-style-type: circle;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

.mainsdivstyle.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.horibaLogo {
  height: 40px;
  width: 180px;
}

.topContainer {
  position: absolute;
  top: 5%;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.cardTitle {
  /* padding: 10px 10px; */
  margin: 0;
  font-size: 1.2em;
  font-weight: 600;
  color: #333;
  /* background-color: #f8f9fa;
  border-bottom: 1px solid #eee; */
}

.refreshBtn {
  /* position: absolute; */
  float: right;
  padding: 8px 10px;
  right: 2%;
  bottom: 6%;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -3px 3px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -4.8px 4px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -6.7px 5.3px 0px inset,
    rgba(0, 0, 0, 0.06) 0px 0.3px 0.3px, rgba(0, 0, 0, 0.09) 0px 0.5px 0.5px,
    rgba(0, 0, 0, 0.09) 0px 1.1px 1.1px, rgba(0, 0, 0, 0.09) 0px 2.1px 2.1px,
    rgba(0, 0, 0, 0.09) 0px 4.3px 4.3px;
  transition: transform 0.3s, box-shadow 0.3s;
  background: rgb(223, 225, 235);
}

.audioBtn {
  /* position: absolute; */
  float: right;
  padding: 8px 10px;
  right: 2%;
  bottom: 15%;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -3px 3px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -4.8px 4px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -6.7px 5.3px 0px inset,
    rgba(0, 0, 0, 0.06) 0px 0.3px 0.3px, rgba(0, 0, 0, 0.09) 0px 0.5px 0.5px,
    rgba(0, 0, 0, 0.09) 0px 1.1px 1.1px, rgba(0, 0, 0, 0.09) 0px 2.1px 2.1px,
    rgba(0, 0, 0, 0.09) 0px 4.3px 4.3px;
  transition: transform 0.3s, box-shadow 0.3s;
  background: rgb(223, 225, 235);
}
.lightBtn {
  /* position: absolute; */
  float: right;
  padding: 8px 10px;
  right: 2%;
  bottom: 24%;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -3px 3px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -4.8px 4px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -6.7px 5.3px 0px inset,
    rgba(0, 0, 0, 0.06) 0px 0.3px 0.3px, rgba(0, 0, 0, 0.09) 0px 0.5px 0.5px,
    rgba(0, 0, 0, 0.09) 0px 1.1px 1.1px, rgba(0, 0, 0, 0.09) 0px 2.1px 2.1px,
    rgba(0, 0, 0, 0.09) 0px 4.3px 4.3px;
  transition: transform 0.3s, box-shadow 0.3s;
  background: rgb(223, 225, 235);
}

.lightactive {
  display: block !important;
}

.shareBtn {
  /* position: absolute; */
  float: right;
  padding: 7px 10px;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -3px 3px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -4.8px 4px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -6.7px 5.3px 0px inset,
    rgba(0, 0, 0, 0.06) 0px 0.3px 0.3px, rgba(0, 0, 0, 0.09) 0px 0.5px 0.5px,
    rgba(0, 0, 0, 0.09) 0px 1.1px 1.1px, rgba(0, 0, 0, 0.09) 0px 2.1px 2.1px,
    rgba(0, 0, 0, 0.09) 0px 4.3px 4.3px;
  transition: transform 0.3s, box-shadow 0.3s;
  /* margin-left: 6px; */
  background: rgb(223, 225, 235);
}

.audioBtn:active,
.lightBtn:active,
.shareBtn:active {
  transform: translateY(5px);
  transition: 200ms;
}
.refreshBtn:active {
  transform: translateY(5px);
  transition: 200ms;
}

#hotspotContainer {
  position: absolute;
  top: 15vh;
  left: 1%;
  z-index: 10;
  padding: 0 20px;
}

.rotator {
  transform: rotate(180deg);
  transition: 450ms;
}

/* ----------------------------------------new loader--------------------------------- */

/* From Uiverse.io by KSAplay */
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.loading-text {
  color: rgb(6, 6, 6);
  font-size: 14pt;
  font-weight: 600;
  margin-left: 10px;
}

.dot {
  margin-left: 3px;
  animation: blink 1.5s infinite;
}
.dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
}

.loading-bar-background {
  --height: 30px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 5px;
  min-width: 400px;
  height: var(--height);
  background-color: #212121 /*change this*/;
  box-shadow: #0c0c0c -2px 2px 4px 0px inset;
  border-radius: calc(var(--height) / 2);
}

.loading-bar {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  --height: 20px;
  width: 0%;
  height: var(--height);
  overflow: hidden;
  background: rgb(222, 74, 15);
  background: linear-gradient(
    0deg,
    rgba(222, 74, 15, 1) 0%,
    rgba(249, 199, 79, 1) 100%
  );
  border-radius: calc(var(--height) / 2);
  animation: loading 4s ease-out infinite;
}

.white-bars-container {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 18px;
}

.white-bar {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  width: 10px;
  height: 45px;
  opacity: 0.3;
  rotate: 45deg;
}

@keyframes loading {
  0% {
    width: 0;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* ------------------------------------------Range---------------------------------------- */

.slider {
  /* slider */
  --slider-width: 100%;
  --slider-height: 50px;
  --slider-bg: rgb(82, 82, 82);
  --slider-border-radius: 9px;
  /* level */
  --level-color: #fff;
  --level-transition-duration: 0.1s;
  /* icon */
  --icon-margin: 15px;
  --icon-color: var(--slider-bg);
  --icon-size: 25px;
}

.slider {
  position: relative;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider .volume {
  display: inline-block;
  vertical-align: top;
  margin-right: var(--icon-margin);
  color: var(--icon-color);
  width: var(--icon-size);
  height: auto;
  position: absolute;
  left: 0;
  pointer-events: none;
}

.slider .level {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--slider-width);
  height: var(--slider-height);
  background: var(--slider-bg);
  overflow: hidden;
  border-radius: var(--slider-border-radius);
  -webkit-transition: height var(--level-transition-duration);
  -o-transition: height var(--level-transition-duration);
  transition: height var(--level-transition-duration);
  cursor: inherit;
  transform: rotate(270deg);
  width: 65px;
  height: 8px;
  position: absolute;
  left: -75px;
  top: -40px;
}

.slider .level::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  -webkit-box-shadow: -200px 0 0 200px var(--level-color);
  box-shadow: -200px 0 0 200px var(--level-color);
}
.slider .level::-moz-range-thumb {
  width: 0;
  height: 0;
  border-radius: 0;
  border: none;
  box-shadow: -200px 0 0 200px var(--level-color);
}

/* ------------------------------------------Range---------------------------------------- */

#hotspotContainer2 {
  position: absolute;
  top: 15vh;
  right: 1%;
  z-index: 10;
  padding: 10px 20px;
  gap: 15px;
  display: flex;
  flex-direction: column;
}
.key-ad {
  gap: 4px;
}

.lowerBtnContainer {
  position: absolute;
  right: 1%;
  top: 53%;
  z-index: 10;
  padding: 20px;
}

.content-container {
  position: absolute;
  bottom: 8%;
  right: 8%;
  background-color: #e8eaed;
  /* border-radius: 12px; */
  min-height: 400px;
  width: 85%;
  display: none;
}

.btnContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  position: relative;
}

.lowerBtns {
  display: none;
  justify-content: center;
  gap: 15px;
  position: absolute;
  right: 90%;
  top: 0;
}
.lowerBtns2 {
  display: none;
  justify-content: center;
  gap: 15px;
  position: absolute;
  left: 90%;
  top: 2%;
  padding: 8px;
}

.horibaLogo.loading-screen {
  position: absolute;
  top: 2%;
  left: 2%;
}

.shareBtnContainer {
  /* position: absolute; */
  padding: 10px;
  margin-left: -5%;
  margin-bottom: 4px;
  /* left: 2%;
  top: 68%; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  gap: 15px;
}

/* ------------ */

.description {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.hotspot-container {
  padding: 25px;
}

.hotspot-item {
  /* margin-bottom: 15px; */
  border-radius: 10px;
  /* overflow: hidden; */
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hotspot-item p {
  color: white;
  font-size: 12px;
  padding-top: 4px;
}
.leftButtonContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.leftButtonContainer p {
  color: #fff;
  font-size: 12px;
  padding-top: 4px;
  margin-bottom: 0;
}
.lowerBtns .leftButtonContainer {
  z-index: 10;
  padding: 0px 15px;
}

.formBtn {
  box-shadow: rgba(0, 0, 0, 0.17) 0px -3px 3px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -4.8px 4px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -6.7px 5.3px 0px inset,
    rgba(0, 0, 0, 0.06) 0px 0.3px 0.3px, rgba(0, 0, 0, 0.09) 0px 0.5px 0.5px,
    rgba(0, 0, 0, 0.09) 0px 1.1px 1.1px, rgba(0, 0, 0, 0.09) 0px 2.1px 2.1px,
    rgba(0, 0, 0, 0.09) 0px 4.3px 4.3px;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  /* margin-bottom: 20px; */
  background: rgb(223, 225, 235);
  padding: 5px 29px;
  /* display: none; */
}

.hotspot-header {
  /* height: 50px;
  width: 50px; */
  background: #fff;
  padding: 12px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  /* transition: background 0.3s; */
  background: rgb(223, 225, 235);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -3px 3px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -4.8px 4px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -6.7px 5.3px 0px inset,
    rgba(0, 0, 0, 0.06) 0px 0.3px 0.3px, rgba(0, 0, 0, 0.09) 0px 0.5px 0.5px,
    rgba(0, 0, 0, 0.09) 0px 1.1px 1.1px, rgba(0, 0, 0, 0.09) 0px 2.1px 2.1px,
    rgba(0, 0, 0, 0.09) 0px 4.3px 4.3px;
  /* margin-right: 10px; */
  border: none;
}

.adBtns {
  box-shadow: rgba(0, 0, 0, 0.17) 0px -3px 3px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -4.8px 4px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -6.7px 5.3px 0px inset,
    rgba(0, 0, 0, 0.06) 0px 0.3px 0.3px, rgba(0, 0, 0, 0.09) 0px 0.5px 0.5px,
    rgba(0, 0, 0, 0.09) 0px 1.1px 1.1px, rgba(0, 0, 0, 0.09) 0px 2.1px 2.1px,
    rgba(0, 0, 0, 0.09) 0px 4.3px 4.3px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border: none;
  background: rgb(223, 225, 235);
}

.adBtns:active {
  transform: translateY(5px);
  transition: 200ms;
}
.hotspot-header:active,
.formBtn:active {
  transform: translateY(5px);
  transition: 200ms;
}

.hotspot-header h3 {
  color: #fff;
  font-weight: 600;
  margin: 8px 0;
}

.hotspot-header i {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.hotspot-content {
  background: #cdcdcd3d;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.3s;
  top: 22px;
  position: absolute;
  right: 65px;
  display: none;
}

.hotspot-content ul {
  padding: 0 25px 20px;
  list-style-type: none;
}

.hotspot-content li {
  padding: 12px 0;
  color: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: flex-start;
}

.hotspot-content li:last-child {
  border-bottom: none;
}

.hotspot-content li i {
  color: #fdbb2d;
  margin-right: 12px;
  margin-top: 5px;
  font-size: 0.9rem;
}

.hotspot-item.active .hotspot-content {
  max-height: 500px;
  padding: 10px 0;
  display: block;
}

.fas.fa-chevron-down {
  color: white;
}

.instructions {
  text-align: center;
  margin-top: 25px;
  color: white;
  font-size: 1.1rem;
  max-width: 600px;
}
.hotspot-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  margin-left: -15px;
  background-color: #86befb;
  padding: 8px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -3px 3px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -4.8px 4px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -6.7px 5.3px 0px inset,
    rgba(0, 0, 0, 0.06) 0px 0.3px 0.3px, rgba(0, 0, 0, 0.09) 0px 0.5px 0.5px,
    rgba(0, 0, 0, 0.09) 0px 1.1px 1.1px, rgba(0, 0, 0, 0.09) 0px 2.1px 2.1px,
    rgba(0, 0, 0, 0.09) 0px 4.3px 4.3px;
}

.horibaLogo img {
  /* height: 100%; */
  width: 100%;
}

.why_choose_list li {
  list-style: disc;
  margin-bottom: 20px !important;
  padding: 8px 16px;
}
.why-choose .tube-holder {
  padding: 0;
}
.app-box .tube-holder {
  padding: 0;
}

.list-item-icon {
  background-color: #478cd8;
  padding: 3px 8px;
  color: #fff;
  border-radius: 50%;
  margin-right: 4px;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why_choose_list li {
  border-left: 5px solid blue;
}

.card_body p {
  color: #004d98;
  font-weight: 500;
}
.card.key-advantages {
  border: none;
  margin-bottom: 20px;
  /* width: 350px; */
}
.card.key-advantages .tube-holder {
  height: 80px;
  width: 80px;
  margin: auto;
  margin-bottom: 20px;
}
.card.key-advantages p {
  margin-bottom: 8px;
}

h4.key-main {
  min-height: 58px;
  color: #004d98;
}

.horiba-blue {
  color: #478cd0;
}
.horibaBg {
  background-color: #478cd0;
}
.modal-title {
  color: white;
  background-color: #478cd0;
}
.modal-header {
  background-color: #478cd0;
}
.modal-header button {
  background-color: white;
}

.why-choose .tube-holder {
  height: 100%;
  width: 100%;
}
.why-choose,
.key-advantages {
  gap: 4px;
}

.p1-name {
  font-weight: 600;
  min-height: 50px;
  margin-bottom: 8px;
}

.tube-holder {
  height: 100px;
  width: 100px;
  margin: 0 auto;
  margin-bottom: 20px;
  border: 1px solid;
  border-radius: 12px;
  overflow: hidden;
}
.tube-holder img {
  height: 100%;
  width: 100%;
}

.app-box {
  gap: 4px;
  margin: auto !important;
}

.app-box .card_body p {
  max-width: 200px;
}
.key-advantages p:first-child {
  font-weight: 600;
  height: 50px;
  margin-bottom: 8px;
}

.leftmobilebutton {
  display: none;
}
.rightmobilebutton {
  display: none;
}

.modal-body {
  overflow-x: auto;
}
.card_body {
  border: none;
}

/* --------------------------loader animation------------------------------------- */

.loader-animation {
  width: 900px;
}
.loader-animation img {
  width: 80%;
}
.model-instructions {
  width: 575px;
  background: linear-gradient(45deg, transparent, #ced7e3);
  border-radius: 20px;
}
.model-instructions ul li {
  font-size: 13px;
  margin-bottom: 12px;
  list-style: none;
  display: flex;
}
.model-instructions ul li img {
  height: 25px;
  width: 25px;
  margin-right: 8px;
}
/* From Uiverse.io by bociKond */
.spinner {
  width: 30.4px;
  height: 30.4px;
  /* --clr: rgb(247, 197, 159); */
  --clr: #478cd0;
  --clr-alpha: rgb(247, 197, 159, 0.1);
  animation: spinner 1.6s infinite ease;
  transform-style: preserve-3d;
}

.spinner > div {
  background-color: var(--clr-alpha);
  height: 100%;
  position: absolute;
  width: 100%;
  border: 3.5px solid var(--clr);
}

.spinner div:nth-of-type(1) {
  transform: translateZ(-35.2px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
  transform: rotateY(-270deg) translateX(50%);
  transform-origin: top right;
}

.spinner div:nth-of-type(3) {
  transform: rotateY(270deg) translateX(-50%);
  transform-origin: center left;
}

.spinner div:nth-of-type(4) {
  transform: rotateX(90deg) translateY(-50%);
  transform-origin: top center;
}

.spinner div:nth-of-type(5) {
  transform: rotateX(-90deg) translateY(50%);
  transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
  transform: translateZ(35.2px);
}

@keyframes spinner {
  0% {
    transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
  }

  50% {
    transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
  }

  100% {
    transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
  }
}
/* --------------------------loader animation-end--------------------------------- */

/* ------------------------------------   Modal   -------------------------------------------------------- */

.modal-body ul li {
  margin-bottom: 15px;
}
.modal-header {
  border: 1px solid #80808042;
}

form .form-check-label {
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  .app-box {
    gap: 0;
  }
  .key-ad {
    gap: 0px;
  }
  .why-choose {
    gap: 0;
  }
  .p1-name {
    height: 40px;
  }
  h4.key-main {
    height: 40px;
  }
  #hotspotContainer {
    display: none;
  }
  #hotspotContainer2 {
    display: none;
  }
  .leftmobilebutton {
    position: absolute;
    top: 45%;
    font-size: 25px;
    color: #fff;
    left: 0;
    background-color: #212121;
    padding: 16px 4px;
    border-bottom-right-radius: 50%;
    border-top-right-radius: 50%;
    display: flex;
    z-index: 20;
  }
  .rightmobilebutton {
    position: absolute;
    top: 45%;
    font-size: 25px;
    color: #fff;
    right: 0;
    background-color: #212121;
    padding: 16px 4px;
    border-bottom-left-radius: 50%;
    border-top-left-radius: 50%;
    display: flex;
    z-index: 20;
  }

  .refreshBtn img {
    width: 20px;
    bottom: 55px;
  }

  .hotspot-header h3 {
    font-size: 16px;
    padding: 4px 0;
    margin: 4px 0;
  }
  .lowerBtns {
    gap: 0;
  }
  .lowerBtns .leftButtonContainer {
    padding: 0 8px;
  }
  .hotspot-item {
    margin-bottom: 8px;
  }
  .horibaLogo {
    height: 30px;
    width: 140px;
  }

  .lowerBtnContainer {
    padding: 20px 10px;
  }
  .shareBtn {
    left: 6%;
  }
  .lightBtn {
    right: 3%;
  }
  .formBtn {
    font-size: 13px;
  }
  .leftButtonContainer p {
    font-size: 7px;
  }
  .hotspot-item p {
    font-size: 7px;
    margin-bottom: 8px;
  }
  .app-box {
    width: 100%;
  }
  .tube-holder {
    height: 60px;
    width: 60px;
    margin-bottom: 0;
  }

  .card_body p {
    font-size: 12px;
  }

  .card.key-advantages .tube-holder {
    height: 60px;
    width: 60px;
  }
  .app-box p {
    font-size: 16px;
  }
  .key-main {
    font-size: 16px;
  }

  .loader-content {
    display: none;
  }
  .loader-animation img {
    width: 50%;
  }
}
