﻿/* Import 'Quicksand', sans-serif and 'MADE Tommy Soft', sans-serif from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f2f2f2;
    font-family: sans-serif;
}

body p {
  margin: 0;
  padding: 0;
}

.hidden {
  display: none !important;
}

/* checkbox styles  */
  .check-box .tgl {
    display: none;
  }
  .check-box .tgl,
  .check-box .tgl:after,
  .check-box .tgl:before,
  .check-box .tgl *,
  .check-box .tgl *:after,
  .check-box .tgl *:before,
  .check-box .tgl + .tgl-btn {
    box-sizing: border-box;
  }
  .check-box .tgl::-moz-selection,
  .check-box .tgl:after::-moz-selection,
  .check-box .tgl:before::-moz-selection,
  .check-box .tgl *::-moz-selection,
  .check-box .tgl *:after::-moz-selection,
  .check-box .tgl *:before::-moz-selection,
  .check-box .tgl + .tgl-btn::-moz-selection,
  .check-box .tgl::selection,
  .check-box .tgl:after::selection,
  .check-box .tgl:before::selection,
  .check-box .tgl *::selection,
  .check-box .tgl *:after::selection,
  .check-box .tgl *:before::selection,
  .check-box .tgl + .tgl-btn::selection {
    background: none;
  }
  .check-box .tgl + .tgl-btn {
    outline: 0;
    display: block;
    width: 3em;
    height: 1.5em;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .check-box .tgl + .tgl-btn:after,
  .check-box .tgl + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
  }
  .check-box .tgl + .tgl-btn:after {
    left: 0;
  }
  .check-box .tgl + .tgl-btn:before {
    display: none;
  }
  .check-box .tgl:checked + .tgl-btn:after {
    left: 50%;
  }

  .check-box .tgl-light + .tgl-btn {
    background: #f0f0f0;
    border-radius: 2em;
    padding: 2px;
    transition: all 0.4s ease;
  }
  .check-box .tgl-light + .tgl-btn:after {
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
  }
  .check-box .tgl-light:checked + .tgl-btn.red {
    background: #6bbd47;
  }

  .check-box .tgl-light:checked + .tgl-btn.orange {
    background-color: #82d783;

  }
  /* scroll bar */
/*       ScrollBar 1        */

        #scrollbar1::-webkit-scrollbar {
            width: 6px;
        }

        #scrollbar1::-webkit-scrollbar-track {
            border-radius: 3px;
            background-color: #e7e7e7;
            border: 1px solid #cacaca;
        }

        #scrollbar1::-webkit-scrollbar-thumb {
            border-radius: 3px;
            background-color: #aaa; /*#a7e387;*/
        }


/* header styles  */

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
}
.header-container, .footer {
  background-color: white;
}

.header-content .logo-container img {
  width: auto;
  height: 55px;
}

.header-content .menu-items {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-content .menu-items li {
  list-style: none;
  cursor: pointer;
}

.header-content .menu-items a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: 1px solid rgb(235, 232, 232);
  box-shadow: 0 0 10px rgba(144, 143, 143, 0.5);
  text-decoration: none;
}

.chatBtns,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#section1 {
  height:100%;
}
.header-content .menu-items i {
  font-size: 12px;
  color: #223322;
}

.header-content .menu-items .phone-icon {
  background-color: #6bbd47;
}

.header-content .menu-items .phone-icon i {
  color: white;
}

@media (min-width: 768px) {
  .header-content {
    padding-inline: 60px;
  }
  .header-content , .chat-text-line, .hero-section-lg, .offer-container, .business-details-section, .footer-content {
    max-width: 1700px;
    margin: auto;
  }

    .check-box .tgl + .tgl-btn {
      width: 4em;
      height: 2em;
    }

}

/* Message Text  */

.chat-text-line {
  text-align: left;
  font-family: 'Nunito', sans-serif;
  margin-top: 20px;
  font-weight: 700;
  letter-spacing: 0em;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .chat-text-line {
    padding-inline: 60px;
    font-size: 40px;
    line-height: 50px;
    margin-top: 42px;

  }
}

/* Chat section styles for lg screens  */
.hero-section-lg {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 30px;
  gap: 8px;
}

h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  color: #020000;
}

.media-container {
  border-radius: 8px;
  overflow:hidden;
}

.hero-section-lg .first-btn {
  border-top-left-radius: 8px;
}

