@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Home startup essentials promoted from botstyle.css */
#spinner .processing a:active {
  opacity: 0.4;
}

#spinner .processing a {
  border-bottom: none;
  transition: 0.1s ease opacity;
  margin-top: 16px;
  height: 32px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #06c;
  font-size: 14px;
}

#spinner {
  background-color: #000 !important;
  background-image: url("./images/welcome_image.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  height: 100dvh;
  min-height: 100vh;
  width: 100%;
  max-width: 630px;
  margin: 0;
  position: fixed;
  inset: 0 auto 0 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-direction: column;
  overflow: hidden;
}

#spinner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 0;
}

.processing {
  color: #777;
  max-width: 70%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.topContainer.chatContainer {
  height: 100%;
  overflow-y: auto;
  padding-top: 54px;
}

.chat-header {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 198;
  width: 100%;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: 54px;
}

.chat-header img {
  width: 4rem;
}

.bottomContainer.inputContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  bottom: 0;
  background-color: #f6f4f280;
  z-index: 11;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.playgroundContainer.expUX {
  max-width: 630px;
}

.welcome-page {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 630px;
  transform: translateX(-50%);
  height: 100svh;
  min-height: 100svh;
  z-index: 200;
  background: url(./images/welcome_image.webp) no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.welcome-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 2.5rem 1.103rem;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
  position: relative;
  overflow: hidden;
}

@supports (height: 100dvh) {
  .welcome-page {
    height: 100dvh;
    min-height: 100dvh;
  }
}

.welcome-page .welcome-wrapper .welcome-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.welcome-page .welcome-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

.welcome-wrapper.video-ready video {
  opacity: 1;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 10.87%,
    rgba(0, 0, 0, 0.3) 20.87%,
    rgba(0, 0, 0, 0.4) 30.87%,
    rgba(0, 0, 0, 0.7) 100%
  );
  left: 0;
}

.welcome-wrapper .welcome-title,
.welcome-wrapper .welcome-subhead,
.welcome-wrapper .welcome-brief,
.welcome-wrapper .welcome-button {
  z-index: 2;
}

.welcome-page.hideWelcome {
  display: none;
  transform: translateX(100%);
}

.alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.alert-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transform: scale(0.9);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.alert-overlay.show {
  opacity: 1;
  display: flex;
}

.alert-overlay.show .alert-box {
  transform: scale(1);
  opacity: 1;
}

.alert-message {
  margin-bottom: 20px;
  font-size: 1rem;
}

.login-open-btn,
.alert-button {
  background: #000;
  min-height: 3rem;
  margin-top: 0.5rem;
  border-radius: 1rem;
}

.login-open-btn {
  min-height: 0;
  padding: 0;
}

.login-open-btn span {
  font-size: var(--common-font);
  font-weight: 600;
  color: #fff;
}

.alert-button {
  min-height: 2.5rem;
  min-width: 7rem;
  border-radius: 8px;
}

