Here is my code.
/***** Search field *****/
.search {
position: relative;
}
.search input[type="search"] {
border: 1px solid #ddd;
border-radius: 30px;
box-sizing: border-box;
color: #01B5B1;
height: 40px;
padding-left: 40px;
padding-right: 20px;
-webkit-appearance: none;
width: 75%;
}
[dir="rtl"] .search input[type="search"] {
padding-right: 40px;
padding-left: 20px;
}
.search input[type="search"]:focus {
border: 1px solid $brand_color;
color: #01B5B1;
}
.search-full input[type="search"] {
border: 1px solid #01B5B1;
}
.search-icon {
position: relative;
top: 50%;
transform: translateY(-50%);
position: absolute;
left: 90px;
z-index: 1;
width: 18px;
height: 18px;
color: #777;
}
[dir="rtl"] .search-icon {
right: auto;
left: auto;
}
Here is where it's landing on both pages and I have no clue how to get them to both be on the left side of the search bar.