.hero-section-lg .last-btn {
  border-top-right-radius: 8px;
}

.hero-section-lg .contact-section {
  margin-top: 0;
}

.hero-section-lg .contact-content .image-container {
  display: flex;
  flex-direction: column;
}

.hero-section-lg .contact-content .image-container img {
  width: 100%;
  min-height: 190px;
}

.hero-section-lg .related-images {
  /*width: max-content;*/
  margin-top: 20px;
}

.hero-section-lg .related-images img {
    aspect-ratio: 4/3;
    height: 100px;
    width: auto;
}

.right-chat-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  background-color: #ffffff;
}

/* Chat section styles for sm screens  */

.hero-section-sm {
  margin-top: 15px;
}

.hero-section-sm h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 0em;
  text-align: center;
  color: #3a3a3a;
  padding-inline: 20px;
}

/* Media section styles */

.contact-section {
  margin-top: 16px;
}

.contact-section .button-container {
  display: flex;
  margin: 0;
  padding: 0;
}

.contact-section .contact-button,
.contact-section .contact-buttonMobile {
  flex: 1;
  padding: 15px 20px;
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0em;
  text-align: center;
  border: none;
  cursor: pointer;
  color: #393a3c;
  background-color: hsl(0, 0%, 100%);
  transition: background-color 0.3s;
  cursor: pointer;
}

.contact-section .contact-button:hover,
.contact-section .contact-buttonMobile:hover {
  background-color: #393a3c; /* Change to your desired highlight color */
  color: #ffffff;
}

.contact-section .contact-button.active,
.contact-section .contact-buttonMobile.mobile-active {
  background-color: #393a3c; /* Change to your desired highlight color */
  color: #ffffff;
}

.contact-section .contact-content {
  display: none;
}

.contact-section .contact-content.active {
  display: block;
}
.contact-section .contact-content.mobile-active {
  display: block !important;
}

.contact-section .image-container, #details.active {
  display: flex;
}

.contact-section .image-container img {
  min-width: 70px; /* Set the width as needed */
  aspect-ratio: 4/3;
  flex: 1;
  height: auto;
  margin: 0; /* Remove any default margin */
}

.hero-section-sm .contact-container {
  margin-top: 50px;
}

.hero-section-sm .contact-container .heading-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  text-align: center;
}

.hero-section-sm .contact-container .content-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.hero-section-sm .contact-container .content-container img {
  width: 100%;
}

/* details */
#details, #mobile-details {
  display:none;
  padding: 20px;
  width: 100%;
  fxlex-direction: column;
  gap: 10px;
  flex-wrap: wrap;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(144, 143, 143, 0.5);
  aspect-ratio: 16/3;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 1px solid #eee;
  flex-wrap: wrap;
}
#mobile-details {display:flex;
  border:0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
   border-bottom: 1px solid #eee;
    }

.detail {
  display: flex;
  gap: 5px;
}

/* chat section styles  */

.mobile-message-container {
  padding: 0px;
  background-color:#ffffff;
}

