*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}

html,
body {
  height: 100%;
  background-color: #f8f9fa;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #282830;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  line-height: 1;
}

.button--secondary {
  background-color: #2d76d2;
  color: #ffffff;
}

.button--secondary:hover {
  background-color: rgb(36, 94.4, 168);
}

.button--white {
  background: #ffffff;
  color: #282830;
}

.button--white:hover {
  background: rgb(242.25, 242.25, 242.25);
  color: #282830;
}

.button--outline {
  background: transparent;
  border: 1px solid #282830;
  color: #282830;
}

.button--outline:hover {
  background: rgba(40, 40, 48, 0.8156862745);
  color: #ffffff;
}

.button--red-outline {
  background: transparent;
  border: 1px solid #eb0a1e;
  color: #ffffff;
  min-height: 40px;
}

.button--red-outline:hover {
  background: #eb0a1e;
  color: #ffffff;
}

.button--rounded {
  border-radius: 30px;
}

.button--large {
  height: 48px;
  font-size: 16px;
  padding: 0 2rem;
}

.button--small {
  height: 30px;
  font-size: 12px;
  padding: 0 1rem;
}

.button--fullwidth {
  width: 100%;
}

.button--dark {
  height: 30px;
  background-color: #282830;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 11px;
  color: #ffffff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 5px;
  border: none;
}

.button--dark:hover {
  background-color: rgba(40, 40, 48, 0.8156862745);
}

.button--icon-send {
  position: absolute;
  background-color: transparent;
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  right: 10px;
}

.button--icon-send .button__icon {
  margin: 0;
}

.button__icon {
  margin-right: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px !important;
  height: 20px !important;
}

.button__icon--right {
  margin-left: 8px;
  margin-right: 0;
}

.button--play {
  position: absolute;
  bottom: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: auto;
  height: 48px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  box-shadow: inset 2px 2px 1px -2px #ffffff,
    inset -2px -2px 1px -2px rgba(255, 255, 255, 0.8),
    inset 0px 1px 3px -2px rgba(255, 255, 255, 0.8), 0 4px 20px rgba(0, 0, 0, 0);
  color: #282830;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease !important;
  border: none !important;
  gap: 0 !important;
}

.button--play:hover {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: inset 2px 2px 1px -2px #ffffff, inset -2px -2px 1px -2px #ffffff,
    inset 0px 1px 3px -2px rgba(255, 255, 255, 0.2),
    0 6px 25px rgba(0, 0, 0, 0.3);
}

.button--play .icon-play {
  margin-right: 8px;
}

.button--start {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: calc(100% - 40px);
  height: 48px;
  border-radius: 50px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: inset 2px 2px 1px -2px #ffffff,
    inset -2px -2px 1px -2px rgba(255, 255, 255, 0.8),
    inset 0px 1px 3px -2px rgba(255, 255, 255, 0.8), 0 4px 20px rgba(0, 0, 0, 0);
  color: #ffffff !important;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px !important;
  gap: 0 !important;
  font-weight: 700 !important;
  text-align: center;
  display: flex;
  align-items: center !important;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none !important;
}

@media (max-width: 768px) {
  .button--start {
    bottom: 10px;
  }
}

.button--start:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff;
  box-shadow: inset 2px 2px 1px -2px #ffffff, inset -2px -2px 1px -2px #ffffff,
    inset 0px 1px 3px -2px rgba(255, 255, 255, 0.2),
    0 6px 25px rgba(0, 0, 0, 0.3);
}

.button--start .button__icon {
  margin-right: 8px;
}

.button--stop {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: calc(100% - 40px);
  height: 48px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: inset 2px 2px 1px -2px #ffffff,
    inset -2px -2px 1px -2px rgba(255, 255, 255, 0.8),
    inset 0px 1px 3px -2px rgba(255, 255, 255, 0.8), 0 4px 20px rgba(0, 0, 0, 0);
  color: #ffffff !important;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-align: center;
  display: flex;
  align-items: center !important;
  justify-content: center;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

@media (max-width: 768px) {
  .button--stop {
    bottom: 10px;
  }
}

.button--stop:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 2px 2px 1px -2px #ffffff, inset -2px -2px 1px -2px #ffffff,
    inset 0px 1px 3px -2px rgba(255, 255, 255, 0.2),
    0 6px 25px rgba(0, 0, 0, 0.3);
}

