

.main-card {
  background-color: #fff;
  border: 1px solid #0983ba;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 2em;
}

.car-card {
  display: flex;
  align-items: center;
  /* background-color: #fff;
  border: 1px solid #0983ba;
  border-radius: 8px;
  padding: 15px 20px;
  max-width: 1300px;
  margin: auto; */
  justify-content: space-between;
}

.car-info {
  display: flex;
  align-items: center;
  flex: 1;
}

.car-info img {
  height: 70px;
  margin-right: 20px;
}

.car-name-group {
  display: flex;
  flex-direction: column;
}

.car-name {
  font-size: 18px;
  font-weight: bold;
}

.car-subtext {
  font-size: 14px;
  color: #555;
}

.car-features {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 13px;
  color: #111;
}

/*.feature-item img {*/
/*  width: 60px;*/
/*  margin-bottom: 4px;*/
/*}*/

.divider {
  height: 35px;
  width: 1px;
  background-color: #ccc;
}

.old-price-section {
  text-align: center;
  flex-basis: 100px;
}

.old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #28a745;
}

.save-text {
  color: #d9534f;
  font-size: 14px;
}

.price-section {
  text-align: center;
  flex-basis: 140px;
}

.tag {
  width: 85%;
  /* font-size: 11px;
  font-weight: bold;
  background-color: #28a745;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-block; */
  /*margin: -5px 0;*/
}
.tag img{
  width: 100%;
}
.new-price {
  font-size: 22px;
  font-weight: bold;
  color: #007bff;
}

.km-info {
  font-size: 13px;
  margin-top: 2px;
}

.details-link {
  font-size: 13px;
  color: #007bff;
  cursor: pointer;
}

.select-btn {
  background-color: #ff6600;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.select-btn:hover {
  background-color: #e65c00;
}

.select-btn-section{
  margin-left: 1em;
}

.car-box {
  border: 1px solid #0983ba;
  border-radius: 10px;
  padding: 10px;
  font-family: Arial, sans-serif;
}

.car-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.car-name {
  font-weight: bold;
}

.car-icons>div {
  text-align: center;
  font-size: 12px;
}

.car-pricing {
  text-align: center;
  font-size: 14px;
}

.old-price {
  text-decoration: line-through;
  color: green;
}

.save-amount {
  color: red;
}

.final-price {
  font-size: 18px;
  color: #007bff;
}