.mobile-chat-container {
  width: 100%;
  padding: 0px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-container {
  width: 100%;
  padding: 10px 3px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height:100%;
}

.chat-container .actions-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-header {
  border-bottom: 1px solid #ccc;
  padding: 5px;
  display: flex;
  align-items: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-container .chat-header .user-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-container .chat-header .user-profile .user-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 11px;
  letter-spacing: 0em;
  color: #232323;
}

.user-profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.message-profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.header-text p {
  font-family: 'Nunito', sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  color: #3a3a3a;
}

/* Style for chat messages */
.chat-messages {
  padding: 5px;
}

.message {
  display: flex;
  gap: 8px;
  margin: 10px 15% 10px 0;
}

.message-receiver,
.message-sender {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 11px;
  letter-spacing: 0em;
  color: #232323;
}

.message-time {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 300;
  line-height: 14px;
  letter-spacing: 0em;
  color: #232323;
}

.chat-messages .message-text {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
}

.chat-messages .message-info {
  font-family: "Quicksand", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0;
  text-align: right;
  padding-right: 12px;
}

.message-container {
  display: flex !important;
  flex-direction: column !important;
}

.chat-messages .message-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sending-message-container {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  justify-content: space-between;
  flex-grow: 8;
}

.message-content {
  padding: 16px 12px !important;
  border: 1px solid #E9E9E9 !important;
  -webkit-box-shadow: 0 0 1px 1px rgba(0,0,0,.02) !important;
  box-shadow: 0 0 1px 1px rgba(0,0,0,.02) !important;
  background-color: #ededed !important;
  border-top-width: 0 !important;
  border-radius: 25px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.sent .message-content {
  /*max-width: 70%;*/
  /*display: flex;*/
  /*flex-direction: column;*/
  /*gap: 4px;*/
  background-color: transparent !important;
}

.received .message-content {
  /*display: flex;*/
  /*flex-direction: column;*/
  /*align-items: flex-end;*/
  /*gap: 4px;*/
}

.received {
  /*display: flex;*/
  justify-content: flex-end;
  /*gap: 8px;*/
  /*text-align: right;*/
  /*background-color: #ededed;*/
  /*border-radius: 25px;*/
  margin-left: 15%;
  margin-right: 0;
}

.received-container {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

/* Style for the message input area */
.message-input {
  display: flex;
  background-color: #ededed;
  padding: 8px;
  align-items: center;
  border-radius: 25px; /* Rounded ends */
}

.message-input input[type="text"] {
  flex: 1;
  border: none;
  padding: 8px;
  outline: none;
  background-color: #ededed;
}

.message-input button {
  background-color: #232323; /* Send button background color */
  color: #ffffff; /* Send button text color */
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin-left: 10px;
}

.chat-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.chat-btns i {
  background-color: #ffffff; /* Send button background color */
  color: #6bbd47; /* Send button text color */
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-size: 15px;
}

#video-lg-container{
  XXmax-height: 380px;
}

.video-container {
  XXmax-height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000; /* Optional background color to fill empty space */
}

.video-container iframe, .threeSixty-container iframe {
  aspect-ratio: 16/9;
}

.responsive-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#related-images-strip {
  position:relative;
  overflow: scroll;
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: hidden;
}

.arrow-right {position: absolute; top: 45%; right: 5px; opacity: 70%}
.arrow-right img {width: 40px; height: 40px;}
.arrow-left {position: absolute; top: 45%; left: 5px; opacity: 70%}
.arrow-left img {width: 40px; height: 40px;}

.videopublic, .videoprivate {opacity: 0.6; position: absolute; top: 5px; right: 10px;}
.videopublic img, .videoprivate img {width: 50px; height: 50px;}
.threesixty-in, .threesixty-out {opacity: 0.6; position: absolute; top: 5px; right: 10px;}
.threesixty-in img, .threesixty-out img {width: 50px; height: 50px;}

#contact-1, #contact-2, #contact-3, #contactMobile-1, #contactMobile-2, #contactMobile-3 {position: relative;}

@media (min-width: 768px) {
  .hero-section-sm h1 {
    padding-inline: 60px;
  }

  .hero-section-sm {
    display: none;
  }

  .hero-section-lg {
    padding-inline: 60px;
  }

  .chat-container {
    min-height: 400px;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(144, 143, 143, 0.5);
  }
  .chat-messages {
    max-height: 375px; /* Limit the height of the message container and make it scrollable */
    overflow-y: auto;
  }

}
@media (min-width: 1280px) {
  .chat-messages {
    max-height: 410px; /* Limit the height of the message container and make it scrollable */
  }
}
@media (min-width: 1366px) {
  .chat-messages {
    max-height: 450px; /* Limit the height of the message container and make it scrollable */
  }
}
@media (min-width: 1440px) {
  .chat-messages {
    max-height: 580px; /* Limit the height of the message container and make it scrollable */
  }
}


@media (max-width: 767px) {
  .header-content .logo-container img {
     width: auto;
     height: 45px;
   }
  .hero-section-lg {
    display: none;
  }
}

/* Vehicle details styles  */

.vehicle-details-section {
  padding-inline: 20px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 50px;
  gap: 32px;
  order: 4;
}

.vehicle-details-section .authorized-work-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.vehicle-details-section .authorized-work-container .authorized-work {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vehicle-details-section .authorized-work .card-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  border-radius: 20px;
  color: white;
  padding: 30px 20px;
}

.vehicle-details-section .authorized-work .blue {
  background-color: #14b4f5;
}

.vehicle-details-section .authorized-work .orange {
  background-color: #fd8081;
}

.vehicle-details-section .authorized-work .yellow {
  background-color: #ffcb66;
}

.vehicle-details-section .authorized-work .green {
  background-color: #8dc859;
}

.vehicle-details-section .authorized-work .card-title {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0em;
}

.vehicle-details-section .authorized-work .card-number {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
}

.vehicle-details-section .authorized-work .card-amount {
  font-family: 'Nunito', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 54px;
  letter-spacing: 0em;
}

.vehicle-details-section .authorized-work .card-cost {
  font-family: "Quicksand", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
}

.authorized-btn button {
  padding-block: 25px;
  border-radius: 11px;
  font-family: "Quicksand", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  color: white;
  background-color: #6bbd47;
  border: none;
  width: 100%;
  transition: all 0.5s ease-in;
  cursor: pointer;
}

.authorized-btn button:hover {
  outline: 1px solid #6bbd47;
  background-color: #ffffff;
  color: #6bbd47;
}

.authorized-btn a {
    color: inherit;
    text-decoration: none;
}

.vehicle-details-section .workitems-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

.vehicle-details-section .workitem-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  background-color: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 0 10px rgba(144, 143, 143, 0.5);
}