.button--stop .button__icon {
  margin-right: 8px;
  width: 32px;
  height: auto;
}

.button--ready {
  background: rgb(255 255 255 / 31%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #ffffff;
  border: none;
  padding: 10px 18px !important;
  font-weight: 400 !important;
}

#toggle-chat-btn {
  display: none;
}

@media (max-width: 768px) {
  #toggle-chat-btn {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
    z-index: 5;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .chatbot.minimized #toggle-chat-btn {
    width: 100%;
    height: 42px;
    top: 0;
  }

  .chatbot.minimized #toggle-chat-btn img {
    display: none;
  }

  .chatbot.minimized .chatbot__footer {
    display: block !important;
    width: calc(100% - 48px);
    margin-top: 18px;
  }

  .chatbot.minimized .chatbot__header .avatar__img-wrapper {
    display: none;
  }
}

.car-bottom-wrapper__button {
  width: auto;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background-color: transparent;
  border: 1px solid #eb0a1e;
  padding: 0 10px 3px 10px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
  line-height: 1;
}

.car-bottom-wrapper__button .icon--arrow-right {
  margin-left: 5px;
  margin-top: 3px;
}

.car-bottom-wrapper__button:hover {
  background-color: #eb0a1e;
  color: #ffffff;
}

.car-list-btn-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.car-list-btn-nav.btn--right {
  right: 0;
}

.car-list-btn-nav.btn--left {
  left: 0;
}

.car-list-btn-nav .da-icon-chevron-right {
  width: 4px;
  height: auto;
  transition: transform 0.3s ease;
}

.car-list-btn-nav:hover .da-icon-chevron-right {
  transform: translateX(5px);
}

.hero {
  padding: 4rem 2rem;
  background-color: #eb0a1e;
  text-align: center;
  color: #ffffff;
}

.hero__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero__description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  color: #eb0a1e;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero__button:hover {
  background: rgb(229.5, 229.5, 229.5);
}

.hero__button--primary {
  background: rgb(186.0816326531, 7.9183673469, 23.7551020408);
  color: #ffffff;
}

.hero__button--primary:hover {
  background: rgb(245.2244897959, 25.2755102041, 44.8265306122);
}

.avatar-video-wrapper {
  width: 100%;
  height: 100dvh;
  position: relative;
}

.avatar-video-wrapper .avatar-video {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100dvh;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: 1;
}

.video-overlay::after,
.avatar-video-wrapper::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background-image: linear-gradient(to top, rgb(3, 3, 3), rgba(3, 3, 3, 0));
}

.video-thumbnail {
  position: absolute;
  z-index: 3 !important;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100dvh;
  left: 0;
  top: 0;
}

.main {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}

@media (max-width: 768px) {
  .main {
    padding: 0;
    z-index: 10000;
    align-items: end;
  }
}

.main-overlay {
  background-color: rgba(0, 0, 0, 0.55);
}

.chatbot {
  width: calc(33.3% - 10px);
  height: 100%;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 0 40px 15px rgba(0, 0, 0, 0.4);
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .chatbot {
    width: calc(100% - 12px);
    height: calc(100dvh - 100px);
    z-index: 12;
    transform: translateX(-50%);
    left: 50%;
  }

  .chatbot.minimized {
    height: 80px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }

}

.chatbot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px 20px 0 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}

@media (max-width: 768px) {
  .chatbot.minimized::before {
    border-radius: 20px 20px 0 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
}

.chatbot .chatbot__header {
  width: 100%;
  height: 224px;
  position: relative;
}

@media (max-width: 768px) {
  .chatbot .chatbot__header {
    height: 182px;
  }
}

.chatbot .chatbot__header .avatar__img-wrapper {
  width: 100%;
  position: relative;
}

.chatbot .chatbot__header .avatar__img-wrapper .avatar__img {
  max-width: 100%;
  height: auto;
  position: relative;
  box-shadow: 0 0 40px 15px rgba(0, 0, 0, 0.4);
  border-radius: 20px;
}

.chatbot .chatbot__header .avatar__img-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: linear-gradient(to top, rgb(3, 3, 3), rgba(3, 3, 3, 0));
}