.select-btn {
  background-color: orange;
  color: white;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.details-box {
  position: relative;
  margin: 1em 0;
}
.term_and_condition{
    padding: 10px 20px;
}
.mobile-view .more_features ul{
    display: grid;
}
.details-box ul{
    margin-left: 50px;
}
.tabs {
  display: inline-flex;
  margin: 12px 0;
  list-style: none;
  padding: 0px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.tabs .tab-link {
  flex: 1;
  padding: 8px;
  text-align: center;
  cursor: pointer; 
  border-left: 1px solid #ccc;
}
.tab-link.current{
  border: none;
}
ul.tabs li {
  font-size: 12px;
  font-weight: 700;
}



.tabs .tab-link.current {
  background: #00aaff;
  color: white;
}

.tab-content {
  display: none;
  /* padding: 10px; */
  /* border-top: 1px solid #ccc; */
}

.tab-content.current {
  display: block;
}

.divider-ver {
  height: 1px;
  width: 100%;
  position: absolute;
  background-color: #0983ba;
  left: 0;
  right: 0;
}

.more_features ul{
  text-align: center;
  /* padding: 0 8px; */
}
.more_features ul li{
  display: inline-block;
  padding: 5px;
}
.more_features ul li img{
  display: block;
  width: 40px;
  float: left;
}
.more_features ul li span{
  display: block;
  float: left;
  padding: 10px 8px;
}



/* Mobile View */

.mobile-tab-container {
  width: 100%;
  margin: auto;
  background: #fff;
  /* padding: 35px; */
}

.mobile-tabs {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.mobile-tab {
  flex: 1;
  text-align: center;
  padding: 5px;
  background: #fff;
  border: none;
  /* border-radius: 6px; */
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}

.mobile-tab span {
  font-size: 11px;
  /* color: #007bff; */
  font-weight: normal;
}
.mobile-tab.active span{
  font-weight: bold;
}

.mobile-tab.active {
  color: #00aaff;
}
.mobile-tab.active img{
  border-color: #00aaff;
}
.mobile-tab img{
  border-color: #00aaff;
  border: 1px solid;
  border-radius: 50%;
  width: 55px;
  height: 50px;
  object-fit: cover;
}

.mobile-tab-content {
  display: none;
  padding: 15px;
}

.mobile-tab-content.active {
  display: block;
}
.car-contant{
  float: left;
  width: 50%;
}
.car-contant h2{
    font-size: 20px;
}

.mobile-car-card {
  background: #fff;
  padding: 15px;
  border-radius: 30px;
  box-shadow: 0 0 0px 2px rgba(0, 0, 0, 0.2);
  /*display: flex;*/
  /*flex-basis: 2;*/
  /*justify-content: space-evenly;*/
  /*gap: 20px;*/
  /*align-items: center;*/
  /*flex-wrap: wrap;*/
}

.mobile-car-img {
  width: 100%;
  /* max-width: 180px;
  margin: 10px auto;
  display: block; */
}

.car-contant-img {
  width: 50%;
  /*flex-shrink: 0;*/
  float: right;
}
.mobile-car-price {
  font-size: 18px;
  font-weight: 700;
  color: #007bff;
  margin: 10px 0;
}

.mobile-old-price {
  text-decoration: line-through;
  color: #d9534f;
  font-size: 16px;
  /* margin-left: 30px; */
}

.mobile-toll-badge {
  width: 70%;
}
.mobile-toll-badge img{
  width: 55%;
  height: auto;
  border-radius: 6px;
}

.mobile-lowest-price {
  background: #28a745;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.mobile-select-btn {
  width: 100%;
  background: #ff6600;
  color: white;
  border: none;
  padding: 5px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
}


.booking-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eeeeee;
  padding: 15px 20px;
  /* border-bottom: 2px solid #00c853; */
  /* max-width: 600px;
  margin: 20px auto; */
  border-radius: 6px;
}

.mobile-banner img{
  width: 100%;
}
.booking-info {
  display: flex;
  flex-direction: column;
  color: #424242;
}

.trip-type {
  /*font-size: 30px;*/
  color: #757575;
  margin-bottom: 2px;
}

.trip-route {
  /*font-size: 35px;*/
  font-weight: bold;
  margin-bottom: 4px;
}

.pickup-details {
  /*font-size: 30px;*/
  color: #616161;
}

.modify-btn {
  padding: 1px 2px;
  background: white;
  color: #03a9f4;
  border: 1px solid #03a9f4;
  border-radius: 20px;
  font-size: 10px;
  /*font-weight: bold;*/
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modify-btn:hover {
  background: #03a9f4;
  color: white;
}

.feature-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #e0f7fa;
  border-radius: 16px;
  padding: 8px 10px;
  margin: 20px 0px;
  gap: 20px;
  position: relative;
}

.feature-item {
  text-align: center;
  color: #004d40;
  flex: 1;
}

.feature-item .icon {
  font-size: 14px;
  color: #03a9f4;
  margin-bottom: 5px;
}

.feature-item .text {
  font-size: 30px;
  font-weight: 500;
}
.feature-text{
    font-size: 10px;
}
.feature-item img{
    width: 20px;
}

.tab-content-mobile {
  display: none;
  font-size: 14px;
}
.tab-content-mobile.current {
  display: block;
}

.tab-link-mobile {
  font-size: 11px!important;
  font-weight: 600!important;
}
/* Mobile View */