.vehicle-result {
    display: none;
}
/* .roof-filter {
    display: flex;
    width: 100%;
    gap: 17px;
    justify-content: center;
    align-items: center;
}
.roof-filter select {
    width: 100%;
    max-width: 200px;
    padding: 5px;
} */

.roof-filter{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 10px;
    justify-content: center;
}
.roof-filter select{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0px 10px;
}
.roof-filter button#filterBtn {
    grid-column: span 2;
    text-align: center;
    width: 100%;
    background: #041d45;
}
.roof-filter button#filterBtn:hover{
    background-color: black !important;
}
.vehicle-result {
    margin-top: 25px;
    background: #ffffff5c;
    border: 1px solid #ccc;
    padding: 20px 25px;
}
p.vehicle-para {
    font-size: 19px;
    font-weight: 800;
}
.vehicle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    flex-direction: column;
}
.vehicle-item-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.vehicle-item-button{
    background-color: #041d45 !important;
}
.vehicle-item-button:hover{
    background-color: black !important;
}
.btn-center{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;    
}
/*.elementor-button.elementor-size-md.vehicle-item-button a.vehicle-button {
    color: white;
}
.vehicle-button{
    color: #fff;
}*/
.vehicle-title {
    font-size: 15px;
    font-weight: 600;
}
.vehicle-warpper {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: self-start;
}
.vehicle-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.seleted-vehicle {
    padding: 11px;
    background: #041d45;
    color: #fff;
    flex: 0 0 calc(27% - 10px);
    text-align: center;
}
.avialable-roof {
  transition: opacity 0.5s ease;
}

.avialable-roof.hidden {
  display: none;
}

.product-wrapper {
  position: relative;
  transform: translateX(-100%);
  transition: transform 0.5s ease, opacity 0.5s;
  opacity: 0;
  display: none;
}

.product-wrapper.active {
  display: flex;
  transform: translateX(0%);
  opacity: 1;
}

.back-button {
  background-color: #222;
  color: #fff;
  padding: 8px 14px;
  border: none;
  margin: 15px;
  cursor: pointer;
}
ul.filter-product-list {
    display: flex;
}

.horizontal-roof-filter {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
}
.horizontal-roof-filter select{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0px 10px;
}
.horizontal-roof-filter button#filterBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0px 10px;
    background-color: #041d45;
}
.horizontal-roof-filter button#filterBtn:hover{
     background-color: black !important;
}
.radio-group {
      display: flex;
      gap: 20px;
    }

.radio-wrapper {
    position: relative;
    width: 35px;
    height: 45px;
}

.radio-wrapper input[type="radio"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 2;
}

.custom-radio {
    width: 100%;
    height: 100%;
}

.custom-radio svg {
    width: 100%;
    height: 100%;
}

.custom-radio .shape {
    fill: none;
    stroke: #001f4d;
    stroke-width: 6;
}

.custom-radio .tick {
    display: none;
    stroke: #001f4d;
    stroke-width: 7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.radio-wrapper input[type="radio"]:checked ~ .custom-radio .tick {
    display: block;
}
@media (max-width: 600px) {
 .horizontal-roof-filter {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 15px;
 }
 .horizontal-roof-filter select{
    height: 45px;
    font-size: 14px;
    width: 48%;
 }
 .horizontal-roof-filter button#filterBtn{
    height: 45px;
 }
}
#roof-filter-loader {
    display: none; /* hidden by default */
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#roof-filter-root {
    position: relative; /* so loader is positioned over it */
}

.roof-loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #2563eb; /* Brand color */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
