 .accordion-container {
            max-width: 600px;
            margin: 0 auto;
        }
        .accordion {
            margin-bottom: 5px;
            border-radius: 20px;
        }
        .accordion-header {
            display: flex;
            padding: 15px;
            cursor: pointer;
            background-color: #ffffff;
            font-weight: bold;
            align-items: center;
            border-radius: 20px;
            box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
        }
        .accordion-header h6 {
            margin: unset;
            margin-left: 5px;
            flex: 1;
            width:100%;
        }
        .accordion-content {
            height: 0;
            overflow: hidden;
            transition: height 0.3s ease, opacity 0.3s ease;
            opacity: 0;
            background-color: #ffffff;
            border-radius: 20px;
            box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
        }
        .accordion-content p {
            padding: 10px 25px;
        }
        .accordion.open .accordion-content {
            opacity: 1;
            height: auto;
            margin-top: 5px;
            margin-bottom: 10px;
        }
        .accordion-header i.fa-chevron-up {
            transform: rotate(180deg);
            transition:transform .2s ease-in-out;
            color:var(--purple);
        }
        
        .accordion-header i.fa-chevron-down {
      
            color:var(--purple);
        }

        .accordion.open .accordion-header i.fa-chevron-up {
            transform: unset;
            transition:transform .2s ease;
            color:var(--purple);
        }
        
/**/

.dropdown input#filterInput {
  padding:15px;
  width:223px;
  border:unset;
  border:1px solid rgba(128, 128, 128, 0.17);
  border-radius:50px;
 
 
}

.dropdown input#filterInput::placeholder {
  text-transform:uppercase;
  font-family:roboto;
  letter-spacing:1px;
}

.dropdown {
  position: relative;
  display: inline-block;
  width: 100%; /* Adjust based on your layout needs */
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  /*min-width: 100%; */ /* Adjust based on your layout needs */
  max-width:300px;
  max-height: 200px; /* Set the max height for scrolling */
  overflow-y: auto; /* Enable vertical scrolling */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border: 1px solid #ddd;
  margin-top:5px;
}
.dropdown-content a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: black;
}
.dropdown-content a:hover {
  background-color: #f1f1f1;
}
.show {
  display: block;
}


/**/

.our-fleet-container {
    visibility: hidden;
}