.vehicle-details-section .row-container {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
}

.vehicle-details-section .circle-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-grow: 3;
}

.vehicle-details-section .circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: black;
  border: none;
}

.vehicle-details-section .circle-container .red {
  background-color: #ff0000;
}

.vehicle-details-section .circle-container .orange {
  background-color: #ff7a00;
}

.vehicle-details-section .circle-container .green {
  background-color: #00a510;
}

.vehicle-details-section .workitem-card .exterior-title {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0em;
  color: 3A3A3A;
}

.vehicle-details-section .workitem-card .text {
  font-family: "Quicksand", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
}

.vehicle-details-section .workitem-card .red-text {
  color: #ff0000;
  font-weight: 700;
}
.vehicle-details-section .workitem-card .orange-text {
  color: #ff7a00;
  font-weight: 700;
}
.vehicle-details-section .workitem-card .green-text {
  color: #00a510;
  font-weight: 700;
}

.vehicle-details-section .green-amount,
.vehicle-details-section .light-green-amount {
  font-family: "Quicksand", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0em;
  color: white;
  padding: 10px 25px;
  border-radius: 20px;
}

.vehicle-details-section .green-amount {
  background-color: #6bbd47;
}

.vehicle-details-section .light-green-amount {
  background-color: #e4ffd8;
  color: #3a3a3a;
}

@media (min-width: 768px) {
  .vehicle-details-section {
    padding-inline: 60px;
  }
  .vehicle-details-section .workitems-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1050px) {
  .vehicle-details-section {
    grid-template-columns: 1fr 2fr;
    padding-inline: 60px;
  }

  .vehicle-details-section .workitems-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Styles for sender messages */
.message.sender {
  display: flex;
  align-items: flex-start;
  padding: 5px 10px;
}

.message.sender .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #007bff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.message.sender .message-content {
  background-color: #007bff;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  margin: 0 10px;
}

.message.sender .metadata {
  font-size: 12px;
  color: #777;
  text-align: right;
}

.message.sender .user-info {
  display: flex;
  align-items: center;
}

.message.sender .user-info .user-name {
  margin-right: 10px;
}

/* Styles for receiver messages */
.message.receiver {
  display: flex;
  align-items: flex-start;
  padding: 5px 10px;
}

.message.receiver .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ededed;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.message.receiver .message-content {
  background-color: #ededed;
  color: #000;
  padding: 5px 10px;
  border-radius: 10px;
  margin: 0 10px;
}

.message.receiver .metadata {
  font-size: 12px;
  color: #777;
  text-align: right;
}

.message.receiver .user-info {
  display: flex;
  align-items: center;
}

.message.receiver .user-info .user-name {
  margin-right: 10px;
}

/* Reply Trade In Style */
#reply-trade-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-inline: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 50px;
  background-color: #ffffff;
  visibility: hidden;
}

#reg-btn {
  width: 30% !important;
}

/* Special offers styles  */

.special-offer-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-inline: 20px;
  margin-top: 50px;
}

.special-offer-section .section-heading {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0em;
  color: #3a3a3a;
}

.special-offer-section .card-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.special-offer-section .card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 0 10px rgba(144, 143, 143, 0.5);
}

.special-offer-section .sm-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.special-offer-section .card p {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  color: #000000;
}

.special-offer-section .card img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.special-offer-section .card button {
  background-color: #6bbd47;
  color: #ffffff;
  border: none;
  padding: 15px 20px;
  border-radius: 5.5px;
  cursor: pointer;
  transition: all 0.5s ease-in;
  font-family: "Quicksand", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  border: none;
}

