.oe-wrap {
  position: relative;
  display: inline-block;
  width: 230px; /* adjust */
  padding-right:0px;
  margin-right:0px;
}

  .oedealerrow{
    flex-direction: column;
    justify-content: end;
    align-items: end;
  }

@media (max-width: 1400px) {
  .oedealerrow{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .oe-wrap {
    position: relative;
    display: inline-block;
    width: 230px; /* adjust */
    padding-right:0px;
    border-right:0px black solid;
    margin-right:0px;
    margin-bottom:10px;
  }
}


#oeSearch {
  padding-right: 36px; /* room for the arrow button */
  padding-left: 0px;
  border-top:0px;
  border-left:0px;
  border-right:0px;
  border-bottom:1px black solid;
  margin-right:0px;

}
#oeSearch:focus-visible {
  border-top:0px !important;
  border-left:0px;
  border-right:0px;
  border-bottom:1px black solid;
  outline:none;

}
@media (max-width: 1400px) {
#oeSearch {
  padding-right: 0px; /* room for the arrow button */
  padding-left: 0px;
  border-top:0px;
  border-left:0px;
  border-right:0px;
  border-bottom:1px black solid;
  margin-right:0px;

}
}


/* the inline arrow button */
.oe-go {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  display: block;
  transition:0.4s all;
  opacity:0.25;
  pointer-events: none;
; /* hidden until valid */
}

/* Use the same arrow as your main search (simple data-URI arrow here). Replace with your own SVG if you like. */
.oe-go::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><g id="Layer_5"><path d="M32.85,30.29l-4.95-4.95c1.8-2.38,2.91-5.3,2.91-8.51,0-7.83-6.37-14.19-14.19-14.19S2.43,9,2.43,16.83s6.36,14.19,14.19,14.19c2.85,0,5.5-.86,7.72-2.31l5.05,5.05c.48.48,1.1.72,1.73.72s1.25-.24,1.73-.72c.96-.96.96-2.51,0-3.47ZM7.33,16.83c0-5.12,4.16-9.29,9.29-9.29s9.29,4.17,9.29,9.29-4.17,9.29-9.29,9.29-9.29-4.17-9.29-9.29Z"/></g></svg>') center / 60% no-repeat;
  background: currentColor;
  color: #111; /* match your theme */
}

.oe-go:hover{
    right:22px;
}
@media (max-width: 1400px) {
.oe-go{
    right:0px;
}
.oe-go:hover{
    right:0px;
}
}
.oe-go:hover::before{
  color: #af0b0b; /* match your theme */
}
.oe-go:focus{
  outline:none;
}
/* show the arrow when input is valid against the datalist */
#oe-go.is-valid  { opacity:1; pointer-events: auto;}

/* Optional: style the main search button when ready */
#partSearch.readyToSearch { opacity: 1; pointer-events: auto; }
input::-webkit-calendar-picker-indicator {
  display: none !important;
}



input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid green;
  -webkit-text-fill-color: green;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}