.alert-button span {
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(
    89.69deg,
    #e7bf88 0.24%,
    #ffdd9d 20.13%,
    #fff2cd 49.97%,
    #ffdd9d 79.31%,
    #e7bf88 99.7%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-top-bar {
  font-size: 2rem;
  padding-bottom: 16px;
  font-weight: 800;
}

.login-page {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: 199;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 1.471rem;
}

.login-page.view {
  display: flex;
}

.login-page.fore-ground {
  z-index: 201 !important;
}

.login-img-wrapper {
  width: 100%;
  height: 14rem;
  border-radius: 0.5rem;
  overflow: hidden;
  align-self: center;
  flex-shrink: 0;
}

.login-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.login-header {
  font-size: 1.324rem;
  font-weight: 600;
}

.login-decription {
  margin-top: 0.588rem;
  font-size: 1.029rem;
  color: #afafaf;
}

.login-field {
  display: flex;
  flex-direction: column;
  font-size: 1.029rem;
  margin-top: 1rem;
}

.login-field:first-child {
  margin-top: 0;
}

.login-field input {
  margin-top: 0.294rem;
  font-size: 1.029rem;
  padding: 0.882rem;
  background-color: #f4f5f7;
  outline: none;
  border: 1px solid #d3d3d3;
  border-radius: 6px;
}

.login-field input:focus {
  border-color: #d7be97;
}

.login-field.hidden,
.name-fields-wrap.hidden,
.number-fields-wrap.hidden,
.login-close-btn.hidden {
  display: none !important;
}

.number-fields-wrap {
  margin-top: 1.5rem;
}

.login-error {
  font-size: 12px;
  min-height: 36.4px;
  padding-top: 0.5rem;
  text-align: center;
  color: #b61b28;
}

.login-button {
  width: 100%;
  margin-top: 1.2rem;
  display: flex;
  min-height: 3rem;
  min-width: 9rem;
  background: var(--gold-gradient);
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-close-btn,
.login-skip-btn {
  background: transparent;
  padding: 0;
  font-size: 0.9rem;
}

.login-close-btn {
  margin-top: 1.15rem;
  margin-bottom: 1rem;
}

.login-skip-btn {
  margin-bottom: 1rem;
}

.login-button span,
.login-close-btn span,
.login-skip-btn span {
  font-weight: 600;
  color: #000;
}

.login-skip-btn span {
  text-decoration: underline;
}

.login-button .btn-loader {
  border: 2px solid #000;
  border-left-color: transparent;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  animation: spin89345 1s linear infinite;
}

@keyframes spin89345 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.terms-checks {
  min-height: 21px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.terms-checks.hidden {
  display: none;
}

.terms-checkbox-wrap {
  font-size: 0.9rem;
  margin-top: 0.9rem;
}

.terms-checkbox-wrap,
.subscribe-checkbox-wrap {
  display: flex;
}

.terms-checks input,
.terms-checkbox-wrap input {
  outline: none;
  border: 1px solid #222;
  flex-shrink: 0;
  margin-right: 0.5rem;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.15rem;
}

.subscribe-checkbox-wrap span,
.terms-checkbox-wrap span,
.number-fields-wrap label span {
  display: inline-block;
  color: #8e8e8e;
  font-size: 0.9rem;
}

.terms-checkbox-wrap .terms-view-btn {
  display: inline-block;
  cursor: pointer;
  border-bottom: 1px solid;
  border-color: #bf9854;
  color: #bf9854;
}

.terms-checkbox-wrap.error label {
  color: #b61b28;
}

.terms-checkbox-wrap.error input {
  border-color: #b61b28;
}

ol.listOptions li {
        margin-bottom: 12px;
        border-bottom: 1px solid #ddcfc1;
        padding-bottom: 12px;
      }

      ol.listOptions li:last-child {
        border: none;
      }

      span.eyeBrow {
        font-size: 10px;
        letter-spacing: 0.03rem;
        text-transform: uppercase;
        opacity: 0.6;
      }

      .suggestions-box {
        padding: 15px 15px 15px 45px;
        display: flex;
        flex-wrap: wrap;
      }

      .suggestions-box .chip {
        background: linear-gradient(0deg, #e6dcd4, #f0ebe7);
        margin: 3px;
        padding: 8px 21px;
        border-radius: 12px;
        width: fit-content;
        cursor: pointer;
        box-shadow: 7px 9px 20px 0px #d2c3b8, inset 0 2px 2px #ffffff;
      }

      #avatar {
        background: url(luna-stripe.png);
        width: 348px;
        height: 460px;
        overflow: hidden;
        background-position-x: 0;
      }

      .panel-container {
        width: 348px;
        height: 460px;
        background-image: url(avira.png);
        background-position: center;
        background-size: cover;
        position: absolute;
        bottom: 0;
        zoom: 0.5;
        left: 10%;
      }

      .panel-1 {
        background-position: 0 0;
      }

      .panel-2 {
        background-position: -348px 0;
      }

      .panel-3 {
        background-position: -696px 0;
      }

      .panel-4 {
        background-position: -1044px 0;
      }

      .panel-5 {
        background-position: -1392px 0;
      }

      @keyframes showPanels {
        0%,
        66% {
          background-position: -696px 0;
        }

        100%,
        66.01% {
          background-position: -1044px 0;
        }
      }

      .masked-video {
        width: 300px;
        /* Adjust the width as needed */
        height: 300px;
        /* Adjust the height as needed */
        -webkit-mask-image: url("visual-experiences/magic-sharp-uat.png?images-voice-comet");
        mask-image: url("visual-experiences/magic-sharp-uat.png?images-voice-comet");
        mask-mode: alpha;
        /* Uses the luminance/alpha values of the image to mask */
        -webkit-mask-size: cover;
        /* Set mask size for Safari */
        mask-size: cover;
        /* Set mask size for other browsers */
        position: absolute;
        bottom: 0;
        zoom: 0.8;
        left: 10%;
      }

      .masked-video video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensures the video covers the entire element */
      }

      .botName::after {
        content: "NEW";
        color: #f29d12;
        font-size: 12px;
      }

      .documentChoice,
      .voiceChoice {
        width: 300px;
        padding: 20px;
        box-sizing: border-box;
        position: relative;
      }

      select {
        width: 100%;
        padding: 10px 15px;
        border-radius: 25px;
        /* Rounded corners */
        background-color: #333;
        /* Dark grey background */
        color: #fff;
        /* White text color */
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Subtle shadow for 3D effect */
        appearance: none;
        /* Removes default styling by the browser */
        cursor: pointer;
        height: 36px;
      }

      /* Styling the dropdown arrow */
      select::-ms-expand {
        display: none;
        /* Hides the default dropdown arrow in IE/Edge */
      }

      .documentChoice::after,
      .voiceChoice::after {
        content: "▼";
        /* Custom arrow */
        color: #fff;
        font-size: 10px;
        right: 35px;
        position: absolute;
        pointer-events: none;
        height: 36px;
        top: 32px;
      }

      .card {
        border: 1px solid #ccc;
        border-radius: 8px;
        flex-shrink: 1;
        display: flex;
        flex-direction: column;
        color: var(--colour-text-light);
        width: 33%;
        min-width: 200px;
        margin: 10px 5px;
        cursor: pointer;
      }

      .card.colour {
        padding: 16px;
      }

      .card-info {
        padding: 6px;
        display: flex;
        flex-direction: column;
        max-width: 280px;
      }

      .card-info.with-image p {
        display: none;
      }

      .card-info.with-image {
        padding: 0 16px 10px 16px;
      }

      .card .image-container {
        width: 100%;
        height: 150px;
        border-radius: 5px 5px 0 0;
        overflow: hidden;
        background-color: #0000000f;
      }

      .card .image-container.video {
        height: 170px;
      }

      .card .image-container.pip {
        position: relative;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
      }

      .card .image-container.pip::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.5);
        z-index: 1;
      }

      .card .image-container img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 2;
      }

      .card .image-container iframe {
        width: 100%;
        height: 100%;
      }

      .card .image-container.pip img {
        object-fit: cover;
        background: #a96f4c7d;
        height: 100%;
        width: auto;
        margin: 0 auto;
      }

      .card .icon {
        width: 24px;
        height: 24px;
      }

      .card .icon-text {
        background-color: #fff;
        overflow: hidden;
        width: 25px;
        height: 25px;
        border-radius: 6px;
        text-transform: capitalize;
        font-weight: 900;
        font-size: 15px;
        justify-content: center;
        align-items: center;
        line-height: 1;
      }

      .head-icon-contain {
        display: flex;
        align-items: center;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-top: 10px;
      }

      .card.only-image .image-container {
        border-radius: 5px;
      }

      .card.single-image {
        padding: 10px;
      }

      .card.single-image .image-container {
        height: 200px;
      }

      .card.single-video {
        width: 60%;
      }

      .card.single-video .image-container {
        height: 220px;
      }

      .cardContainer {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        font-size: 12px;
        animation: cardFade 950ms ease-in forwards;
      }

      @keyframes cardFade {
        from {
          opacity: 0;
          transform: translateY(20%);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .cardContainer.vertical {
        flex-direction: column;
      }

      .card a,
      .card h3,
      .card p {
        margin: 4px 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .card a {
        margin: 0 0 0 10px;
        border: none;
        color: gray;
      }

      .card h3 {
        margin-top: 12px;
        font-size: 17px;
        line-height: 1.36;
      }

      .externalSearchQ {
        padding: 45px 0 45px 15px;
        min-width: 150px;
        font-size: 13px;
      }

      .colorContainer {
        width: 100px;
        margin-right: 8px;
      }

      .colorContainerHolder {
        display: flex;
        margin-top: 4px;
        flex-wrap: wrap;
      }

      .colorContainer p {
        line-height: 1.3;
        font-size: 14px;
        color: #333;
        text-align: center;
        padding-top: 4px;
      }

      .HEX {
        display: inline-grid;
        height: 24px;
        width: 24px;
        overflow: hidden;
        color: transparent;
        border-radius: 50%;
      }

      .color-tile {
        border: 0 solid;
        border-bottom: 12px solid;
        height: 100px;
        border-radius: 21px;
      }

      code::before {
        display: flex;
        width: fit-content;
        padding: 4px 18px;
        border-radius: 8px;
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 12px;
        background: linear-gradient(-45deg, #ffd1dc, #a2d2ff, #bde0fe);
        background-size: 200% 200%;
        animation: movingGradient 2s ease infinite;
        font-weight: 700;
        color: #fff;
      }

      .bot-text pre {
        margin: 0;
      }

      code.language-php::before {
        content: "PHP";
      }

      code.language-javascript::before {
        content: "JS";
      }

      code.language-html::before {
        content: "HTML";
      }

      code.language-css::before {
        content: "CSS";
      }

      .bot-text code {
        overflow-x: scroll;
        display: block;
        width: 100%;
        background: #f0ece9;
        padding: 8px;
        box-sizing: border-box;
        border-radius: 8px;
      }

      .discalimer {
        font-size: 10px;
        letter-spacing: 0.03rem;
        color: gray;
      }

      .spaceEvenly {
        justify-content: space-evenly;
      }

      td,
      th {
        border-right: 1px solid #e3d8d0;
        border-bottom: 1px solid #e3d8d0;
        padding: 8px;
        text-align: left;
      }

      table {
        border-left: 1px solid #e3d8d0;
        border-top: 1px solid #e3d8d0;
        font-size: 80%;
      }

      th {
        background-color: #f3f0ee;
      }

      @media screen and (max-width: 700px) {

        body {
          font-size: 80%;
        }
      }

      .user-text p img {
        border-radius: 15px;
        max-height: 200px;
        object-fit: cover;
        width: 100%;
      }

      .bot-text div {
        font-size: 90%;
        font-family: monospace;
        background: #f4f0ed;
        padding: 12px 21px;
        border-radius: 8px;
      }

      .bot-text div h2,
      .bot-text div h3,
      .bot-text div h4 {
        font-size: 120%;
      }

      .bot-text div::before {
        content: "DEX BUDDHA";
        display: inline-flex;
        height: 30px;
        align-items: center;
        padding: 0 21px;
        border-radius: 8px;
        font-weight: 700;
        margin-right: 8px;
        letter-spacing: 0.05rem;
        color: #fff;
        clear: both;
        background: linear-gradient(-45deg, #ffd1dc, #a2d2ff, #bde0fe);
        background-size: 200% 200%;
        animation: movingGradient 2s ease infinite;
      }

      ol + span + ul {
        margin-left: 15px;
      }

      .bot-text i {
        background: linear-gradient(0deg, #e8ded7, transparent);
        border-bottom: 2px solid #d0bbaa;
      }

      /* For WebKit browsers (Chrome, Safari, etc.) */
      ::-webkit-scrollbar {
        display: none;
      }

      /* For Firefox */
      html {
        scrollbar-width: none;
        /* Hide scrollbar */
      }

      /* For Internet Explorer 10+ */
      body {
        -ms-overflow-style: none;
        /* Hide scrollbar */
      }

      .menuOptions .labelContent,
      .suggestions-box .chip {
        font-size: 12px;
        display: flex;
        align-items: center;
        padding: 8px 16px;
        pointer-events: all;
        background: linear-gradient(0deg, #dc1b00, #ff5740);
        margin-right: 4px;
        color: white;
        box-shadow: none;
      }

      .playgroundInfoContainer .labelContainer {
        display: none;
      }

      .labelContent:hover,
      .chip:hover {
        background: linear-gradient(45deg, #cf2230, #ff616e);
      }

      .disabled {
        pointer-events: none !important;
      }

      .menuOptionsHeading {
        font-size: 12px;
        margin-left: 40px;
        margin-top: 12px;
        margin-bottom: 6px;
        color: #555;
      }

      .labelContainer.menuOptions {
        margin-top: 4px;
      }

      .menuOptions.labelContainer .labelContent:first-child {
        margin-left: 36px;
      }

      .titleareaBG,
      .pWarp.botText .profileContainer.lastOne {
        background: var(--main-colour);
        background-size: 400% 200%;
        animation: movingGradient 15s ease infinite;
      }

      .profileContainer.lastOne {
        background: linear-gradient(-45deg, #f84c5a, #ff1a2c, #a60000);
        background-size: 200% 200%;
        animation: movingGradient 2s ease infinite;
      }

      .titleareaBG {
        display: none;
      }

      li .selectButton {
        background: linear-gradient(0deg, #cf2230, #ff616e);
        padding: 4px 16px;
        border-radius: 15px;
        color: white;
        font-size: 60%;
        cursor: pointer;
      }

      li.dealers.withButtons {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
      }

      ol {
        padding: 0;
      }

      article.dealerCode {
        display: none;
      }

      li.dealers.withButtons.disabled .selectButton {
        display: none;
      }

      li.dealers.withButtons.disabled.selected .selectButton {
        display: block;
      }

      .suggestions-box {
        padding: 0 15px 15px 35px;
      }

      .text-box-wrap + .menuOptionsHeading {
        padding-left: 10px;
      }

      .suggestionsAvailable .feedback-container {
        display: none;
      }

      .suggestionsAvailable .text-bottom-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
      }

      ul.img-list {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0;
        margin: 0;
      }

      ul.img-list li {
        display: flex;
        flex: 0 0 auto;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        margin-right: 15px;
        flex-direction: column;
        border: 1px solid #e1e1e1;
        cursor: pointer;
        min-width: 170px;
        max-width: 230px;
      }

      ul.mg-cars-visual-list.img-list {
        margin-left: -15px;
        padding-left: 15px;
        width: calc(100% + 15px);
      }

      li .mg-car-title {
        padding: 15px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        background: linear-gradient(0deg, #000000, #545454);
        color: white;
      }

      .pWarp .text-box.bot-text.first-text {
        position: relative;
        overflow-x: auto;
      }

      .card-info.with-image {
        height: 100px;
        justify-content: space-between;
      }

      #chatBox > .pt-wrap::after {
        display: none !important;
        content: " ";
        background: linear-gradient(90deg, #f6f4f200 0%, #f6f4f2 70%);
        height: 50px;
        width: 50px;
        right: 0;
        position: absolute;
        bottom: 0;
      }

      #chatBox > .pt-wrap {
        position: relative;
      }

      em {
        font-size: 13px;
        line-height: 1.2;
        display: inline;
        color: gray;
      }

      .labelContainer.menuOptions.warped {
        white-space: pre-wrap;
        flex-wrap: wrap;
        margin-left: 35px;
      }

      .labelContainer.menuOptions.warped .labelContent {
        margin: 0 2px 5px;
      }

      ul.img-list li img {
        width: 150%;
        height: 150%;
        margin-top: -15%;
        object-fit: cover;
        max-height: none;
        object-position: center center;
      }

      li article.car-i {
        height: 140px;
        width: 200px;
        overflow: hidden;
      }

      /* EXP UX */
      .expUX .botName {
        text-align: left;
        font-size: 18px;
        padding-top: 20px;
      }

      .masked-video,
      .avatar-image {
        z-index: 1000;
        width: 200px;
        height: 200px;
        position: absolute;
        right: 0;
        left: auto;
      }

      .avatar-image {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        right: 10px;
        height: 300px;
        width: 220px;
        top: 10px;
      }

      .sayHello {
        padding: 0 20px;
        font-size: 32px;
        line-height: 1.2;
      }

      .playgroundInfoContainer {
        background: none;
        border: none;
        margin: 0;
      }

      .titleContainer {
        background: linear-gradient(0deg, #e2d7ce, #f6f4f2);
        overflow: hidden;
      }

      .expUX .subheading {
        width: 70%;
        width: calc(100% - 100px);
      }

      .masked-video {
        width: 280px;
        height: 280px;
        position: absolute;
        right: -60px;
      }

      .expUX .playgroundInfoContainer {
        max-width: 480px;
        min-height: 180px;
      }

      .playgroundContainer.expUX {
        max-width: 712px;
      }

      /* Interactive component */

      .listOfItems .item:first-child {
        padding-left: 15px;
      }

      .interactiveContainer {
        width: 100%;
        overflow: hidden;
        border-top: 1px solid var(--colour-start);
      }

      .listOfItems {
        display: flex;
        background: linear-gradient(0deg, #e2d7ce, #f6f4f2);
        padding: 15px 0;
      }

      .listOfItems .item {
        cursor: pointer;
        margin-right: 15px;
        width: 25%;
      }

      .listOfItems .item:hover {
        filter: brightness(1.1);
      }

      .iconText {
        font-size: 11px;
        text-align: center;
        line-height: 1.2;
        padding: 0 8px;
      }

      .listOfItems .itemContent {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 16px 0;
        border-radius: 15px;
        background: linear-gradient(
          0deg,
          var(--bubble-colour-light-start) 0,
          var(--bubble-colour-light-end) 50%
        );
        color: #009665;
        min-height: 90px;
        font-size: 28px;
      }

      .iconContainer {
        padding-bottom: 4px;
      }

      .eyeBrowForlistOfItems {
        padding: 15px 15px 0 15px;
        font-size: 14px;
      }

      i.icon-steering-wheel {
        font-size: 26px;
      }

      i.icon-cab,
      i.icon-sliders {
        font-size: 25px;
      }

      i.icon-battery-3 {
        font-size: 20px;
      }

      .titleContainer,
      .listOfItems {
        background: linear-gradient(
          0deg,
          var(--colour-start),
          var(--colour-end)
        );
        color: var(--colour-text);
      }

      .itemContent {
        box-shadow: 7px 9px 20px 0 var(--box-shadow), inset 0 2px 2px #ffffff;
      }

      .playgroundContainer {
        background: var(--colour-end);
        box-shadow: 0 0 50px #1a1a1a;
      }

      .bottomContainer.inputContainer {
        background-color: #fff !important;
      }

      .disclaimer {
        color: #999;
      }

      .text-box.bot-text,
      p.conversation,
      p.text-box.user-text {
        box-shadow: 7px 9px 20px 0 var(--bubble-shadow), inset 0 2px 2px #ffffff;
        border: 1px solid var(--bubble-colour-start);
      }

      .text-box-wrap {
        background: linear-gradient(
          0deg,
          var(--colour-start),
          var(--colour-end)
        );
      }

      .eyeBrowForlistOfItems,
      .menuOptionsHeading {
        color: var(--colour-text-light);
      }

      .pWarp.botText .profileContainer {
        background: #333;
      }

      ol.listOptions li {
        border-bottom: 1px solid #dbdbdb;
      }

      span.eyeBrow {
        display: block;
        margin-top: 10px;
      }

      .voiceChoice {
        display: none;
      }

      .menuOptions .labelContent:hover,
      .suggestions-box .chip:hover {
        background: linear-gradient(45deg, #dc1b00, #ff5740);
      }
      ::selection {
        background: #bdf3ce;
      }

      .documentChoice {
        display: none;
      }

      .botName::after {
        color: #cca1d8;
      }

      @media (max-width: 500px) {
        .avatar-image {
          right: -55px;
          height: 180px;
          top: 50px;
        }
      }

      div.bot-text img {
        border-radius: 8px;
        overflow: hidden;
        margin-top: -1em;
        margin-bottom: 1em;
      }

      hr {
        border: none;
        border-top: 1px solid #dddddd;
      }
      .botName,
      .sayHello {
        color: var(--main-colour);
      }

      span.inFlow {
        padding: 4px 15px;
        border-radius: 8px;
        font-size: 7px;
        letter-spacing: 0.03rem;
        text-transform: capitalize;
        color: white;
        position: absolute;
        top: -4px;
        padding-top: 6px;
        background: var(--main-colour-inactive);
      }

      .profileContainer.lastOne + .bot-text span.inFlow {
        background: var(--main-colour);
      }