.special-offer-section .card button:hover {
  outline: 1px solid #6bbd47;
  background-color: #ffffff;
  color: #6bbd47;
}

@media (max-width: 767px) {
  .special-offer-section .card {
    flex-direction: row;
    width: 100%;
  }

  .special-offer-section .card .sm-card {
    width: 50%;
  }

  .special-offer-section .card .sm-card p {
    font-size: 12px;
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0em;
  }

  .special-offer-section .card .sm-card button {
    width: 100px;
    font-size: 14px;
    padding: 10px;
    line-height: 1;
  }

  .special-offer-section .card img {
    width: 50%;
    max-height: 210px;
  }
}

@media (min-width: 768px) {
  .special-offer-section {
    padding-inline: 60px;
  }
  .special-offer-section .card-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Service details styles  */

.business-details-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 50px;
}

.business-details-section .address-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.business-details-section .address-details-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  order: 2;
  margin-inline: 20px;
  padding: 20px;
  border-radius: 20px;
  background-color: #ffffff;
}

.address-details-container button {
  margin-top: 22px;
}

.business-details-section .google-map {
  order: 1;
  width: 100%;
}

.business-details-section .google-map iframe {
  width: 100%;
}

.business-details-section .address-details .ser-det-heading {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
}

.business-details-section .sub-text {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .business-details-section {
    grid-template-columns: 1fr 2fr;
    padding: 60px;

  }
  .business-details-wrapper {
    background-color: #e6e6e6;
  }


  .business-details-section .address-details-container {
    order: 1;
    margin-inline: 0;
  }

  .business-details-section .google-map iframe {
    border-radius: 20px;
  }
}

/* Media section styles */

.media-section .button-container {
  display: flex;
  margin: 0;
  padding: 0;
}

.media-section .media-button {
  flex: 1;
  padding: 15px 20px;
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0em;
  text-align: center;
  border: none;
  cursor: pointer;
  color: #393a3c;
  background-color: hsl(0, 0%, 100%);
  transition: background-color 0.3s;
  cursor: pointer;
}

.media-section .media-button:hover {
  background-color: #393a3c; /* Change to your desired highlight color */
  color: #ffffff;
}

.media-section .media-button.active {
  background-color: #393a3c; /* Change to your desired highlight color */
  color: #ffffff;
}

.media-section .media-content {
  display: none;
}

.media-section .media-content.active {
  display: block;
}

.media-section .image-container {
  display: flex;
}

.media-section .image-container img {
  width: 100px; /* Set the width as needed */
  flex: 1;
  height: auto;
  margin: 0; /* Remove any default margin */
}

/* footer styles  */
.footer-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 20px;
  align-items: center;
  background-color: #ffffff;
  margin-top: 50px;
}

.footer-content hr {
  width: 100%;
  border: 1px solid hsl(0, 4%, 85%);
}

.footer-content .footer-text {
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  color: #3a3a3a;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-inline: 60px;
    padding-block: 30px;
    margin-top: 0;
  }

  .footer-content hr {
    display: none;
  }
}

.offer-container {
  display: flex;
  flex-direction: column;
}
.offer-container .vehicle-details-section {
  order: 1;
}

.offer-container .special-offer-section {
  order: 2;
}

@media (min-width: 768px) {
  .offer-container .vehicle-details-section {
    order: 2;
  }

  .offer-container .special-offer-section {
    order: 1;
  }
}

.message-status-icon.online {width:40px; transform: scaleY(-1)}
.message-status-icon.offline {visibility: hidden;}
.message-status-icon.previous {display: none;}

.inline-li {display: inline-block}
.blue-border {border: 1px solid #DCE8F1;}
.car-pic {cursor: pointer;width: 82px;}

#dialog-capture-image {position: fixed; float: left; left: 50%; top: 50%; transform: translate(-50%, -50%); height: 500px; width: 500px; border: 1px solid; background-color:#E5DAAE; color: #333333; font-size: 14px; text-align: center; vertical-align: middle; padding-top: 15px;}
#capture-image {width: 400px; height: 300px; border: 1px solid #DCE8F1;}

/* Animation for Reg Lookup button */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 5px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.plTN {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-label {
  text-align: center;
  font-size: 12px;
  margin-top: 5px;
  color: #333333;
}