@media (max-width: 768px) {
  .chatbot .chatbot__header .avatar__img-wrapper::after {
    bottom: 0;
  }
}

.chatbot .chatbot__body {
  width: 100%;
  height: calc(100% - 300px);
  position: relative;
  padding: 0 20px 0 20px;
}

@media (max-width: 768px) {
  .chatbot .chatbot__body {
    height: calc(100% - 265px);
  }
}

.chatbot .chatbot__body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: linear-gradient(to bottom, rgb(3, 3, 3), rgba(3, 3, 3, 0));
  z-index: -1;
}

.chatbot .chatbot__body .messages {
  margin: 0;
  padding: 0;
  list-style-type: none;
  flex-direction: column;
  position: relative;
  -ms-overflow-style: none;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.chatbot .chatbot__body .messages::-webkit-scrollbar {
  display: none;
}

.chatbot .chatbot__body .messages::before {
  top: -2px;
  background: linear-gradient(to bottom, rgb(3, 3, 3), rgba(3, 3, 3, 0));
  display: block;
  width: 100%;
  height: 8px;
}

.chatbot .chatbot__body .messages::after {
  bottom: -2px;
  background: linear-gradient(to top, rgb(3, 3, 3), rgba(3, 3, 3, 0));
  display: block;
  width: 100%;
  height: 8px;
}

.chatbot .chatbot__body .messages .bot-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.chatbot .chatbot__body .messages .bot-wrapper .bot {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  text-align: left;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 8px 15px 8px 15px;
  border-radius: 0px 20px 20px 20px;
}

.chatbot .chatbot__body .messages .bot-wrapper .bot ul li {
  list-style-type: disc !important;
  margin-bottom: -1rem !important;
  margin-left: 1rem !important;
}

.chatbot .chatbot__body .messages .bot-wrapper .bot strong {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
}

.chatbot .chatbot__body .messages .bot-wrapper .car-list-wrapper {
  width: 100%;
}

.chatbot .chatbot__body .messages .bot-wrapper .car-list-wrapper .car-list-cont {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow: scroll;
  gap: 10px;
  margin-bottom: 15px;
  position: relative;
}

.chatbot .chatbot__body .messages .bot-wrapper .car-list-wrapper .car-list-cont .car-list__item {
  min-width: 190px;
  height: auto;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  color: #282830;
  transition: all 0.3s ease;
}

.chatbot .chatbot__body .messages .bot-wrapper .car-list-wrapper .car-list-cont .car-list__item .car-item__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 60px;
}

.chatbot .chatbot__body .messages .bot-wrapper .car-list-wrapper .car-list-cont .car-list__item .car-item__info .car-item__name {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 0;
}

.chatbot .chatbot__body .messages .bot-wrapper .car-list-wrapper .car-list-cont .car-list__item .car-item__info .car-item__desc {
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #2d76d2;
}

.chatbot .chatbot__body .messages .bot-wrapper .car-list-wrapper .car-list-cont .car-list__item .car-item__img {
  max-width: 100%;
  height: auto;
}

.chatbot .chatbot__body .messages .bot-wrapper .car-list-wrapper .car-list-cont .car-list__item .car-item__price {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 5px;
}

.chatbot .chatbot__body .messages .bot-wrapper .car-list-wrapper .car-list-cont .car-list__item .car-item__price .car-price__value {
  color: #282830;
  font-size: 11px;
}

.chatbot .chatbot__body .messages .bot-wrapper .car-list-wrapper .car-list-cont .car-list__item .car-item__price .car-price__old-value {
  color: #eb0a1e;
  text-decoration: underline;
  font-size: 11px;
  margin-left: 10px;
}

