
.custom-select-form  {
    position: relative;
}
 /* Hide the default select */
.custom-select-form select, .car--wanted--container .select-wrapper select {
  appearance: none; /* Remove the default arrow in modern browsers */
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: 1px solid #ccc;
  padding: 5px 10px;
  width: 100%;
  cursor: pointer;
  line-height: 25px;
  
  overflow: hidden;
  height: 50px; /* Fixed height for the select container */

  background: url('https://dev.cashoffernow.ie/nioana/CON_folder/assets/icons/arrow.svg') no-repeat right 10px center;
  background-color: #fff;
  background-size: 12px;
  padding: 8px 25px 8px 10px;
}

.add--car--container .add-car-section form select {
    padding: 8px 25px 8px 10px;
}

/* Dropdown options */
.custom-select-form select:focus, .car--wanted--container .select-wrapper select:focus {
  outline: none;
}

   