.price_car_options  .text-orange {
    color: #FF7D20;
}

.price_car_options  .bg-black {
    background-color: #000;
}


.price_car_options .accordion-button ,.accordion-button:not(.collapsed){
    color: #d20000 !important;
    padding: 0 15px;
}

.price_car_options .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d20000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
    background: unset;

}


@media (min-width: 768px) {
  .banner-slide img {
      height: 110px;
  }
}

.price_car_options .accordion-button::after {
    background: unset;
    width: 20px;
    height: 20px;
}
.price_car_options .accordion-collapse .accordion-body {
    padding-left: 15px;
    padding-right: 15px;
}


.price_car_options .option-radio {
    width: 15px;
    height: 15px; /* Ensures it's properly sized */
    margin-right: 5px; /* Adds space between radio and text */
}

.price_car_options label {
    display: flex;
    align-items: center; /* Aligns items (radio + text) in the same line */
    cursor: pointer;
}

.price_car_options label input[type="radio"] {
    flex-shrink: 0; /* Prevents the radio button from shrinking */
}


.price_car_options .accordion-button:not(.collapsed)::after {
    background-color: unset;
    top: 25px;
    right: 15px;
}

.price_car_options .accordion-button:focus {
    z-index: 3;
    border-color: #d20000 !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(210 0 0 / 17%);
}


.price_car_options  .form-radio-box .form-check-input {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #007bff;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .price_car_options  .form-radio-box .form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
    position: relative;
  }
  
  .price_car_options .form-radio-box .form-check-input:checked::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .price_car_options  .form-radio-box .form-check-label {
    margin-left: 8px;
    cursor: pointer;
  }


  .price_car_options  .hidden{
    display:none !important;
}







/* Price Tag  */

#sticky-price {
    bottom: 125px;  /* 20px margin from the bottom of the viewport */
    left: 50%;
    /* transform: translateX(-50%) translateY(0);  */
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
  }
  
  .price-tag {
    border-radius: 50px; /* Fully rounded corners */
    /* border: 2px solid #f4bf8f; */
    padding: 10px 20px; /* Adjust the padding for better spacing */
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
  }
  
  .price-tag img {
    width: 40px; /* Icon size */
    height: 40px; /* Icon size */
  }
  
  /* CSS for sticky element */
  #sticky-price.fixed {
    position: fixed;
    bottom: 125px;  /* 20px margin from the bottom of the viewport */
    /* left: 50%; */
    left:12%;
    transform: translateX(-50%) translateY(0);  /* Initially visible */
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
  }

  html[dir="rtl"] #sticky-price.fixed {
    position: fixed;
    bottom: 125px;  /* 20px margin from the bottom of the viewport */
    left: 88%;
    transform: translateX(-50%) translateY(0);  /* Initially visible */
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
  }

  
  #sticky-price.fixed .price-tag {
    background-color: #000; /* Black background */
    color: #fff !important; /* White text */
    border-radius: 50px; /* Fully rounded corners */
    border: 2px solid #f4bf8f;
    padding: 10px 20px; /* Adjust the padding for better spacing */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
  }
  
  #sticky-price.fixed .price-tag p {
    font-size: 1.25rem; /* Adjust font size */
    font-weight: 600; /* Bold text */
    margin: 0; /* Remove margin for clean alignment */
  }
  
  #sticky-price.fixed .price-tag img {
    width: 24px; /* Icon size */
    height: 24px; /* Icon size */
  }
  /* Price Tag End */