.chatbot .chatbot__body .messages .bot-wrapper .car-list-wrapper .car-list-nav {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.chatbot .chatbot__body .messages .bot-wrapper .car-bottom-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.chatbot .chatbot__body .messages .bot-wrapper .car-bottom-wrapper button {
  margin-right: 10px;
}

.chatbot .chatbot__body .messages .bot-wrapper .car-bottom-wrapper button:last-child {
  margin-right: 0;
}

.chatbot .chatbot__body .messages .user-wrapper {
  width: fit-content;
}

.chatbot .chatbot__body .messages .user-wrapper .user {
  border-radius: 20px 1px 20px 20px;
  padding: 7px 12px 7px 12px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  text-align: right;
  float: right;
  background: rgb(255 255 255 / 31%);
  backdrop-filter: blur(50px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.chatbot .chatbot__body .messages .user-wrapper .user strong {
  font-family: "Ubuntu", sans-serif;
}

.text-animation {
  height: 10px;
  object-fit: contain;
}

/* Preserve whitespace and line breaks for animated text */
.animated-text {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.chatbot .chatbot__footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: calc(100% - 40px);
  margin-top: 12px;
}

.chatbot .chatbot__footer .chatbot__ready-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 10px;
  position: absolute;
  bottom: 76px;
  gap: 10px;
}

.chatbot .chatbot__footer .chatbot__textarea {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.chatbot .chatbot__footer .chatbot__textarea .chatbot__input-messages {
  width: 100%;
  height: 45px;
  border-radius: 30px;
  padding-left: 18px;
  padding-right: 40px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-size: 13px;
  transition: box-shadow 0.1s ease-in-out;
  appearance: none;
  resize: none;
  zoom: 0;
  line-height: 1;
  background: rgba(255, 255, 255, 0.31);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: white;
  border: none;
  box-shadow: inset 2px 2px 1px -2px #ffffff, inset -2px -2px 1px -2px rgba(255, 255, 255, 0.8), inset 0px 1px 3px -2px rgba(255, 255, 255, 0.8), 0 4px 20px rgba(0, 0, 0, 0);
}

.chatbot .chatbot__footer .chatbot__textarea .chatbot__input-messages::placeholder {
  opacity: 0.8;
  color: white;
}

@media (max-width: 768px) {
  .chatbot .chatbot__footer .chatbot__textarea .chatbot__input-messages {
    font-size: 16px;
  }
}

.chatbot .chatbot__footer .chatbot__textarea .chatbot__input-messages:focus {
  border-color: rgba(33, 81, 151, 0.3);
  outline: none;
}

.chatbot .chatbot__footer .chatbot__textarea .icon-send {
  width: 16px;
  height: 16px;
}

.icon-send:hover {
  filter: brightness(0.8);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.chatbot .chatbot__footer .powered-footer {
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot .chatbot__footer .powered-footer .powered-footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 5px;
}

.chatbot .chatbot__footer .powered-footer .powered-footer__btn .powered-text {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #5e5e5e;
  text-decoration: none;
  margin-right: 6px;
  letter-spacing: 0.04em;
}

.chatbot .chatbot__footer .powered-footer .powered-footer__btn .powered-logo {
  width: 70px;
  margin-bottom: 1px;
}

.right-cont {
  width: calc(66.6% - 10px);
  height: 100%;
  position: relative;
  border-radius: 20px;
  background-color: #ffffff;
}

.right-cont .avatar-video {
  height: 100dvh;
  object-fit: cover;
  margin-top: -1px;
}

.right-cont__web-iframe {
  display: none;
}

@media (max-width: 768px) {
  .right-cont__web-iframe {
    display: block;
  }
}

.right-cont.right-cont--no-content {
  background-color: transparent;
}

.right-cont__video-iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .right-cont__video-iframe {
    border-radius: 0;
  }
}

.right-cont .right-cont__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 0;
  width: 40px;
  height: 40px;
  background: #eb0a1e;
  z-index: 2;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0 20px 0 0;
}

@media (max-width: 768px) {
  .right-cont .right-cont__close {
    top: 0;
    right: 0;
    z-index: 11;
    border-radius: 0;
  }
}

.right-cont .right-cont__close:hover {
  background: rgb(186.0816326531, 7.9183673469, 23.7551020408);
}

/* Chat message styling */
.bot-wrapper {
  color: white !important;
  margin-bottom: 15px;
  max-width: 100%;
  float: left;
  clear: both;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
}

.bot-wrapper {
  color: white !important;
}

.user-wrapper {
  margin-bottom: 10px;
  color: white !important;
  max-width: 80%;
  float: right;
  clear: both;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
}

.user-wrapper * {
  color: white !important;
}

.bot,
.user {
  width: 100%;
  display: block;
  overflow: hidden;
}

.user {
  text-align: right;
}

.bot {
  text-align: left;
}

#messages {
  overflow-y: auto !important;
  max-height: 95% !important;
  scroll-behavior: smooth !important;
  padding-top: 10px;
}

@media (max-width: 768px) {
  #messages {
    max-height: 99% !important;
  }
}

.chatlabel {
  color: #ffffff !important;
  text-decoration: underline;
}

.media-link {
  color: #ffffff !important;
  text-decoration: underline;
}

/* Video Controls */
.video-controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  z-index: 10;
  display: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-control-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.video-control-btn:active {
  transform: scale(0.95);
}

.video-control-icon {
  width: 20px;
  height: 20px;
  transition: opacity 0.2s ease;
}

/* Show controls when video is active */
.avatar-video-wrapper.video-active .video-controls {
  opacity: 1;
  visibility: visible;
}

/* Hover effect for video wrapper */
.avatar-video-wrapper:hover .video-controls {
  opacity: 1;
  visibility: visible;
}

/* Responsive adjustments for video controls */
@media (min-width: 1600px) {
  .main {
    gap: 20px;
  }

  .chatbot {
    min-width: 500px;
    max-width: 500px;
  }

  .right-cont {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .video-controls {
    top: 0.5rem;
    right: 0.5rem;
    gap: 2rem;
  }

  .video-control-btn {
    width: 40px;
    height: 40px;
  }

  .video-control-icon {
    width: 16px;
    height: 16px;
  }

}

/*# sourceMappingURL=style.css.map */
.mobile-overlay {
  display: none;
}

/* PDF Document Component */
.pdf-document-wrapper {
  width: 100%;
}

.pdf-document__header {
  margin-bottom: 0px;
}

.pdf-document__title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  text-align: left;
}

.pdf-document__content {
  display: flex;
  justify-content: center;
  width: fit-content;
}

.pdf-document__item {
  position: relative;
  width: auto;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  color: white;
  align-items: center;
  text-align: center;
}

.pdf-document__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pdf-document__thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.pdf-document__overlay {
  position: absolute;
  display: none !important;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  background: rgba(235, 10, 30, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-document__pdf-icon {
  width: 12px;
  height: 12px;
  filter: brightness(0) invert(1);
}

.pdf-document__info {
  width: 100%;
}

.pdf-document__name {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.pdf-document__description {
  display: none;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

/* Mobile Overlay for Small Screens */
@media (max-width: 1023px) {
  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
  }

  .mobile-overlay h1 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 5vw, 36px);
    color: #ffffff;
    text-align: center;
    margin: 0;
    line-height: 1.4;
    max-width: 600px;
  }

  .mobile-overlay::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #eb0a1e, #ff4757);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
  }
}

/* Fullscreen Video Overlay */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
}


.video-overlay-content {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-overlay {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.overlay-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .overlay-video {
    object-fit: contain;
  }
}



.video-overlay-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background-color 0.3s ease;
}

.video-overlay-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.video-overlay-close svg {
  width: 24px;
  height: 24px;
}

.video-overlay-controls {
  position: absolute;
  top: 90px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10001;
}

.video-control-btn--play-overlay,
.video-control-btn--mute-overlay {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-control-btn--play-overlay:hover,
.video-control-btn--mute-overlay:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.video-control-icon--play-overlay,
.video-control-icon--pause-overlay,
.video-control-icon--muted-overlay,
.video-control-icon--unmuted-overlay {
  width: 24px;
  height: 24px;
  color: white;
}

.splide__arrow.car-list__nav-btn,
.splide__arrow.media-carousel__nav-btn {
  background-color: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  border: 1pt solid white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.splide__arrow.car-list__nav-btn:hover,
.splide__arrow.media-carousel__nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.splide__arrow.car-list__nav-btn img,
.splide__arrow.media-carousel__nav-btn img {
  width: 15px !important;
  height: 15px !important;
}

.splide__arrow.car-list__nav-btn.splide__arrow--next,
.splide__arrow.media-carousel__nav-btn.splide__arrow--next {
  right: 0 !important;
}

.splide__arrow.car-list__nav-btn.splide__arrow--prev,
.splide__arrow.media-carousel__nav-btn.splide__arrow--prev {
  left: 0 !important;
}

/* PDF Viewer in Right Content */
.right-cont--pdf {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* Responsive PDF viewer sizing */
@media (max-width: 1400px) {
  .right-cont--pdf {
    width: 65vw !important;
    min-width: 700px !important;
  }
}

@media (max-width: 1200px) {
  .right-cont--pdf {
    width: 70vw !important;
    min-width: 600px !important;
  }
}

@media (min-width: 1500px) {
  #messages {
    max-height: 90% !important;
    padding-top: 30px;
  }
}

@media (max-width: 768px) {
  .right-cont--pdf {
    width: 90vw !important;
    min-width: 350px !important;
    max-width: none !important;
  }
}

/* Media Carousel Click Fix */
.media-carousel__slide {
  cursor: pointer;
  user-select: none;
}

.media-carousel__item {
  pointer-events: none;
  /* Let clicks pass through to slide */
  position: relative;
}

.media-carousel__image {
  pointer-events: none;
  /* Let clicks pass through to slide */
  width: 100%;
  height: 5rem !important;
  display: block;
}

.media-carousel__play-overlay {
  pointer-events: none;
  /* Let clicks pass through to slide */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.media-carousel__play-icon {
  pointer-events: none;
  /* Let clicks pass through to slide */
  width: 48px;
  height: 48px;
}

.dealer-list__item {
  height: 100%;
  border-radius: 10px;
  background-color: #fff;
  padding: 18px 8px;
  padding-bottom: 5px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  color: black;
}

.dealer-item__name {
  margin-bottom: 7px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 11px;
}

.dealer-item__logo {
  margin-bottom: 13px;
}

.dealer-item__info {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-size: 10px;
  margin-bottom: auto;
}

.dealer-directions-btn {
  width: 100%;
}

.dealer-item__footer {
  margin-top: 15px;
  width: 100%;
}

/* Video Document Component */
.video-document-wrapper {
  width: 100%;
}

.video-document__header {
  margin-bottom: 0px;
}

.video-document__title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  text-align: left;
}

.video-document__content {
  display: flex;
  justify-content: center;
  width: 100%;
}

.video-document__item {
  position: relative;
  width: auto;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  color: white;
  align-items: center;
  text-align: center;
}

.video-document__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-document__item:hover .video-document__play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-document__thumbnail {
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 10px;
}

.video-document__overlay {
  position: absolute;
  display: none !important;
  top: 25px;
  left: 20%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: rgba(235, 10, 30, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-document__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: all 0.3s ease;
  pointer-events: none;
}

.video-document__play-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.video-document__info {
  width: 100%;
}

.video-document__name {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin: 0 0 5px 0;
  line-height: 1.2;
  margin-left: 1rem;
}

.video-document__description {
  display: none;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

/* Multiple Components Container */
.multiple-components-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.multiple-components__header {
  margin-bottom: 15px;
}

.multiple-components__title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  text-align: left;
  padding-bottom: 8px;
}

.multiple-components__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.multiple-component-item {
  width: fit-content;
  animation: slideInUp 0.4s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.multiple-component-item--car-carousel {
  width: 100%;
}

.multiple-component-item:nth-child(1) {
  animation-delay: 0.1s;
}

.multiple-component-item:nth-child(2) {
  animation-delay: 0.3s;
}

.multiple-component-item:nth-child(3) {
  animation-delay: 0.5s;
}

/* Multiple Component Description */
.multiple-component-description {
  margin-bottom: 12px;
  padding: 0;
}

.multiple-component-description__text {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  opacity: 0.9;
  padding-bottom: 8px;
}

.multiple-component-content {
  width: 100%;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Right container for video content */
.right-cont--video {
  background: #000;
}

.right-cont--video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}